-
Notifications
You must be signed in to change notification settings - Fork 1
/
culture.jsonld
2160 lines (2160 loc) · 73.7 KB
/
culture.jsonld
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"@context": {
"@language": "en",
"Collection": "http://purl.org/dc/terms/Collection",
"Concept": "http://www.w3.org/2004/02/skos/core#Concept",
"RightsStatement": "http://purl.org/dc/terms/RightsStatement",
"additionalName": "http://schema.org/additionalName",
"alternateName": "https://schema.org/alternateName",
"comment": "http://www.w3.org/2000/01/rdf-schema#comment",
"date": "http://www.w3.org/2001/XMLSchema#date",
"definedBy": "http://www.w3.org/2000/01/rdf-schema#isDefinedBy",
"description": "http://purl.org/dc/terms/description",
"issued": "http://purl.org/dc/terms/issued",
"label": "http://www.w3.org/2000/01/rdf-schema#label",
"modified": "http://purl.org/dc/terms/modified",
"publisher": "http://purl.org/dc/terms/publisher",
"range": "http://www.w3.org/2000/01/rdf-schema#range",
"title": "http://purl.org/dc/terms/title"
},
"@graph": [
{
"@id": "http://opaquenamespace.org/ns/culture",
"issued": {
"@type": "http://www.w3.org/2001/XMLSchema#date",
"@value": "2013-12-16"
},
"modified": {
"@type": "http://www.w3.org/2001/XMLSchema#date",
"@value": "2013-12-16"
},
"publisher": "Opaque Namespace",
"title": "Culture controlled vocabulary"
},
{
"@id": "http://opaquenamespace.org/ns/culture/undetermined",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "undetermined",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Alsatian",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Alsatian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Corsican",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Corsican",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Transylvanian",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Transylvanian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Soviet",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Soviet",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Ukranian",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Ukranian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/AncientItalian",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Ancient Italian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Bolognese",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bolognese",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/BosnianHerzegovinian",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bosnian, Herzegovinian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/ChineseHongKong",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Chinese/Hong Kong",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Corinthian",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Corinthian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Euboian",
"@type": "Concept",
"comment": "Getty Appendices. Euboean",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Euboian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Florentine",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Florentine",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/laconic",
"@type": "Concept",
"comment": "Getty Appendices. Laconian",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "laconic",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Macedonian",
"@type": "Concept",
"comment": "Getty Appendices. Ancient Macedonian",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Macedonian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Milanese",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Milanese",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Montenegrin",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Montenegrin",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Peloponnesian",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Peloponnesian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Rhenish",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Rhenish",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Sienese",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Sienese",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Singapore",
"@type": "Concept",
"comment": "Getty Appendices. Singaporean",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Singapore",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/SouthKorean",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "South Korean",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Velezuelan",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Velezuelan",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Yemeni",
"@type": "Concept",
"comment": "Getty Appendices. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Yemeni",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Pontic",
"@type": "Concept",
"comment": "Culture of the historic region of Pontus, roughly encompassed most of the eastern Black Sea coast of northeastern Asia Minor, on the coast from just west of Ayanc\u00c4\u00b1k to east of Hopa.. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Pontic",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Ababdah",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Sudan Alternate name: Ababda, Ababde Cushitic language; one of the groups included in the collective term Beja ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Ababdah",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Abam",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Nigeria Alternate name: Ohaffia, Ohafya Kwa language; subcategory of the Igbo; one of the groups referred to as Eastern Igbo ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Abam",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Abong",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Cameroun, Nigeria Alternate name: Abo, Ab\u00c3\u00b5, Ab\u00c3\u00b5n Bantu related language; one of the groups included in the collective term Tigong ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Abong",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Aksum",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Ethiopia Alternate name: Axum ancient Ethiopian city and kingdom flourishing from the first millenium B.C.E. to about 800 A.D. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Aksum",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Andean",
"@type": "Concept",
"comment": "Damian, Carol; Virgin of the Andes; Art and Ritual in Colonial Cuzco, Miami Beach: Grassfield Press, 1995. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Andean",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/BaiChina",
"@type": "Concept",
"comment": "Gealt, Adelheid, et al.; Masterworks from the Indiana University Art Museum, Bloomington, IN: Indiana University Press, 2007. Chinese: \u00e7\u2122\u00bd\u00e6\u2014\u008f; pinyin: B\u00c3\u00a1iz\u00c3\u00ba. One of the 56 ethnic minorities officially recognized by the People's Republic of China. The Bai population is primarily located in the provinces of Yunnan (Dali area) and in neighboring Guizhou (Bijie area) and Hunan (Sangzhi area) provinces. 80% of the Bai people live in the Dali Bai Autonomous Prefecture in Yunnan province.",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bai (China)",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/BatakSumatran",
"@type": "Concept",
"comment": "Gealt, Adelheid, et al.; Masterworks from the Indiana University Art Museum, Bloomington, IN: Indiana University Press, 2007. Toba subgroup, Sumatra, Indonesia",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Batak (Sumatran)",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Belanda",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Sudan The term Belanda (or Bor-Belanda) includes both the Bor (or JoBor) speaking a Western Nilotic langauge and the Bviri (or Bor-Bviri) speaking an Eastern Sudanic language ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Belanda",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/BeringStraitInuit",
"@type": "Concept",
"comment": "Lee, Molly and Gregory A. Reinhardt; Eskimo Architecture: Dwelling and Structure in the Early Historic Period, Fairbanks: University of Alaska Press and University of Alaska Museum, 2003. United States, ARCTIC: West coast of alaska Language: ?",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bering Strait Inuit",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Biwat",
"@type": "Concept",
"comment": "Gealt, Adelheid, et al.; Masterworks from the Indiana University Art Museum, Bloomington, IN: Indiana University Press, 2007. Middle Yuat River, lower Sepik River area, Papua New Guinea people, aka Mundugumor",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Biwat",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Cabinda",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Congo Republic region/enclave in the Congo Republic but the term is sometimes used to refer to the art of the Vili peoples ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Cabinda",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Chokwe",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Angola, Zaire, Zambia Alternate name: Bachokwe, Badjok, Badjokwe, Bajokwe, Batshioko, Ciokwe, Cokwe, Djok, Djokwe, Kioko, Kiokue, Quioco, Shioko, Tschokwe, Tshioko, Tshokwe, Tuchokwe, Watschiwokwe Bantu language Chokwe is the current usage in most art sources while linguists seem to prefer the form Cokwe. One of the groups included in the Lunda-Lovale peoples. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Chokwe",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/DhoLuo",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Kenya Alternate name: Luo Western Nilotic language; one of the groups included in the collective term Nilotic peoples; sometimes referred to as Southern Lwoo ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Dho Luo",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Faafue",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. C\u00c3\u00b4te d\u00e2\u20ac\u2122Ivoire Kwa language; subcategory of the Baule ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Faafue",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Gabbra",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Ethiopia, Kenya Alternate name: Gabra Cushitic language; subcategory of the Oromo ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Gabbra",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Grasslands",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Cameroun Alternate name: Grassfields One of three very large so-called stylistic regions in the Cameroun; the others being 2) Northern and Central Cameroun together ranging from southern Lake Chad to Adamawa, and 3) ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Grasslands",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Huari",
"@type": "Concept",
"comment": "Gealt, Adelheid, et al.; Masterworks from the Indiana University Art Museum, Bloomington, IN: Indiana University Press, 2007. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Huari",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Hungana",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Zaire Alternate name: Bahuana, Bahungana, Huana, Hungaan, Hungana, Hunganna, Wana SOUTH SAVANNA Bantu language ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Hungana",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Isaaq",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Somalia Alternate name: Issaq Cushitic language; clan-family of the Somali ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Isaaq",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Itakete",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Nigeria Kwa language; subcategory of the Yoruba ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Itakete",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Jamala",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. C\u00c3\u00b4te d\u00e2\u20ac\u2122Ivoire Gur language; subcategory of the Senufo ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Jamala",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Kalabari",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Nigeria Alternate name: Kalabari Ijo Kwa language; Kalabari is a term sometimes used synonymously with the Ijo, the capital of the Ijo, and also as an eastern subcategory of the Ijo. see RWL for a more extensive list of subcategories. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Kalabari",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Kambot",
"@type": "Concept",
"comment": "Gealt, Adelheid, et al.; Masterworks from the Indiana University Art Museum, Bloomington, IN: Indiana University Press, 2007. Lower Sepik River, Papua New Guinea people, aka Tindama, Tin Dama",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Kambot",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Kom",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Cameroun Alternate name: Bamekom, Bekom, Bikom, Kom-Tikar, Nkom Bantoid language; subcategory of Tikar, one of the groups included in the collective term Bamenda ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Kom",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Luluwa",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Zaire Alternate name: Bashilange, Bena Lulua, Bena Luluwa, Bena Moyo, Lulua, Shilange Bantu language; one of the groups included in the collective term Bakasai AAT USES LULUA ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Luluwa",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/LumboCongoRepublicGabon",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Congo Republic, Gabon Alternate name: Balumbo, Loumbou, Lumbu Bantu language ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Lumbo (Congo Republic, Gabon)",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Maasai",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Kenya, Tanzania Alternate name: Masai, Massai Eastern Nilotic language; grouped as Northern Maasai, Central or Rift Valley Maasai, and Southern Maasai; one of the groups included in the collective term \u00e2\u20ac\u0153Nilo-Hamitic\u00e2\u20ac\u009d peoples. see GWS 1969 for numerous additional subcategories*. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Maasai",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/MamlukAfricangroup",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. CENTRAL-EAST SUDAN ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Mamluk (African group)",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Masai",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. EAST AFRICA ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Masai",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Mawri",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Niger Alternate name: Mauri Chadic language; subcategory of the Hausa ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Mawri",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Minianka",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Mali Alternate name: Minyanka Gur language; sometimes considered a Senufo subcategory ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Minianka",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/culture/Montol",
"@type": "Concept",
"comment": "Biebuyck, Daniel P., Susan Kelliher and Linda McRae; African Ethnonyms: Index to Art-Producing People of Africa, New York: G. K. Hall, 1996. Nigeria Chadic language ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Montol",
"modified": {
"@type": "date",
"@value": "2014_07-10"