-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrepository.jsonld
14032 lines (14032 loc) · 498 KB
/
repository.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",
"CorporateName": "http://www.w3.org/2004/02/skos/core#CorporateName",
"Geographic": "http://www.w3.org/2004/02/skos/core#Geographic",
"PersonalName": "http://www.w3.org/2004/02/skos/core#PersonalName",
"RightsStatement": "http://purl.org/dc/terms/RightsStatement",
"Title": "http://www.w3.org/2004/02/skos/core#Title",
"Topic": "http://www.w3.org/2004/02/skos/core#Topic",
"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/repository",
"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": "Repository controlled vocabulary"
},
{
"@id": "http://opaquenamespace.org/ns/repository/AachenCathedralTreasury",
"@type": "CorporateName",
"comment": "Aachen Cathedral Treasury, Aachen, North Rhine-Westphalia, Germany. Grodecki, Louis, Florentine Mütherich, Jean Taralon and Francis Wormald; Siècle de l'An Mil, 950-1050, Paris: Éditions Gallimard, 1973",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Aachen Cathedral Treasury",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AGGallery",
"@type": "CorporateName",
"comment": "AG Gallery, New York, New York, United States. Joselit, David; American Art Since 1945, London: Thames and Hudson, 2003",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "AG Gallery",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AkamaJingu",
"@type": "CorporateName",
"comment": "Akama Jingu, Yamaguchi (Nagano-ken), Chubu, Japan. Ōishi, Hidenori; Directory of the Sectarian Shinto Federation and the principal Shinto shrines of Japan, Tōkyō: Kokusai Shūkyō Kenkyūjo, 1957",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Akama Jingu",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/Akaokamachi",
"@type": "CorporateName",
"comment": "Akaoka-machi, Kochi (Shizuoka-ken), Chubu, Japan. Takashina, Shuji; Edo kara Meiji e, Nihon Bijutsu Zenshu, Tokyo: Kodansha, 1991",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Akaoka-machi",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AkitaPrefecturalLibrary",
"@type": "CorporateName",
"comment": "Akita Prefectural Library, Akita (Akita), Tohoku-chiho, Japan. Hosono, Masanobu; Nagasaki Prints and Early Copperplates, English edition, Tokyo; New York: Kodansha International Ltd; Kodansha International/USA Ltd, 1978",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Akita Prefectural Library",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AkitaPrefecturalMuseum",
"@type": "CorporateName",
"comment": "Akita Prefectural Museum, Akita (Akita), Tohoku-chiho, Japan. Maekawa, Seiro and Naomi Okawa; Genshi no zokei : Jomon, Yayoi, Kofun jidai no bijutsu, Nihon Bijutsu Zenshu, Tokyo: Kodansha, 1994",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Akita Prefectural Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AkitaSenshuMuseumofArt",
"@type": "CorporateName",
"comment": "Akita Senshu Museum of Art, Akita (Akita), Tohoku-chiho, Japan. Takashina, Shuji; Edo kara Meiji e, Nihon Bijutsu Zenshu, Tokyo: Kodansha, 1991",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Akita Senshu Museum of Art",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AllRussianExhibitionsCentreVDNKh",
"@type": "CorporateName",
"comment": "All-Russian Exhibitions Centre (VDNKh), Moscow, Rossiya, Russia. De la Croix, Tansey & Kirkpatrick; Gardner's Art Through the Ages, 9th Ed. , Fort Worth, TX: Harcourt Brace Jovanovich, 1991 ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "All-Russian Exhibitions Centre (VDNKh)",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/alSabahCollection",
"@type": "CorporateName",
"comment": "al-Sabah Collection, Kuwait City, Capital, Kuwait. Atil, Esin, ed.; Islamic Art and Patronage: Treasures from Kuwait, New York: Rizzoli International Publications, Inc., 1990",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "al-Sabah Collection",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AlthorpHouse",
"@type": "CorporateName",
"comment": "Althorp House, Northampton, England, United Kingdom. Licht, Fred; Goya, New York; London: Abbeville Press Publishers, 2001",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Althorp House",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AncientKibiCulturalPropertyCenter",
"@type": "CorporateName",
"comment": "Ancient Kibi Cultural Property Center, Okayama (Okoyama-ken), Chugoku, Japan. Maekawa, Seiro and Naomi Okawa; Genshi no zokei : Jomon, Yayoi, Kofun jidai no bijutsu, Nihon Bijutsu Zenshu, Tokyo: Kodansha, 1994",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Ancient Kibi Cultural Property Center",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AndrewSmithGallery",
"@type": "CorporateName",
"comment": "Andrew Smith Gallery, Santa Fe, New Mexico, United States. Haskell, Barbara; American Century: Art and Culture 1900-1950 vol. 1, 1st ed, New York: Whitney Museum of American Art , 1999",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Andrew Smith Gallery",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AndyWarholFoundationfortheVisualArts",
"@type": "CorporateName",
"comment": "Andy Warhol Foundation for the Visual Arts, New York, New York, United States. Joselit, David; American Art Since 1945, London: Thames and Hudson, 2003",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Andy Warhol Foundation for the Visual Arts",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AntiquarioPalatino",
"@type": "CorporateName",
"comment": "Antiquario Palatino, Rome, Lazio, Italy. Kleiner, Fred S.; History of Roman Art, Instructor's Edition, Victoria, Belmont, California: Thomas/Wadsworth, 2030",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Antiquario Palatino",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/Aokifamily",
"@type": "CorporateName",
"comment": "Aoki family, Tokyo (Tōkyō), Kanto, Japan. Yamane, Yūzō; Fūzokuga to Ukiyoe shi (Genshoku Nihon no Bijutsu, v.24), 1971 ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Aoki family",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumElevsis",
"@type": "CorporateName",
"comment": "Archaeological Museum, Elevsís, Central Grcce and Euboea, Greece. Name originated in the University of Oregon Visual Resources Collection slide collections",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumIzmirIli",
"@type": "CorporateName",
"comment": "Archaeological Museum, Ephesus, Izmir Ili, Turkey. Name originated with Saskia, Ltd. Metadata.",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumMarmara",
"@type": "CorporateName",
"comment": "Archaeological Museum, Geyve, Marmara, Turkey. Name originated with Saskia, Ltd. Metadata.",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumKabul",
"@type": "CorporateName",
"comment": "Archaeological Museum, Kabul, Kabul, Afghanistan. Bussagli, Mario; Central Asian Painting, Geneva: Editions d'Art Albert Skira S.A., 1979",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumThasos",
"@type": "CorporateName",
"comment": "Archaeological Museum, Thásos, Macedonia, Greece. Hampe, Roland and Erika Simon; Birth of Greek Art From the Mycenaean to the Archaic Period, New York: Oxford University Press, 1981",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumBergama",
"@type": "CorporateName",
"comment": "Archaeological Museum, Bergama, Izmir Ili, Turkey. Internationales Kunst-Adressbuch = International directory of arts = Annuaire international des beaux-arts, Berlin: Kaupterverlag, 2008",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumCorfu",
"@type": "CorporateName",
"comment": "Archaeological Museum, Corfu, Ionian Islands, Greece. Internationales Kunst-Adressbuch = International directory of arts = Annuaire international des beaux-arts, Berlin: Kaupterverlag, 2008",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumDelos",
"@type": "CorporateName",
"comment": "Archaeological Museum, Delos, Aegean Islands, Greece. Internationales Kunst-Adressbuch = International directory of arts = Annuaire international des beaux-arts, Berlin: Kaupterverlag, 2008",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumThera",
"@type": "CorporateName",
"comment": "Archaeological Museum, Thera, Aegean Islands, Greece. Internationales Kunst-Adressbuch = International directory of arts = Annuaire international des beaux-arts, Berlin: Kaupterverlag, 2008",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumKyoto",
"@type": "CorporateName",
"comment": "Archaeological Museum, Kyoto (Kyoto), Kinki, Japan. Murase, Miyeko, ed.; Turning Point: Oribe and the Arts of Sixteenth-Century Japan, New York: Metropolitan Museum of Art, 2003",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumMathura",
"@type": "CorporateName",
"comment": "Archaeological Museum, Mathura, Uttar Pradesh, India. Hallade, Madeleine; Gandharan Art of North India and teh Graeco-Buddhist Tradition in India, Persia, and Central Asia, New York: Harry N. Abrams, Inc Publishers, 1968",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchaeologicalMuseumofVeroia",
"@type": "CorporateName",
"comment": "Archaeological Museum of Veroia, Véroia, Macedonia, Greece. Christopoulos, George A.; Prehistory and Protohistory, English edition, Athens: Ekdotike Athenon S.A., 1974",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archaeological Museum of Veroia",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ArchivesoftheAmericanIllustratorsGallery",
"@type": "CorporateName",
"comment": "Archives of the American Illustrators Gallery, New York, New York, United States. Haskell, Barbara; American Century: Art and Culture 1900-1950 vol. 1, 1st ed, New York: Whitney Museum of American Art , 1999",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Archives of the American Illustrators Gallery",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AshikariyamaHozonkai",
"@type": "CorporateName",
"comment": "Ashikariyama Hozonkai, Kyoto (Kyoto), Kinki, Japan. Tsuji, Nobuo, Kiyoshi Hirai, and Yoshiaki Yabe; Shiro to chashitsu, Nihon Bijutsu Zenshu, Tokyo: Kodansha, 1992",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Ashikariyama Hozonkai",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ASoudavarCollection",
"@type": "CorporateName",
"comment": "A. Soudavar Collection. Lentz, Thomas W. and Glenn D. Lowrey; Timur and the Princely Vision: Persian Art and Culture in the Fifteenth Century, Washington, DC: Smithsonian Institution Press, 1989",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "A. Soudavar Collection",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AtsutaJingu",
"@type": "CorporateName",
"comment": "Atsuta Jingu, Nagoya (Aichi-ken), Chubu, Japan. Ōishi, Hidenori; Directory of the Sectarian Shinto Federation and the principal Shinto shrines of Japan, Tōkyō: Kokusai Shūkyō Kenkyūjo, 1957",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Atsuta Jingu",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/AzabuMuseumofArtsandCrafts",
"@type": "CorporateName",
"comment": "Azabu Museum of Arts and Crafts, Tokyo (Tokyo), Kanto, Japan. Kobayashi, Tadashi, Taishu Komatsu and Shugu Asano; Ukiyoe, Nihon Bijutsu Zenshu, Tokyo: Kodansha, 1991",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Azabu Museum of Arts and Crafts",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/BadiPalace",
"@type": "CorporateName",
"comment": "Badi' Palace, Marakesh, Marrakech, Province de. Ettinghausen, Richard, Oleg Grabar and Marilyn Jenkins-Madina; Islamic Art and Architecture 650-1250, New Haven: Yale University Press, 2001",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Badi' Palace",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/BalChhabdaandMFHusainCollection",
"@type": "CorporateName",
"comment": "Bal Chhabda and M.F. Husain Collection. Dalmia, Yashodhara; Making of Modern Indian Art: The Progressives, New Delhi; New York: Oxford University Press, 2001",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bal Chhabda and M.F. Husain Collection",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/BalChhabdaCollection",
"@type": "CorporateName",
"comment": "Bal Chhabda Collection. Dalmia, Yashodhara; Making of Modern Indian Art: The Progressives, New Delhi; New York: Oxford University Press, 2001",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bal Chhabda Collection",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/BaltimoreMuseumofArt",
"@type": "CorporateName",
"comment": "Baltimore Museum of Art, Baltimore, Maryland, United States. Prelinger, Elizabeth; Käthe Kollwitz, New Haven: Yale University Press, 1992",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Baltimore Museum of Art",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/BauerCollection",
"@type": "CorporateName",
"comment": "Bauer Collection, Geneva, Genève, Switzerland. Fischer, Felice, et al.; Arts of Hon'Ami Koetsu, Japanese Renaissance Master, Philadelphia: Philadephi Museum of Art, 2000",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bauer Collection",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/BeiShanTangFoundation",
"@type": "CorporateName",
"comment": "Bei Shan Tang Foundation, Hong Kong, Hong Kong, China. Barnhart, Richard M; Painters of the great Ming: the Imperial Court and the Zhe School, Dallas: Dallas Museum of Art, 1993",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bei Shan Tang Foundation",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/BeiyuzhaiCollection",
"@type": "CorporateName",
"comment": "Beiyuzhai Collection. Barnhart, Richard M; Painters of the great Ming: the Imperial Court and the Zhe School, Dallas: Dallas Museum of Art, 1993",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Beiyuzhai Collection",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/BirminghamCityArchives",
"@type": "CorporateName",
"comment": "Birmingham City Archives, Birmingham, England, United Kingdom. Tann, Jennifer; Development of the Factory, London: Cornmarket Press Limited, 1970",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Birmingham City Archives",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/BlenheimPalace",
"@type": "CorporateName",
"comment": "Blenheim Palace, Oxfordshire, England, United Kingdom. Trachtenberg, Marvin and Isabelle Hyman; Architecture: From Prehistory to Postmodernity, 2nd ed, New York: Harry N. Abrams, 2002",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Blenheim Palace",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/BruceandRebeccaMarder",
"@type": "CorporateName",
"comment": "Bruce and Rebecca Marder. Name originated in the University of Oregon Visual Resources Collection slide collections",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bruce and Rebecca Marder",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/Bujoji",
"@type": "CorporateName",
"comment": "Bujoji, Kyoto (Kyoto), Kinki, Japan. Toda, Teisuke and Ryūsuke Asami; Zenshū jiin to teien : Nanbokuchō, Muromachi no kenchiku chōkoku kōgei, Nihon Bijutsu Zenshu",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bujoji",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/Byakugoji",
"@type": "CorporateName",
"comment": "Byakugoji, Nara (Nara), Kinki, Japan. Mizuno, Keizaburō, Toshifumi Konno, and Kakichi Suzuki; Mikkyō jiin to butsuzō, Nihon Bijutsu Zenshu, Tokyo: Kodansha, 1992",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Byakugoji",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/Byodointemple",
"@type": "CorporateName",
"comment": "Byodoin temple, Kyoto (Kyoto), Kinki, Japan. Mizuno, Keizaburō, Kakichi Suzuki, Shirō Itō, Kazuharu Asai; Byōdōin to Jōchō, Nihon Bijutsu Zenshu, Tokyo: Kodansha, 1994",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Byodoin temple",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/CapitalMuseum",
"@type": "CorporateName",
"comment": "Capital Museum, Beijing, Beijing Shi, China. Li Yiping; Jin De Zhen Ming Qing Yu Yao Chang Tu Xiang Yu Shou Du Bo Wu Guan Cang 'Qing Hua Yu Yao Chang Tu Yuan Zhuo Mian' De Nian Dai, Wen Wu, vol. 2003, no. 11",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Capital Museum",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/CathedralofNotreDame",
"@type": "CorporateName",
"comment": "Cathedral of Notre-Dame, Reims, Champagne-Ardenne, France. Stierlin, Henri; Encyclopaedia of World Architecture v.1, Second edition, London: Macmillan Press Ltd., 1979",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Cathedral of Notre-Dame",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/CathedralofSaintMary",
"@type": "CorporateName",
"comment": "Cathedral of Saint Mary, Hildesheim, Lower Saxony, Germany. Bernstein, David; Mystery of the Bayeux Tapestry, London: George Weidenfeld & Nicholson Ltd., 1986",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Cathedral of Saint Mary",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/CathedralofSanMartino",
"@type": "CorporateName",
"comment": "Cathedral of San Martino, Lucca, Tuscany, Italy. Cadogan, Jean K.; Domenico Ghirlandaio: Artist and Artisan, New Haven; London: Yale University Press, 2000",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Cathedral of San Martino",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/CenteroftheHistoryofJapaneseHistoricalIndustrialTechnology",
"@type": "CorporateName",
"comment": "Center of the History of Japanese Historical Industrial Technology, Tokyo (Tokyo), Kanto, Japan. Meiji kaikaki no nishikie (Meiji Japan through woodblock prints), Tokyo: Tokyo Daigaku Shuppankai, 1989",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Center of the History of Japanese Historical Industrial Technology",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/CentralStateArchiveofFilmandPhotoDocuments",
"@type": "CorporateName",
"comment": "Central State Archive of Film and Photo Documents, Saint Petersburg, Rossiya, Russia. State Russian Museum; Times of change : art in the Soviet Union 1960-1985, Bad Breisig: Palace Editions, 2006",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Central State Archive of Film and Photo Documents",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ChartreusedeChampmol",
"@type": "CorporateName",
"comment": "Chartreuse de Champmol, Dijon, Burgundy, France. Morand, Kathleen; Claus Sluter: Artist at the Court of Burgundy, Austin: University of Texas Press, 1991",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Chartreuse de Champmol",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ChesterandDavidaHerwitzCollection",
"@type": "CorporateName",
"comment": "Chester and Davida Herwitz Collection. Dalmia, Yashodhara; Making of Modern Indian Art: The Progressives, New Delhi; New York: Oxford University Press, 2001",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Chester and Davida Herwitz Collection",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ChhatrapatiShivajiMaharajiVastuSangrahalayaSirRatanTataCollection",
"@type": "CorporateName",
"comment": "Chhatrapati Shivaji Maharaji Vastu Sangrahalaya (Sir Ratan Tata Collection), Mumbai, Maharashtra, India. Michell, George; Majesty of Mughal Decoration: the Art and Architecture of Islamic India, London: Thames and Hudson, 2007",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Chhatrapati Shivaji Maharaji Vastu Sangrahalaya (Sir Ratan Tata Collection)",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ChibaCityMuseumofArt",
"@type": "CorporateName",
"comment": "Chiba City Museum of Art, Chiba (Chiba-ken), Kanto, Japan. Newland, Amy Reigle; Hotei Encyclopedia of Japanese Woodblock Prints, Amsterdam: Hotei Publishing, 2005",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Chiba City Museum of Art",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ChinaArtGallery",
"@type": "CorporateName",
"comment": "China Art Gallery, Beijing, Beijing Shi, China. Erickson, Britta; Words Without Meaning, Meaning Without Words: The Art of Xu Bing, Washington, D.C.; Seattle: Arthur M. Sackler Gallery, Smithsonian Institution; University of Washington Press, 2001",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "China Art Gallery",
"modified": {
"@type": "date",
"@value": "2014-07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/repository/ChinaInternationalExhibitionAgency",
"@type": "CorporateName",
"comment": "China International Exhibition Agency, Beijing, Beijing Shi, China. Andrews, Julia F. and Kuiyi Shen; Century in Crisis: Modernity and Tradition in the Art of Twentieth-Century China, New York: Guggenheim Museum, 1998",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"