-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstylePeriod.jsonld
3493 lines (3493 loc) · 114 KB
/
stylePeriod.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/stylePeriod",
"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": "stylePeriod controlled vocabulary"
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/AbdalWadid",
"@type": "Concept",
"comment": "Encyclop\u00e6dia Britannica, Inc.; Encyclopaedia Britannica Online, Chicago: Encyclop\u00e6dia Britannica, Inc., 2007. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Abd al-Wadid",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/AbstractKineticist",
"@type": "Concept",
"comment": "Term originated with Art on File. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Abstract Kineticist",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Afsharid",
"@type": "Concept",
"comment": "Hattstein, Markus and Peter Delius; Islam: Art and Architecture, Cologne: K\u00f6nemann, 2000. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Afsharid",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Akbari",
"@type": "Concept",
"comment": "Dehejia, Vidya. Indian art. London : Phaidon Press, 1997. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Akbari",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Alawid",
"@type": "Concept",
"comment": "http://collection.britishmuseum.org/resource/thes/x113908. The Filali Sharifs claimed descent from the Prophet Muhammad. They originated from south-eastern Morocco and restored central authority throughout Morocco in the late 17th-18th centuries.",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Alawid",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/AltunHa",
"@type": "Concept",
"comment": "Reents-Budet, Dorie; Painting the Maya Universe: Royal Ceramics form the Classic Period, Durham; London: Duke University Press, 1994. Named after the site in central Belize where the majority of vessels have been discovered. The style is distinctive not only for the black backgrounds but also for the unusually colorful head variant hieroglyphs of the pss texts painted on these vessels. These vases may provide us with the first evidence of Yucatec Mayan being spoken so far south of its traditional area, the Yucatan Peninsula of Mexico.",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Altun-Ha",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Ansei",
"@type": "Concept",
"comment": "Clark, Timothy; Ukiyo-e Paintings in the British Museum, Washington, D.C.: Smithsonian Institution Press, 1992. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Ansei",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/AodeKokutanistyle",
"@type": "Concept",
"comment": "Singer, Robert T.; Edo, Art in Japan 1615-1968, Washington: National Gallery of Art, 1998. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Aode Kokutani style",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Arabshahids",
"@type": "Concept",
"comment": "Hattstein, Markus and Peter Delius; Islam: Art and Architecture, Cologne: K\u00f6nemann, 2000. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Arabshahids",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/ArtBrut",
"@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": "Art Brut",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/ArtEvolucio",
"@type": "Concept",
"comment": "Robinson, William H, Jordi Falg\u00e0s, and Carmen Belen Lord; Barcelona and Modernity: Picasso, Gaud\u00ed, Mir\u00f3, Dal\u00ed, Cleveland, New Haven: Cleveland Museum of Art, Yale University Press, 2006. A Spanish avant-garde movement associated with Joaqu\u00edn Torres-Garc\u00eda. His focus on the subject of the city offered a clean break from the classicism of Noucentisme and was well suited for his experiments in cubist form. Art-Evoluci\u00f3 was one of the first movements in Spain to integrate the formal innovations and theories prevalent in the broader European avant-garde. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Art-Evoluci\u00f3",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Artuqid",
"@type": "Concept",
"comment": "Hoag, John D.; Islamic Architecture, New York: Harry N. Abrams, Inc., 1977. The Artuqid dynasty (Artuklu in Turkish, sometimes also spelled as Artukid or Ortokid; Turkish plural: Artuko\u011fullar\u0131) was an Oghuz Turkish dynasty that ruled in Eastern Anatolia and Northern Iraq in the eleventh and twelfth centuries. Two main branches of the dynasty ruled from Hasankeyf (H\u0131sn-\u0131 Keyf, H\u0131snkeyfa) between 1102\u20131231 and Mardin between 1106\u20131186 (and until 1409 as vassals). There was also a third branch that acquired Harput in 1112 and was independent between 1185\u20131233. The dynasty was founded by Artuq, son of Eks\u00fck, a general originally under Malik Shah I and then under the Seljuk emir of Damascus, Tutush I. Tutush appointed Artuq governor of Jerusalem in 1086. Artuq died in 1091, and his sons Sokman and Ilghazi were expelled from Jerusalem by the Fatimid vizier al-Afdal Shahanshah in 1098; the Fatimids lost the city to the crusaders the following year.. (Wikipedia)",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Artuqid",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/AshtarkhanidJanid",
"@type": "Concept",
"comment": "Term 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": "Ashtarkhanid (Janid)",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Aurelian",
"@type": "Concept",
"comment": "Rossi, Guido Alberto and Franco Lef\u00e8vre; Rome From the Air, New York: Rizzoli International Publications, Inc., 1989. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Aurelian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Ayutthaya",
"@type": "Concept",
"comment": "Mannikka, Eleanor; Selected Topics in Cataloging Asian Art: VRA, VRA Special Bulletin No. 4, Visual Resources Association, 1989. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Ayutthaya",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/BatakSumatranstyle",
"@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 style)",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/BayAreaFigurativeSchool",
"@type": "Concept",
"comment": "http://www.oxfordreference.com/view/10.1093/acref/9780195335798.001.0001/acref-9780195335798-e-153. Term applied to a group of American artists active in San Francisco from 1950 to the mid-1960s who forged a vibrant brand of figurative expressionism. Originating in the studios and art schools of postwar San Francisco, the movement transcended its regional identity to attain national recognition as a major trend in mid-20th-century American art.",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bay-Area Figurative School",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/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. ",
"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/stylePeriod/BlancdeChineware",
"@type": "Concept",
"comment": "Holden, Wendy; 'A Guide to Cataloguing Chinese Art', Visual Resources Association Special Bulletin No. 13, (1050138x). Ivory-white porcelain with transparent glaze produced from Dehua kilns in Fujian province. Shapes such as tripods, footed censers and zun, as well as figures and devotional objects (most common is Guanyin), are typical. Exported in the 17th and 18th centuries.",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Blanc de Chine ware",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/BlaueReiter",
"@type": "Concept",
"comment": "Gealt, Adelheid, et al.; Masterworks from the Indiana University Art Museum, Bloomington, IN: Indiana University Press, 2007. Expressionist group",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Blaue Reiter",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Blueandwhiteware",
"@type": "Concept",
"comment": "Holden, Wendy; 'A Guide to Cataloguing Chinese Art', Visual Resources Association Special Bulletin No. 13, (1050138x). Most important development of Yuan dynasty ceramic production was underglaze blue painting. The blue is derived from cobalt oxide, fired in a reducing atmosphere. Designs were painted on an unfired white porcelain body. Earliest dated blue and white is 1319, excavated from a tomb in Jiangxi. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Blue and white ware",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/BrandywineSchool",
"@type": "Concept",
"comment": "Term originated with the Bridgeman Art Library. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Brandywine School",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Bunka",
"@type": "Concept",
"comment": "Clark, Timothy; Ukiyo-e Paintings in the British Museum, Washington, D.C.: Smithsonian Institution Press, 1992. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bunka",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Bunkyu",
"@type": "Concept",
"comment": "Clark, Timothy; Ukiyo-e Paintings in the British Museum, Washington, D.C.: Smithsonian Institution Press, 1992. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bunky\u016b",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Bunsei",
"@type": "Concept",
"comment": "Clark, Timothy; Ukiyo-e Paintings in the British Museum, Washington, D.C.: Smithsonian Institution Press, 1992. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Bunsei",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/CapeCodColonial",
"@type": "Concept",
"comment": "Term used by Dr. Kingston Heath, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Cape Cod Colonial",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Chaco",
"@type": "Concept",
"comment": "Nabokov, Peter and Robert Easton; Native American Architecture, Oxford: Oxford University Press, 1989. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Chaco",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Chaghatayid",
"@type": "Concept",
"comment": "Hattstein, Markus and Peter Delius; Islam: Art and Architecture, Cologne: K\u00f6nemann, 2000. Use with Mongol",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Chaghatayid",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/ClassicCottage",
"@type": "Concept",
"comment": "Hawkins, William J., III and Willaim F. Willingham; Classic Houses of Portland, Oregon, 1850-1950, Portland, OR: Timber Press, 2005. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Classic Cottage",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Domitian",
"@type": "Concept",
"comment": "Term used by Dr. Steven Lowenstam, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Domitian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Downingcottage",
"@type": "Concept",
"comment": "Term used by Dr. Kingston Heath, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Downing cottage",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EarlyApulian",
"@type": "Concept",
"comment": "Term used by Dr. Steven Lowenstam, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Early Apulian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EarlyBoetian",
"@type": "Concept",
"comment": "Term used by Dr. Steven Lowenstam, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Early Boetian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EarlyHelladicII",
"@type": "Concept",
"comment": "Matz, Friedrich; Art of Crete and Early Greece: the Prelude to Greek Art, New York: Greystone Press, 1962. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Early Helladic II",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EarlyHelladicIII",
"@type": "Concept",
"comment": "Term used by Dr. Steven Lowenstam, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Early Helladic III",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EarlyHistoric",
"@type": "Concept",
"comment": "Mannikka, Eleanor; Selected Topics in Cataloging Asian Art: VRA, VRA Special Bulletin No. 4, Visual Resources Association, 1989. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Early Historic",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EarlyLucanian",
"@type": "Concept",
"comment": "Term used by Dr. Steven Lowenstam, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Early Lucanian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EarlyMannerist",
"@type": "Concept",
"comment": "Term used by Dr. Steven Lowenstam, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Early Mannerist",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EarlyMinoanII",
"@type": "Concept",
"comment": "Matz, Friedrich; Art of Crete and Early Greece: the Prelude to Greek Art, New York: Greystone Press, 1962. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Early Minoan II",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EarlyPrepalatial",
"@type": "Concept",
"comment": "Term used by Dr. Steven Lowenstam, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Early Prepalatial",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EarlyTang",
"@type": "Concept",
"comment": "Fong, Wen C. and James C.Y. Watt; Possessing the Past, New York: Metropolitan Museum of Art, 1996. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Early Tang",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EastAegean",
"@type": "Concept",
"comment": "Term used by Dr. Steven Lowenstam, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "East Aegean",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EastIonian",
"@type": "Concept",
"comment": "Term used by Dr. Steven Lowenstam, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "East Ionian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/EdoMiddlePeriod",
"@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": "Edo Middle Period",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/ErubIsland",
"@type": "Concept",
"comment": "Gealt, Adelheid, et al.; Masterworks from the Indiana University Art Museum, Bloomington, IN: Indiana University Press, 2007. Australian; aka Darnley Island",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Erub Island",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Exotic",
"@type": "Concept",
"comment": "Term used by Dr. Michael Shellenbarger, University of Oregon. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Exotic",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/FederalVernacular",
"@type": "Concept",
"comment": "Term used by Dr. Leland Roth, University of Oregon. An early Oregon building style created by non-professional builders remembering buildings and styles from the East Coast. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Federal Vernacular",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Hammudid",
"@type": "Concept",
"comment": "Barrucand, Marianne and Achim Bednorz; Moorish Architecture in Andalucia, Los Angeles: Taschen GmbH, 2007. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Hammudid",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/HarmonistChristiansect",
"@type": "Concept",
"comment": "Zimmerman, Philip; Harmony in Wood, Ambridge, PA: Friends of Old Economy Village, 2010. Members of the Harmony Society, a pietist, communal German religious group of separatist Lutherans, founded in 1814 by German immigrant George Rapp (actually Johann Georg Rapp) and then settled in Pennsylvania and Indiana.",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Harmonist (Christian sect)",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Hattian",
"@type": "Concept",
"comment": "Term 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": "Hattian",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/HudsonRiverSchool",
"@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": "Hudson River School",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Inaqid",
"@type": "Concept",
"comment": "Hattstein, Markus and Peter Delius; Islam: Art and Architecture, Cologne: K\u00f6nemann, 2000. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Inaqid",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/IncaHorizonPeriod",
"@type": "Concept",
"comment": "Damian, Carol; Virgin of the Andes; Art and Ritual in Colonial Cuzco, Miami Beach: Grassfield Press, 1995. This period is also known as the Imperial Era, a period of great expansion for the Incan empire.",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Inca Horizon Period",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Jalayir",
"@type": "Concept",
"comment": "Term originated with the Freer Gallery of Art. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Jalayir",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Jalayirid",
"@type": "Concept",
"comment": "Hattstein, Markus and Peter Delius; Islam: Art and Architecture, Cologne: K\u00f6nemann, 2000. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Jalayirid",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Justiniac",
"@type": "Concept",
"comment": "Kleiner, Fred S. and Christin J. Mamiya; Gardner's Art Through the Ages, Twelfth Edition, Belmont, California: Thomson/Wadsworth, 2005. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"
},
"label": "Justiniac",
"modified": {
"@type": "date",
"@value": "2014_07-10"
}
},
{
"@id": "http://opaquenamespace.org/ns/stylePeriod/Kaei",
"@type": "Concept",
"comment": "Clark, Timothy; Ukiyo-e Paintings in the British Museum, Washington, D.C.: Smithsonian Institution Press, 1992. ",
"definedBy": {
"@id": "http://opaquenamespace.org/VOCAB_PLACEHOLDER.nt"
},
"issued": {
"@type": "date",
"@value": "2014-07-10"