From 8734ace6e72efcd3d0e373b0b432b83e85ae7d5c Mon Sep 17 00:00:00 2001 From: Cyrus Hiatt <chiatt@fargeo.com> Date: Wed, 17 Jan 2024 17:04:54 -0800 Subject: [PATCH] add ref data to package, re #1540 --- .../0007_update_observation_types.py | 274 +- .../collections/collections.xml | 3077 ++++--- .../concepts/disco_aat_thesaurus.xml | 8177 +++++++++-------- 3 files changed, 5783 insertions(+), 5745 deletions(-) diff --git a/arches_for_science/migrations/0007_update_observation_types.py b/arches_for_science/migrations/0007_update_observation_types.py index 606052945..c81eb7aa3 100644 --- a/arches_for_science/migrations/0007_update_observation_types.py +++ b/arches_for_science/migrations/0007_update_observation_types.py @@ -1,4 +1,5 @@ from django.db import migrations +from django.db import connection class Migration(migrations.Migration): @@ -7,137 +8,150 @@ class Migration(migrations.Migration): ("arches_for_science", "0006_remove_TopConcept"), ] - forward = """ - -- Add 2D Data Measurement - insert into concepts (conceptid, legacyoid, nodetype) values ('c6ad85c9-12a5-40f5-8773-9b513ded7585', 'https://afs.test.fargeo.com/c6ad85c9-12a5-40f5-8773-9b513ded7585', 'Concept'); - insert into values (valueid, value, conceptid, languageid, valuetype) values ('1b23b170-114c-4602-b01a-4d0f8aba05ec', '2D Data Measurement', 'c6ad85c9-12a5-40f5-8773-9b513ded7585', 'en', 'prefLabel'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('4157e908-660c-45cc-a20f-06a3841b1543', 'c6ad85c9-12a5-40f5-8773-9b513ded7585','narrower'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('0ca18480-f5f2-41b2-b177-857726e5ecd7', 'c6ad85c9-12a5-40f5-8773-9b513ded7585', 'member'); - -- Add 3D Data Measurement - insert into concepts (conceptid, legacyoid, nodetype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', 'https://afs.test.fargeo.com/9f336e9a-17bd-45bc-a4a2-f816a551d196', 'Concept'); - insert into values (valueid, value, conceptid, languageid, valuetype) values ('a1637323-dd13-41bb-98f1-80f963c6e0ea', '3D Data Measurement', '9f336e9a-17bd-45bc-a4a2-f816a551d196', 'en', 'prefLabel'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('4157e908-660c-45cc-a20f-06a3841b1543', '9f336e9a-17bd-45bc-a4a2-f816a551d196','narrower'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('0ca18480-f5f2-41b2-b177-857726e5ecd7', '9f336e9a-17bd-45bc-a4a2-f816a551d196', 'member'); - -- Move FORS, RAMAN, XRF to 2d - update relations set conceptidfrom = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' where conceptidfrom = '4157e908-660c-45cc-a20f-06a3841b1543' and conceptidto in ( - '977c662f-c1d9-4a35-b556-696517e312ec', - 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', - '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da' - ); - update relations set conceptidfrom = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' where conceptidfrom = '0ca18480-f5f2-41b2-b177-857726e5ecd7' and conceptidto in ( - '977c662f-c1d9-4a35-b556-696517e312ec', - 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', - '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da' - ) and relationtype = 'member'; - - update values set value = 'Point XRF Measurement' where conceptid = '977c662f-c1d9-4a35-b556-696517e312ec'; - insert into values (value, conceptid, languageid, valuetype) values ('Point X-ray fluorescence spectroscopy (XRF) Measurement', '977c662f-c1d9-4a35-b556-696517e312ec', 'en', 'altLabel'); - - update values set value = 'Point Raman Measurement' where conceptid = 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982'; - insert into values (value, conceptid, languageid, valuetype) values ('Point Raman spectroscopy Measurement', 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', 'en', 'altLabel'); - - update values set value = 'FORS Measurement' where conceptid = '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da'; - insert into values (value, conceptid, languageid, valuetype) values ('Fiber Optics Reflectance spectroscopy (FORS) Measurement', '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da', 'en', 'altLabel'); - - - -- add new concepts - --FTIR Measurement (Alt label*: Fourier-transform infrared (FTIR) spectroscopy Measurement) 9ef07691-f751-415a-805e-6fc52fbdb5a1 - insert into concepts (conceptid, legacyoid, nodetype) values ('9ef07691-f751-415a-805e-6fc52fbdb5a1', 'https://afs.test.fargeo.com/9ef07691-f751-415a-805e-6fc52fbdb5a1', 'Concept'); - insert into values (valueid, value, conceptid, languageid, valuetype) values ('851414d5-4a7f-4e70-a4fb-6d37e6657798', 'FTIR Measurement', '9ef07691-f751-415a-805e-6fc52fbdb5a1', 'en', 'prefLabel'); - insert into values (value, conceptid, languageid, valuetype) values ('Fourier-transform infrared (FTIR) spectroscopy Measurement', '9ef07691-f751-415a-805e-6fc52fbdb5a1', 'en', 'altLabel'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('c6ad85c9-12a5-40f5-8773-9b513ded7585', '9ef07691-f751-415a-805e-6fc52fbdb5a1', 'narrower'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('c6ad85c9-12a5-40f5-8773-9b513ded7585', '9ef07691-f751-415a-805e-6fc52fbdb5a1', 'member'); - - --3D XRF Measurement (Alt label*: 3D X-ray fluorescence (XRF) spectroscopy Measurement) 091a244e-6532-4fc7-8b70-63364c4a4569 - insert into concepts (conceptid, legacyoid, nodetype) values ('091a244e-6532-4fc7-8b70-63364c4a4569', 'https://afs.test.fargeo.com/091a244e-6532-4fc7-8b70-63364c4a4569', 'Concept'); - insert into values (valueid, value, conceptid, languageid, valuetype) values ('17de9b07-66e5-4c97-a968-224fd31506e7', '3D XRF Measurement', '091a244e-6532-4fc7-8b70-63364c4a4569', 'en', 'prefLabel'); - insert into values (value, conceptid, languageid, valuetype) values ('3D X-ray fluorescence (XRF) spectroscopy Measurement', '091a244e-6532-4fc7-8b70-63364c4a4569', 'en', 'altLabel'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', '091a244e-6532-4fc7-8b70-63364c4a4569', 'narrower'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', '091a244e-6532-4fc7-8b70-63364c4a4569', 'member'); - - --RIS Measurement (Alt label*: Reflectance imaging spectroscopy (RIS) Measurement) d5c7a90b-fd87-4d2c-86f8-01909795e73e - insert into concepts (conceptid, legacyoid, nodetype) values ('d5c7a90b-fd87-4d2c-86f8-01909795e73e', 'https://afs.test.fargeo.com/d5c7a90b-fd87-4d2c-86f8-01909795e73e', 'Concept'); - insert into values (valueid, value, conceptid, languageid, valuetype) values ('3e40bee5-736b-42b6-a51b-c7a5cc143b80', 'RIS Measurement', 'd5c7a90b-fd87-4d2c-86f8-01909795e73e', 'en', 'prefLabel'); - insert into values (value, conceptid, languageid, valuetype) values ('Reflectance imaging spectroscopy (RIS) Measurement', 'd5c7a90b-fd87-4d2c-86f8-01909795e73e', 'en', 'altLabel'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', 'd5c7a90b-fd87-4d2c-86f8-01909795e73e', 'narrower'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', 'd5c7a90b-fd87-4d2c-86f8-01909795e73e', 'member'); - - --SEM-EDS Measurement (Alt label*: Scanning electron microscopy – energy dispersive (SEM-EDS) spectroscopy Measurement) 9b1c5d1b-7ff9-400a-acde-c9a081eff7e1 - insert into concepts (conceptid, legacyoid, nodetype) values ('9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'https://afs.test.fargeo.com/9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'Concept'); - insert into values (valueid, value, conceptid, languageid, valuetype) values ('a1f180e3-96a7-46b8-beb5-beedfe94be86', 'SEM-EDS Measurement', '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'en', 'prefLabel'); - insert into values (value, conceptid, languageid, valuetype) values ('Scanning electron microscopy – energy dispersive (SEM-EDS) spectroscopy Measurement', '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'en', 'altLabel'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'narrower'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'member'); - - -- 3D Raman Measurement (Alt label*: 3D Raman spectroscopy Measurement) fa1d6a48-4e82-4d23-8747-c4fa10f3301a - insert into concepts (conceptid, legacyoid, nodetype) values ('fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'https://afs.test.fargeo.com/fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'Concept'); - insert into values (valueid, value, conceptid, languageid, valuetype) values ('fb0bb706-b082-4387-85cf-5ca59b3259bc', '3D Raman Measurement', 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'en', 'prefLabel'); - insert into values (value, conceptid, languageid, valuetype) values ('3D Raman spectroscopy Measurement', 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'en', 'altLabel'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'narrower'); - insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'member'); + def forward(apps, schema_editor): + sql = """ + -- Add 2D Data Measurement + insert into concepts (conceptid, legacyoid, nodetype) values ('c6ad85c9-12a5-40f5-8773-9b513ded7585', 'https://afs.test.fargeo.com/c6ad85c9-12a5-40f5-8773-9b513ded7585', 'Concept'); + insert into values (valueid, value, conceptid, languageid, valuetype) values ('1b23b170-114c-4602-b01a-4d0f8aba05ec', '2D Data Measurement', 'c6ad85c9-12a5-40f5-8773-9b513ded7585', 'en', 'prefLabel'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('4157e908-660c-45cc-a20f-06a3841b1543', 'c6ad85c9-12a5-40f5-8773-9b513ded7585','narrower'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('0ca18480-f5f2-41b2-b177-857726e5ecd7', 'c6ad85c9-12a5-40f5-8773-9b513ded7585', 'member'); + -- Add 3D Data Measurement + insert into concepts (conceptid, legacyoid, nodetype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', 'https://afs.test.fargeo.com/9f336e9a-17bd-45bc-a4a2-f816a551d196', 'Concept'); + insert into values (valueid, value, conceptid, languageid, valuetype) values ('a1637323-dd13-41bb-98f1-80f963c6e0ea', '3D Data Measurement', '9f336e9a-17bd-45bc-a4a2-f816a551d196', 'en', 'prefLabel'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('4157e908-660c-45cc-a20f-06a3841b1543', '9f336e9a-17bd-45bc-a4a2-f816a551d196','narrower'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('0ca18480-f5f2-41b2-b177-857726e5ecd7', '9f336e9a-17bd-45bc-a4a2-f816a551d196', 'member'); + -- Move FORS, RAMAN, XRF to 2d + update relations set conceptidfrom = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' where conceptidfrom = '4157e908-660c-45cc-a20f-06a3841b1543' and conceptidto in ( + '977c662f-c1d9-4a35-b556-696517e312ec', + 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', + '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da' + ); + update relations set conceptidfrom = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' where conceptidfrom = '0ca18480-f5f2-41b2-b177-857726e5ecd7' and conceptidto in ( + '977c662f-c1d9-4a35-b556-696517e312ec', + 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', + '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da' + ) and relationtype = 'member'; + + update values set value = 'Point XRF Measurement' where conceptid = '977c662f-c1d9-4a35-b556-696517e312ec'; + insert into values (value, conceptid, languageid, valuetype) values ('Point X-ray fluorescence spectroscopy (XRF) Measurement', '977c662f-c1d9-4a35-b556-696517e312ec', 'en', 'altLabel'); + + update values set value = 'Point Raman Measurement' where conceptid = 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982'; + insert into values (value, conceptid, languageid, valuetype) values ('Point Raman spectroscopy Measurement', 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', 'en', 'altLabel'); + + update values set value = 'FORS Measurement' where conceptid = '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da'; + insert into values (value, conceptid, languageid, valuetype) values ('Fiber Optics Reflectance spectroscopy (FORS) Measurement', '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da', 'en', 'altLabel'); + + + -- add new concepts + --FTIR Measurement (Alt label*: Fourier-transform infrared (FTIR) spectroscopy Measurement) 9ef07691-f751-415a-805e-6fc52fbdb5a1 + insert into concepts (conceptid, legacyoid, nodetype) values ('9ef07691-f751-415a-805e-6fc52fbdb5a1', 'https://afs.test.fargeo.com/9ef07691-f751-415a-805e-6fc52fbdb5a1', 'Concept'); + insert into values (valueid, value, conceptid, languageid, valuetype) values ('851414d5-4a7f-4e70-a4fb-6d37e6657798', 'FTIR Measurement', '9ef07691-f751-415a-805e-6fc52fbdb5a1', 'en', 'prefLabel'); + insert into values (value, conceptid, languageid, valuetype) values ('Fourier-transform infrared (FTIR) spectroscopy Measurement', '9ef07691-f751-415a-805e-6fc52fbdb5a1', 'en', 'altLabel'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('c6ad85c9-12a5-40f5-8773-9b513ded7585', '9ef07691-f751-415a-805e-6fc52fbdb5a1', 'narrower'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('c6ad85c9-12a5-40f5-8773-9b513ded7585', '9ef07691-f751-415a-805e-6fc52fbdb5a1', 'member'); + + --3D XRF Measurement (Alt label*: 3D X-ray fluorescence (XRF) spectroscopy Measurement) 091a244e-6532-4fc7-8b70-63364c4a4569 + insert into concepts (conceptid, legacyoid, nodetype) values ('091a244e-6532-4fc7-8b70-63364c4a4569', 'https://afs.test.fargeo.com/091a244e-6532-4fc7-8b70-63364c4a4569', 'Concept'); + insert into values (valueid, value, conceptid, languageid, valuetype) values ('17de9b07-66e5-4c97-a968-224fd31506e7', '3D XRF Measurement', '091a244e-6532-4fc7-8b70-63364c4a4569', 'en', 'prefLabel'); + insert into values (value, conceptid, languageid, valuetype) values ('3D X-ray fluorescence (XRF) spectroscopy Measurement', '091a244e-6532-4fc7-8b70-63364c4a4569', 'en', 'altLabel'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', '091a244e-6532-4fc7-8b70-63364c4a4569', 'narrower'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', '091a244e-6532-4fc7-8b70-63364c4a4569', 'member'); + + --RIS Measurement (Alt label*: Reflectance imaging spectroscopy (RIS) Measurement) d5c7a90b-fd87-4d2c-86f8-01909795e73e + insert into concepts (conceptid, legacyoid, nodetype) values ('d5c7a90b-fd87-4d2c-86f8-01909795e73e', 'https://afs.test.fargeo.com/d5c7a90b-fd87-4d2c-86f8-01909795e73e', 'Concept'); + insert into values (valueid, value, conceptid, languageid, valuetype) values ('3e40bee5-736b-42b6-a51b-c7a5cc143b80', 'RIS Measurement', 'd5c7a90b-fd87-4d2c-86f8-01909795e73e', 'en', 'prefLabel'); + insert into values (value, conceptid, languageid, valuetype) values ('Reflectance imaging spectroscopy (RIS) Measurement', 'd5c7a90b-fd87-4d2c-86f8-01909795e73e', 'en', 'altLabel'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', 'd5c7a90b-fd87-4d2c-86f8-01909795e73e', 'narrower'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', 'd5c7a90b-fd87-4d2c-86f8-01909795e73e', 'member'); + + --SEM-EDS Measurement (Alt label*: Scanning electron microscopy – energy dispersive (SEM-EDS) spectroscopy Measurement) 9b1c5d1b-7ff9-400a-acde-c9a081eff7e1 + insert into concepts (conceptid, legacyoid, nodetype) values ('9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'https://afs.test.fargeo.com/9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'Concept'); + insert into values (valueid, value, conceptid, languageid, valuetype) values ('a1f180e3-96a7-46b8-beb5-beedfe94be86', 'SEM-EDS Measurement', '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'en', 'prefLabel'); + insert into values (value, conceptid, languageid, valuetype) values ('Scanning electron microscopy – energy dispersive (SEM-EDS) spectroscopy Measurement', '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'en', 'altLabel'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'narrower'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1', 'member'); + + -- 3D Raman Measurement (Alt label*: 3D Raman spectroscopy Measurement) fa1d6a48-4e82-4d23-8747-c4fa10f3301a + insert into concepts (conceptid, legacyoid, nodetype) values ('fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'https://afs.test.fargeo.com/fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'Concept'); + insert into values (valueid, value, conceptid, languageid, valuetype) values ('fb0bb706-b082-4387-85cf-5ca59b3259bc', '3D Raman Measurement', 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'en', 'prefLabel'); + insert into values (value, conceptid, languageid, valuetype) values ('3D Raman spectroscopy Measurement', 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'en', 'altLabel'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'narrower'); + insert into relations (conceptidfrom, conceptidto, relationtype) values ('9f336e9a-17bd-45bc-a4a2-f816a551d196', 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a', 'member'); """ - - reverse = """ - update values set value = 'XRF measurement' where conceptid = '977c662f-c1d9-4a35-b556-696517e312ec'; - update values set value = 'Raman measurement' where conceptid = 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982'; - update values set value = 'FORS measurement' where conceptid = '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da'; - update relations set conceptidfrom = '4157e908-660c-45cc-a20f-06a3841b1543' where conceptidfrom = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' and conceptidto in ( - '977c662f-c1d9-4a35-b556-696517e312ec', - 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', - '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da' - ) and relationtype = 'narrower'; - update relations set conceptidfrom = '0ca18480-f5f2-41b2-b177-857726e5ecd7' where conceptidfrom = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' and conceptidto in ( - '977c662f-c1d9-4a35-b556-696517e312ec', - 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', - '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da' - ) and relationtype = 'member'; - delete from relations where conceptidto = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' and conceptidfrom = '4157e908-660c-45cc-a20f-06a3841b1543'; -- delete 2d relation to obs - delete from relations where conceptidto = '9f336e9a-17bd-45bc-a4a2-f816a551d196' and conceptidfrom = '4157e908-660c-45cc-a20f-06a3841b1543'; -- delete 3d relation to obs - delete from values where valueid = '1b23b170-114c-4602-b01a-4d0f8aba05ec'; -- delete 2d data meas value - delete from values where valueid = 'a1637323-dd13-41bb-98f1-80f963c6e0ea'; -- delete 3d data meas value - delete from concepts where conceptid = 'c6ad85c9-12a5-40f5-8773-9b513ded7585'; -- delete 2d data meas concet - delete from concepts where conceptid = '9f336e9a-17bd-45bc-a4a2-f816a551d196'; -- delete 3d data meas concept - - -- FTIR Measurement (Alt label*: Fourier-transform infrared (FTIR) spectroscopy Measurement) 9ef07691-f751-415a-805e-6fc52fbdb5a1 - delete from relations where conceptidto = '9ef07691-f751-415a-805e-6fc52fbdb5a1'; - delete from values where conceptid = '9ef07691-f751-415a-805e-6fc52fbdb5a1'; - delete from concepts where conceptid = '9ef07691-f751-415a-805e-6fc52fbdb5a1'; - - --3D XRF Measurement (Alt label*: 3D X-ray fluorescence (XRF) spectroscopy Measurement) 091a244e-6532-4fc7-8b70-63364c4a4569 - delete from relations where conceptidto = '091a244e-6532-4fc7-8b70-63364c4a4569'; - delete from values where conceptid = '091a244e-6532-4fc7-8b70-63364c4a4569'; - delete from concepts where conceptid = '091a244e-6532-4fc7-8b70-63364c4a4569'; - - --RIS Measurement (Alt label*: Reflectance imaging spectroscopy (RIS) Measurement) d5c7a90b-fd87-4d2c-86f8-01909795e73e - delete from relations where conceptidto = 'd5c7a90b-fd87-4d2c-86f8-01909795e73e'; - delete from values where conceptid = 'd5c7a90b-fd87-4d2c-86f8-01909795e73e'; - delete from concepts where conceptid = 'd5c7a90b-fd87-4d2c-86f8-01909795e73e'; - - --SEM-EDS Measurement (Alt label*: Scanning electron microscopy – energy dispersive (SEM-EDS) spectroscopy Measurement) 9b1c5d1b-7ff9-400a-acde-c9a081eff7e1 - delete from relations where conceptidto = '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1'; - delete from values where conceptid = '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1'; - delete from concepts where conceptid = '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1'; - - -- 3D Raman Measurement (Alt label*: 3D Raman spectroscopy Measurement) fa1d6a48-4e82-4d23-8747-c4fa10f3301a - delete from relations where conceptidto = 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a'; - delete from values where conceptid = 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a'; - delete from concepts where conceptid = 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a'; - - -- reverse collection changes - delete from relations where conceptidto = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' and conceptidfrom = '0ca18480-f5f2-41b2-b177-857726e5ecd7'; -- delete 2d relation to obs member - delete from relations where conceptidto = '9f336e9a-17bd-45bc-a4a2-f816a551d196' and conceptidfrom = '0ca18480-f5f2-41b2-b177-857726e5ecd7'; -- delete 3d relation to obs member - - - delete from values where conceptid in ( - '977c662f-c1d9-4a35-b556-696517e312ec', - 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', - '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da' - ) and valuetype = 'altLabel'; - """ + + with connection.cursor() as cursor: + cursor.execute("""SELECT EXISTS (SELECT FROM information_schema.tables WHERE table_name = 'concepts');""") + row = cursor.fetchone() + if len(row) and row[0]: + cursor.execute("""select * from concepts where conceptid = '4157e908-660c-45cc-a20f-06a3841b1543';""") + row = cursor.fetchone() + if row: + cursor.execute(sql) + + def reverse(apps, schema_editor): + sql = """ + update values set value = 'XRF measurement' where conceptid = '977c662f-c1d9-4a35-b556-696517e312ec'; + update values set value = 'Raman measurement' where conceptid = 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982'; + update values set value = 'FORS measurement' where conceptid = '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da'; + update relations set conceptidfrom = '4157e908-660c-45cc-a20f-06a3841b1543' where conceptidfrom = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' and conceptidto in ( + '977c662f-c1d9-4a35-b556-696517e312ec', + 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', + '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da' + ) and relationtype = 'narrower'; + update relations set conceptidfrom = '0ca18480-f5f2-41b2-b177-857726e5ecd7' where conceptidfrom = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' and conceptidto in ( + '977c662f-c1d9-4a35-b556-696517e312ec', + 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', + '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da' + ) and relationtype = 'member'; + delete from values where conceptid = 'c6ad85c9-12a5-40f5-8773-9b513ded7585'; + delete from values where conceptid = '9f336e9a-17bd-45bc-a4a2-f816a551d196'; + delete from relations where conceptidto = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' and conceptidfrom = '4157e908-660c-45cc-a20f-06a3841b1543'; -- delete 2d relation to obs + delete from relations where conceptidto = '9f336e9a-17bd-45bc-a4a2-f816a551d196' and conceptidfrom = '4157e908-660c-45cc-a20f-06a3841b1543'; -- delete 3d relation to obs + delete from values where valueid = '1b23b170-114c-4602-b01a-4d0f8aba05ec'; -- delete 2d data meas value + delete from values where valueid = 'a1637323-dd13-41bb-98f1-80f963c6e0ea'; -- delete 3d data meas value + delete from concepts where conceptid = 'c6ad85c9-12a5-40f5-8773-9b513ded7585'; -- delete 2d data meas concet + delete from concepts where conceptid = '9f336e9a-17bd-45bc-a4a2-f816a551d196'; -- delete 3d data meas concept + + -- FTIR Measurement (Alt label*: Fourier-transform infrared (FTIR) spectroscopy Measurement) 9ef07691-f751-415a-805e-6fc52fbdb5a1 + delete from relations where conceptidto = '9ef07691-f751-415a-805e-6fc52fbdb5a1'; + delete from values where conceptid = '9ef07691-f751-415a-805e-6fc52fbdb5a1'; + delete from concepts where conceptid = '9ef07691-f751-415a-805e-6fc52fbdb5a1'; + + --3D XRF Measurement (Alt label*: 3D X-ray fluorescence (XRF) spectroscopy Measurement) 091a244e-6532-4fc7-8b70-63364c4a4569 + delete from relations where conceptidto = '091a244e-6532-4fc7-8b70-63364c4a4569'; + delete from values where conceptid = '091a244e-6532-4fc7-8b70-63364c4a4569'; + delete from concepts where conceptid = '091a244e-6532-4fc7-8b70-63364c4a4569'; + + --RIS Measurement (Alt label*: Reflectance imaging spectroscopy (RIS) Measurement) d5c7a90b-fd87-4d2c-86f8-01909795e73e + delete from relations where conceptidto = 'd5c7a90b-fd87-4d2c-86f8-01909795e73e'; + delete from values where conceptid = 'd5c7a90b-fd87-4d2c-86f8-01909795e73e'; + delete from concepts where conceptid = 'd5c7a90b-fd87-4d2c-86f8-01909795e73e'; + + --SEM-EDS Measurement (Alt label*: Scanning electron microscopy – energy dispersive (SEM-EDS) spectroscopy Measurement) 9b1c5d1b-7ff9-400a-acde-c9a081eff7e1 + delete from relations where conceptidto = '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1'; + delete from values where conceptid = '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1'; + delete from concepts where conceptid = '9b1c5d1b-7ff9-400a-acde-c9a081eff7e1'; + + -- 3D Raman Measurement (Alt label*: 3D Raman spectroscopy Measurement) fa1d6a48-4e82-4d23-8747-c4fa10f3301a + delete from relations where conceptidto = 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a'; + delete from values where conceptid = 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a'; + delete from concepts where conceptid = 'fa1d6a48-4e82-4d23-8747-c4fa10f3301a'; + + -- reverse collection changes + delete from relations where conceptidto = 'c6ad85c9-12a5-40f5-8773-9b513ded7585' and conceptidfrom = '0ca18480-f5f2-41b2-b177-857726e5ecd7'; -- delete 2d relation to obs member + delete from relations where conceptidto = '9f336e9a-17bd-45bc-a4a2-f816a551d196' and conceptidfrom = '0ca18480-f5f2-41b2-b177-857726e5ecd7'; -- delete 3d relation to obs member + + + delete from values where conceptid in ( + '977c662f-c1d9-4a35-b556-696517e312ec', + 'b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982', + '2e3e64b3-c802-4bbc-b284-5dbcd50ee4da' + ) and valuetype = 'altLabel'; + """ + + with connection.cursor() as cursor: + cursor.execute(sql) operations = [ - migrations.RunSQL( - forward, - reverse, - ) + migrations.RunPython(forward, reverse) ] \ No newline at end of file diff --git a/arches_for_science/pkg/reference_data/collections/collections.xml b/arches_for_science/pkg/reference_data/collections/collections.xml index 317b92713..611555519 100644 --- a/arches_for_science/pkg/reference_data/collections/collections.xml +++ b/arches_for_science/pkg/reference_data/collections/collections.xml @@ -3,3225 +3,3238 @@ xmlns:skos="http://www.w3.org/2004/02/skos/core#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" > - <skos:Collection rdf:about="http://localhost:8000/c53d3557-e033-4aa1-b020-0dc2b690025f"> - <skos:prefLabel xml:lang="en-us">{"id": "194b6329-aafe-459a-abd1-bcc9d7d2c981", "value": "TimeSpan types"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/fd0222dd-bd50-4597-b092-d124833176b3"> - <skos:prefLabel xml:lang="en-us">{"id": "235101ee-7b29-4e28-aa8c-662cef79702e", "value": "Document Part Types"}</skos:prefLabel> + <skos:Collection rdf:about="http://localhost:8000/cb3e0447-a6f4-4137-b376-99c3c32bd4c6"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2ebb9a11-2d7d-47de-90da-e728635cb76b"/> + <skos:Concept rdf:about="http://localhost:8000/4574d04f-cf3d-4c2f-91d7-0c50f3d7aa14"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/102d6dc8-5a56-418e-afbf-799398a37ba8"/> + <skos:Concept rdf:about="http://localhost:8000/6e229a28-05ae-483a-b6ec-16fb3f9af098"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/dd91e772-2e37-4e47-8306-a678ce7fd10c"/> + <skos:Concept rdf:about="http://localhost:8000/8ca43306-a4ee-426f-967f-12f327ead6a2"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/54414cde-b8e6-4ab7-8b9e-cd3694f178d8"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/93011327-679b-4c33-8197-fbf47f500c51"/> + <skos:Concept rdf:about="http://localhost:8000/4a7ec821-f41e-4f5b-bec0-2e81f1ae3f20"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "add3556b-2d99-4758-ae5d-e4737306fb7d", "value": "Relationship Labels - Group"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/eda0630d-68b1-4948-94dd-5c1317142729"/> + <skos:Concept rdf:about="http://localhost:8000/651dec1d-d823-4b52-a37b-47e7fe013ff2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/406d3dd2-2308-4bd8-9ad0-74ceeecd4e95"/> + <skos:Concept rdf:about="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7c182fc3-2385-4e1c-9a2e-f3f21d6daf06"/> + <skos:Concept rdf:about="http://localhost:8000/f54b7c1d-6fd2-4d10-8c64-01e8b9f74d63"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c7406ab4-e50c-47d2-8459-636186e25ebe"/> + <skos:Concept rdf:about="http://localhost:8000/6046ddcf-6698-4e9f-8c04-7459109d04e3"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/05137059-4a6c-4bf5-934d-c1ca7378246d"/> + <skos:Concept rdf:about="http://localhost:8000/c601ffd7-0ec9-4208-8591-756a0aa86755"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/46744fc9-2c59-4dda-a056-36ebf04dd941"/> + <skos:Concept rdf:about="http://localhost:8000/d94192dd-b513-443e-b20f-b5002aba0176"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/237f9065-c319-4c54-a8b5-065fd0fb7f92"/> + <skos:Concept rdf:about="http://localhost:8000/5da14416-2e56-4426-b4a8-86601b428ab4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2a343ae1-3e8d-43f7-a84e-fbf38dcda817"/> + <skos:Concept rdf:about="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/eec63d9c-cc98-4f2b-86cc-6a51485ff9b3"/> + <skos:Concept rdf:about="http://localhost:8000/49961e2c-7ee0-4989-bae4-385e47472ef0"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/16ef6491-1bb6-42cf-ad67-ce870f97be25"/> + <skos:Concept rdf:about="http://localhost:8000/2507a724-9cb6-420d-8010-47a053c9bb5a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b30bcc05-bf01-47e8-b863-29103cf3b52c"/> + <skos:Concept rdf:about="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e416cd94-bddd-4f63-bb15-066400ece24d"/> + <skos:Concept rdf:about="http://localhost:8000/45290c05-28b7-447e-bc6d-d8cf3c86a748"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> + <skos:Concept rdf:about="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/080cc639-4eef-4eef-80aa-8bc022e7c92b"/> + <skos:Concept rdf:about="http://localhost:8000/313487f7-e22b-48ed-8b94-c2c7bdb384fd"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f61056d0-07cf-40da-8694-e23c2deb3bd5"/> + <skos:Concept rdf:about="http://localhost:8000/8e6005a1-849d-426e-b657-5907b817d79b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bd10b3df-47fc-49fb-a459-108f9cd60d16"/> + <skos:Concept rdf:about="http://localhost:8000/e0b7f712-f47f-4353-a454-b8e61a31a66a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> + <skos:Concept rdf:about="http://localhost:8000/60b354e4-52fd-4c7b-9fc8-83350e894738"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a7cb9b76-59e2-47d4-8da6-52891ebbf4a5"/> + <skos:Concept rdf:about="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a019643e-9b29-4b5d-bed7-f2ecaa4e86f9"/> + <skos:Concept rdf:about="http://localhost:8000/05137059-4a6c-4bf5-934d-c1ca7378246d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/198c9b4e-f3bd-4312-99cd-de73783686d7"/> + <skos:Concept rdf:about="http://localhost:8000/5957d1e1-64be-415a-aa72-653243364544"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/84556902-d04b-4ad0-8dee-1cab211a98f6"/> + <skos:Concept rdf:about="http://localhost:8000/ade10811-70ea-401c-b4f6-ea811592c4d9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> + <skos:Concept rdf:about="http://localhost:8000/b03fb895-dc2d-4643-a770-a59ff4161637"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ae0239c0-1f46-46c1-9821-616824e6cb8d"/> + <skos:Concept rdf:about="http://localhost:8000/7655e50b-5fbe-4d1c-91ac-2f22592d8dff"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "83ee9a11-1628-4927-b7a5-11d35dac9e3c", "value": "Relationship Labels - Person"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> + <skos:Concept rdf:about="http://localhost:8000/ae38a9a6-5e28-41ff-957d-f9527a07a57a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4574d04f-cf3d-4c2f-91d7-0c50f3d7aa14"/> + <skos:Concept rdf:about="http://localhost:8000/82535c52-9e39-428b-947d-f04ef5533a28"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> + <skos:Concept rdf:about="http://localhost:8000/5d21b903-1d8b-4539-9185-a5c07006f16f"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> + <skos:Concept rdf:about="http://localhost:8000/d49cabd7-bbbc-4cba-8d61-23c3a794ac59"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> + <skos:Concept rdf:about="http://localhost:8000/02350960-6bac-47c9-abd9-5995ecfcd4da"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b03fb895-dc2d-4643-a770-a59ff4161637"/> + <skos:Concept rdf:about="http://localhost:8000/40a37f81-29fa-4d6e-a0fa-ea99d894343d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6046ddcf-6698-4e9f-8c04-7459109d04e3"/> + <skos:Concept rdf:about="http://localhost:8000/a949df20-5c8c-4ad9-b2f4-03dc9b8d09ee"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0cd2452d-daca-4cb1-bb15-d6aba7ca0b26"/> + <skos:Concept rdf:about="http://localhost:8000/2a343ae1-3e8d-43f7-a84e-fbf38dcda817"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> + <skos:Concept rdf:about="http://localhost:8000/a795a0c7-7643-4748-94a1-70e45cbd65e5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b413ecb6-090a-42d0-ac17-5b3542a2d147"/> + <skos:Concept rdf:about="http://localhost:8000/d3e16385-0bb4-4940-b9b7-780d305d1592"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6e229a28-05ae-483a-b6ec-16fb3f9af098"/> + <skos:Concept rdf:about="http://localhost:8000/db499c64-e4fa-4b38-846e-7066796eabe1"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> + <skos:Concept rdf:about="http://localhost:8000/a7cb9b76-59e2-47d4-8da6-52891ebbf4a5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d3e16385-0bb4-4940-b9b7-780d305d1592"/> + <skos:Concept rdf:about="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/49961e2c-7ee0-4989-bae4-385e47472ef0"/> + <skos:Concept rdf:about="http://localhost:8000/abef629f-5d8c-45ef-be56-ab9d6f7c9ba4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> + <skos:Concept rdf:about="http://localhost:8000/6add5a1c-f3ad-4393-ad77-3092929d3079"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d81a487b-712e-46e9-851d-52674ecbf9ff"/> + <skos:Concept rdf:about="http://localhost:8000/0cd2452d-daca-4cb1-bb15-d6aba7ca0b26"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8e6005a1-849d-426e-b657-5907b817d79b"/> + <skos:Concept rdf:about="http://localhost:8000/2f4c6357-f437-4948-9a7c-78350dfe37b8"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c7613a4c-cce5-4709-b4f4-542909856180"/> + <skos:Concept rdf:about="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/ac85c692-0d2b-4132-8e5f-2ec3138294d5"> - <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/96caef6b-c991-445b-a9fc-edacf6772ca4"/> + <skos:Concept rdf:about="http://localhost:8000/8078e585-b5bc-4016-ba55-8161b4cf4c41"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3161211b-d4f3-4ce7-9e5d-ace00c3ad361"/> + <skos:Concept rdf:about="http://localhost:8000/834b28f1-d181-4366-b294-44e21f4810f1"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/70847092-39b5-4620-97ed-2ec6e1a14c21"/> + <skos:Concept rdf:about="http://localhost:8000/7090abfd-2702-47b7-8a66-4186cb607197"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/814cfe88-8330-43b7-a600-26096b7764c1"/> + <skos:Concept rdf:about="http://localhost:8000/c8613c26-82eb-485c-8854-7ccb619276ab"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "67c4cf4a-5262-4c22-91b4-1235749d8b3a", "value": "Relationship Labels - Project"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/855d9e88-1368-489a-893c-47f2a31db561"/> + <skos:Concept rdf:about="http://localhost:8000/3b20d306-21f5-473a-a012-8f9ba70742db"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3077e707-7e96-4370-9e88-08d38a4e6fad"/> + <skos:Concept rdf:about="http://localhost:8000/f61056d0-07cf-40da-8694-e23c2deb3bd5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e4362f02-74d1-4229-a33c-06aac1540e65"/> + <skos:Concept rdf:about="http://localhost:8000/3e6defea-fff6-459a-ae5a-c71f849a362d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4a3a2e3f-35ac-4ed4-994d-12e4c12b9bdc"/> + <skos:Concept rdf:about="http://localhost:8000/26ed262a-f60b-44a9-8401-af993bcb3ed4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1b8ef6a7-c0ed-4437-b836-16c3dec42ce9"/> + <skos:Concept rdf:about="http://localhost:8000/5188d98d-4faf-4150-aaaf-d70038f9e202"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> - <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c53742f1-4a2d-4b63-be4f-4cacc9bc9319"/> + <skos:Concept rdf:about="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f62ccd87-14d8-48b9-9114-b8f752b6d999"/> + <skos:Concept rdf:about="http://localhost:8000/55bda626-a4f8-4e30-82b8-ed438a02edc7"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/8b7faa16-3846-4360-b767-bb2c823b6550"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ca1546cf-6ee5-428d-9728-b90fc8820baa"/> + <skos:Concept rdf:about="http://localhost:8000/89462b0b-71a7-4872-a6ca-18ded17f7568"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/54e55a90-d134-40a5-a4f0-4b2dfdb86448"/> + <skos:Concept rdf:about="http://localhost:8000/75613ffa-549e-42cd-8a5a-b9ff66ae8c07"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2e0fefb8-7556-4ffb-b946-e3546bac2e72"/> + <skos:Concept rdf:about="http://localhost:8000/4490453e-608e-40d6-9e39-79af0f1cc9fe"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "311d3930-7fea-4842-9199-245a7f1a88bf", "value": "Textual Work Types - Subject"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b5767b7c-6c4e-48bd-abfa-caf3ff139cc8"/> + <skos:Concept rdf:about="http://localhost:8000/1ff831dd-8f7a-4331-9579-51e513725ca3"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/71c34097-58ba-444d-8c8b-ba3d108454f5"/> + <skos:Concept rdf:about="http://localhost:8000/ca08a220-303e-4bee-92d9-8bd4f5302b49"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/a3f6f8fc-2391-4559-9f0e-63aa5c4b7843"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/590afd37-bae2-4f4c-bdc4-07da5d69057b"/> + <skos:Concept rdf:about="http://localhost:8000/cddda87a-6281-4547-a2e0-4047994836c8"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c29f7171-e670-443e-8a22-9b4587e1e5f5"/> + <skos:Concept rdf:about="http://localhost:8000/15f52617-f1cf-40c6-b31f-eccd2dc8c252"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/1adae7ea-4884-432f-af44-c9aea3a48a3d"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3e308dfd-eb14-4ecf-842f-7a37c1baf89c"/> + <skos:Concept rdf:about="http://localhost:8000/1b162cc8-1f31-4fb3-81f9-2479b21d01aa"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/577e77ea-4381-47a9-962b-eadd844a9110"/> + <skos:Concept rdf:about="http://localhost:8000/8a8ee459-ed32-4bd5-9235-518529188060"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/46123a1f-6786-4cef-8193-c1f72e67cc5c"/> + <skos:Concept rdf:about="http://localhost:8000/77617e19-4102-4f2c-9a8c-4bb118d0d61d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1095a156-7683-4887-911a-e6c8cf0c9212"/> + <skos:Concept rdf:about="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9a887cba-44fe-49b1-a36c-c517ab107a94"/> + <skos:Concept rdf:about="http://localhost:8000/02899026-debc-4b08-8f8a-5750362ff27e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/eaea40ec-8d19-4cc6-ae36-7ad042d50e3b"/> + <skos:Concept rdf:about="http://localhost:8000/79f44e59-670d-408d-9439-0c6810523d5e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9d612a11-accb-4476-8eaa-fb3222a34682"/> + <skos:Concept rdf:about="http://localhost:8000/5b1a15d7-f4ce-48ec-871f-d09b330feeb1"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5bd80233-7f66-41a1-bc32-2e9b49126bef"/> + <skos:Concept rdf:about="http://localhost:8000/c13e1882-c0c8-4044-8fff-1268ea9c721f"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/58c824cc-8ed7-4cd4-8431-125a7dc924e7"/> + <skos:Concept rdf:about="http://localhost:8000/427a808f-e289-46e0-986c-58eeb697d884"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f7df4fa5-f302-410e-9855-2c1283338846"/> + <skos:Concept rdf:about="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/88ab2b99-d06a-46a1-b886-c5fc2d16be37"/> + <skos:Concept rdf:about="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4975d51f-8f85-4f86-8047-cbd123f52df1"/> + <skos:Concept rdf:about="http://localhost:8000/0cb8fa21-80b6-4afe-aeca-c9863ed725d6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7e932636-476c-41f5-99d3-2e13615d024f"/> + <skos:Concept rdf:about="http://localhost:8000/8d1180e7-b308-4402-b2a4-ed5322c2a90c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b49c7a4b-e991-4725-b419-24177f07d05c"/> + <skos:Concept rdf:about="http://localhost:8000/7be0d823-b871-4006-9eed-e0351c604f05"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/67f6e3e0-b6ae-4417-9c72-d71c5d48b971"/> + <skos:Concept rdf:about="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d86b855e-6af4-402d-a94a-d13e36bddf8e"/> + <skos:Concept rdf:about="http://localhost:8000/0fff64d5-7aa5-4986-ae75-a684adec2dc6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/10871f3f-688c-400e-8e60-3e072457d782"/> + <skos:Concept rdf:about="http://localhost:8000/5bd94b1d-b8b0-44fb-8e1a-fab715b2e8d0"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b5cd85b4-622b-434d-b5b1-4da47d089517"/> + <skos:Concept rdf:about="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/27b0c339-73b3-41c7-9a6a-736085f7cfb3"/> + <skos:Concept rdf:about="http://localhost:8000/bb798e77-861d-47d8-a19b-5e9b25b6633d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/44a26d59-7aec-4a10-b042-5a9e20fbea1c"/> + <skos:Concept rdf:about="http://localhost:8000/2ddfe0e3-e6de-4d0c-a521-389cbeb24955"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f5cc9b43-ae9b-43ed-91e5-baf11f7eafd2"/> + <skos:Concept rdf:about="http://localhost:8000/4359e806-8987-48fc-ae44-5695dac48fcf"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/48905a90-6f06-42e3-b82c-e64729a69da3"/> + <skos:Concept rdf:about="http://localhost:8000/7d9253fe-5b76-444d-84aa-34f35f0be80e"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "cac05ab8-f52e-4117-a06e-964ef3b0e01a", "value": "Statement Types "}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c897e183-1f0d-4b47-83d4-5c7a49bb6b5b"/> + <skos:Concept rdf:about="http://localhost:8000/8907399d-9e31-4026-8ce9-7be964908a91"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ef8baa96-3c1e-4479-8c7b-60877b70e1d4"/> + <skos:Concept rdf:about="http://localhost:8000/a842d507-d64c-482d-95d7-18d6e02d0ca6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a7cd7054-82e2-498d-a6cf-e63bdc310046"/> + <skos:Concept rdf:about="http://localhost:8000/e49fda8f-fc61-47e3-9d66-127323d9aadb"/> + </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/a3f6f8fc-2391-4559-9f0e-63aa5c4b7843"> + <skos:member> + <skos:Concept rdf:about="http://localhost:8000/176f9d09-0020-4913-bd6a-750b3eefe586"/> </skos:member> <skos:member> <skos:Concept rdf:about="http://localhost:8000/bd6d0d34-a399-4b19-98e3-f19dd1ba50ea"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/55a12730-d6e1-4809-81df-4973a723f5b1"/> + <skos:Concept rdf:about="http://localhost:8000/bc56bd76-01b7-48e5-81d7-9753553196c6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f0cf2005-d8da-4dcd-b862-d215ab2ac8b9"/> + <skos:Concept rdf:about="http://localhost:8000/1b8bcbc1-60b1-4476-b52a-659a59f891ad"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/be85e667-6ccf-4a41-9664-4ba298d60e12"/> + <skos:Concept rdf:about="http://localhost:8000/facf36fa-b7ab-4307-bd1e-9471e37fde9e"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5061b3a0-2e10-4b74-909a-2a8bfa4e5192"/> + <skos:Concept rdf:about="http://localhost:8000/2e0fefb8-7556-4ffb-b946-e3546bac2e72"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/176f9d09-0020-4913-bd6a-750b3eefe586"/> + <skos:Concept rdf:about="http://localhost:8000/4a07b2a8-c879-43f4-9691-612335fb09d1"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7151deec-9e15-48de-a9a2-8a7b36206729"/> + <skos:Concept rdf:about="http://localhost:8000/e4e16e39-49c9-44dd-a618-b51b2f75be6b"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/291354a2-c0b8-4143-baaf-534a9fae15a9"/> + <skos:Concept rdf:about="http://localhost:8000/085e2a58-ecaf-4f67-a8f7-5eafc905bbe0"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bc56bd76-01b7-48e5-81d7-9753553196c6"/> + <skos:Concept rdf:about="http://localhost:8000/ef8baa96-3c1e-4479-8c7b-60877b70e1d4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/93dc6410-1d4f-4c8e-8652-497a4f9cec9f"/> + <skos:Concept rdf:about="http://localhost:8000/013d5917-b323-42e4-b138-5fc5d1a28937"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e4e16e39-49c9-44dd-a618-b51b2f75be6b"/> + <skos:Concept rdf:about="http://localhost:8000/399f8888-2090-4290-a67e-61b5e59caeaf"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9605ed38-f319-4678-8976-a1502c241ca4"/> + <skos:Concept rdf:about="http://localhost:8000/b5c6f06d-d6a6-482a-bebf-83c6da262e10"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> <skos:Concept rdf:about="http://localhost:8000/e9e3ddad-b36e-4d6f-8741-1c552978835d"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/2e0fefb8-7556-4ffb-b946-e3546bac2e72"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/283aec4b-cdeb-4a9f-bc12-f64fb6bacc14"/> + <skos:Concept rdf:about="http://localhost:8000/aaf58bb4-82c4-4aa6-b8c0-7755018217eb"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ecc650ae-ab21-4e48-b0c7-3a8b915a6bb4"/> + <skos:Concept rdf:about="http://localhost:8000/bcea7794-7ce8-4f82-882a-3aa6b083a275"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/45ba0f19-5c56-4ed0-b408-667071af9b51"/> + <skos:Concept rdf:about="http://localhost:8000/590afd37-bae2-4f4c-bdc4-07da5d69057b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6574ad8a-e271-49ee-8853-640db00a8ec2"/> + <skos:Concept rdf:about="http://localhost:8000/ecc650ae-ab21-4e48-b0c7-3a8b915a6bb4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bcea7794-7ce8-4f82-882a-3aa6b083a275"/> + <skos:Concept rdf:about="http://localhost:8000/4a313fdf-bad8-47a3-a0f3-3918de7d5920"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4aff2b02-eee2-4076-9c56-47fe699a44b4"/> + <skos:Concept rdf:about="http://localhost:8000/d3e01a25-cbc3-422c-ab2a-b6ca1fe64f7b"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> + <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/10d4f4dc-0326-43e7-9dd9-3e892fcc62d4"/> + <skos:Concept rdf:about="http://localhost:8000/d9eba15b-b804-4be2-9d76-a71308a7a5dc"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c06853d6-857b-49e1-9ce4-e94e67d81554"/> + <skos:Concept rdf:about="http://localhost:8000/68236382-7c0b-495b-a0c3-ad694e87914e"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d3e01a25-cbc3-422c-ab2a-b6ca1fe64f7b"/> + <skos:Concept rdf:about="http://localhost:8000/103f37b1-6d21-4889-99ad-2c82e8adf685"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/be081cac-13ef-4370-ba34-457cb2d4a981"/> + <skos:Concept rdf:about="http://localhost:8000/27b0c339-73b3-41c7-9a6a-736085f7cfb3"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e844ea45-fb8c-43e1-bf5d-34dda5575c14"/> + <skos:Concept rdf:about="http://localhost:8000/4aff2b02-eee2-4076-9c56-47fe699a44b4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9d84c6cb-70b1-4607-a035-2175a18f1991"/> + <skos:Concept rdf:about="http://localhost:8000/cc7bbe70-cea7-4c54-89ea-cbc00ec7e470"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d9eba15b-b804-4be2-9d76-a71308a7a5dc"/> + <skos:Concept rdf:about="http://localhost:8000/577e77ea-4381-47a9-962b-eadd844a9110"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "803f961c-a962-4c28-ade0-afaeb5f49cd7", "value": "Relationship Labels - Physical Thing"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/66f57ae1-a868-4ff5-85be-758b4c2620c7"/> + <skos:Concept rdf:about="http://localhost:8000/f7df4fa5-f302-410e-9855-2c1283338846"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/eef169bf-1736-495e-bfae-f0bf3a5a2189"/> + <skos:Concept rdf:about="http://localhost:8000/9605ed38-f319-4678-8976-a1502c241ca4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/085e2a58-ecaf-4f67-a8f7-5eafc905bbe0"/> + <skos:Concept rdf:about="http://localhost:8000/9d84c6cb-70b1-4607-a035-2175a18f1991"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/aaf58bb4-82c4-4aa6-b8c0-7755018217eb"/> + <skos:Concept rdf:about="http://localhost:8000/203d8caa-92d1-4d47-a14c-a377658a7ffe"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c7376c39-6e1a-46f1-8bde-974ea63be6fe"/> + <skos:Concept rdf:about="http://localhost:8000/a65becad-25b5-4039-8dc0-f8d8c04af227"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/013d5917-b323-42e4-b138-5fc5d1a28937"/> + <skos:Concept rdf:about="http://localhost:8000/51933bfe-248b-4ed3-a4e1-36bf1bac589d"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/399f8888-2090-4290-a67e-61b5e59caeaf"/> + <skos:Concept rdf:about="http://localhost:8000/eef169bf-1736-495e-bfae-f0bf3a5a2189"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c64fe7b5-1fca-4de8-8562-cdc32fc26c98"/> + <skos:Concept rdf:about="http://localhost:8000/58c824cc-8ed7-4cd4-8431-125a7dc924e7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4a313fdf-bad8-47a3-a0f3-3918de7d5920"/> + <skos:Concept rdf:about="http://localhost:8000/262d850e-0eb6-4a58-b3d2-b44675801633"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/68236382-7c0b-495b-a0c3-ad694e87914e"/> + <skos:Concept rdf:about="http://localhost:8000/7e932636-476c-41f5-99d3-2e13615d024f"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/24f4f6ae-ca63-4559-bfec-f50ab6c8346b"/> + <skos:Concept rdf:about="http://localhost:8000/c897e183-1f0d-4b47-83d4-5c7a49bb6b5b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1b8bcbc1-60b1-4476-b52a-659a59f891ad"/> + <skos:Concept rdf:about="http://localhost:8000/4975d51f-8f85-4f86-8047-cbd123f52df1"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b5c6f06d-d6a6-482a-bebf-83c6da262e10"/> + <skos:Concept rdf:about="http://localhost:8000/1095a156-7683-4887-911a-e6c8cf0c9212"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/facf36fa-b7ab-4307-bd1e-9471e37fde9e"/> + <skos:Concept rdf:about="http://localhost:8000/90d7c629-8d3d-4814-9e53-697a7c82a030"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7a2954a9-df05-40e4-9630-dabdf41903dc"/> + <skos:Concept rdf:about="http://localhost:8000/48905a90-6f06-42e3-b82c-e64729a69da3"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e05856b0-bc90-4ce5-9ea4-b6a891adfecb"/> + <skos:Concept rdf:about="http://localhost:8000/10871f3f-688c-400e-8e60-3e072457d782"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/51613e01-7a47-4bb9-b9ae-75d449dbcda7"/> + <skos:Concept rdf:about="http://localhost:8000/c64fe7b5-1fca-4de8-8562-cdc32fc26c98"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/51933bfe-248b-4ed3-a4e1-36bf1bac589d"/> + <skos:Concept rdf:about="http://localhost:8000/44a26d59-7aec-4a10-b042-5a9e20fbea1c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/103f37b1-6d21-4889-99ad-2c82e8adf685"/> + <skos:Concept rdf:about="http://localhost:8000/be85e667-6ccf-4a41-9664-4ba298d60e12"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a65becad-25b5-4039-8dc0-f8d8c04af227"/> + <skos:Concept rdf:about="http://localhost:8000/85e3eee2-24cc-4adc-9fd9-6e2444beaafb"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/85e3eee2-24cc-4adc-9fd9-6e2444beaafb"/> + <skos:Concept rdf:about="http://localhost:8000/c7376c39-6e1a-46f1-8bde-974ea63be6fe"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/90d7c629-8d3d-4814-9e53-697a7c82a030"/> + <skos:Concept rdf:about="http://localhost:8000/93dc6410-1d4f-4c8e-8652-497a4f9cec9f"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/203d8caa-92d1-4d47-a14c-a377658a7ffe"/> + <skos:Concept rdf:about="http://localhost:8000/5061b3a0-2e10-4b74-909a-2a8bfa4e5192"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/262d850e-0eb6-4a58-b3d2-b44675801633"/> + <skos:Concept rdf:about="http://localhost:8000/f0cf2005-d8da-4dcd-b862-d215ab2ac8b9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/cc7bbe70-cea7-4c54-89ea-cbc00ec7e470"/> + <skos:Concept rdf:about="http://localhost:8000/7a2954a9-df05-40e4-9630-dabdf41903dc"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4a07b2a8-c879-43f4-9691-612335fb09d1"/> + <skos:Concept rdf:about="http://localhost:8000/66f57ae1-a868-4ff5-85be-758b4c2620c7"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/e480165f-44d2-4ec4-b13a-f246270f06af"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6f91f3d7-bb19-4d23-9ba4-e18d37825054"/> + <skos:Concept rdf:about="http://localhost:8000/c29f7171-e670-443e-8a22-9b4587e1e5f5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/cbf70ed1-44ea-4079-92b0-2c98834e808c"/> + <skos:Concept rdf:about="http://localhost:8000/6574ad8a-e271-49ee-8853-640db00a8ec2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6cf9b53f-7e44-4264-8fa4-5d828ff3de72"/> + <skos:Concept rdf:about="http://localhost:8000/55a12730-d6e1-4809-81df-4973a723f5b1"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5864a6e2-5d38-42d5-bfc3-e7a4972cebed"/> + <skos:Concept rdf:about="http://localhost:8000/7151deec-9e15-48de-a9a2-8a7b36206729"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3ce7379e-24e2-4543-93be-d2a6353e197d"/> + <skos:Concept rdf:about="http://localhost:8000/24f4f6ae-ca63-4559-bfec-f50ab6c8346b"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "2d184615-73c7-4940-85f7-a6b7dd9af56f", "value": "Document Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d1cfab03-ce07-4800-9b89-d6129b602228"/> + <skos:Concept rdf:about="http://localhost:8000/9d612a11-accb-4476-8eaa-fb3222a34682"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b4d7567c-09f8-4039-b15f-67cada5cb57d"/> + <skos:Concept rdf:about="http://localhost:8000/e844ea45-fb8c-43e1-bf5d-34dda5575c14"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2c1b54ac-bcba-48bc-975c-108961fe3036"/> + <skos:Concept rdf:about="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ac2a0b23-c92f-482e-8f55-292386f66b86"/> + <skos:Concept rdf:about="http://localhost:8000/c06853d6-857b-49e1-9ce4-e94e67d81554"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f3612d52-0bdb-471d-afec-a3378c25b452"/> + <skos:Concept rdf:about="http://localhost:8000/a7cd7054-82e2-498d-a6cf-e63bdc310046"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/58800805-b0f0-4a6b-947a-8b98fec4c33a"/> + <skos:Concept rdf:about="http://localhost:8000/b49c7a4b-e991-4725-b419-24177f07d05c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5a7be6de-f130-472a-931e-635d830be28e"/> + <skos:Concept rdf:about="http://localhost:8000/9a887cba-44fe-49b1-a36c-c517ab107a94"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b42fd6eb-b396-4ae0-926c-09f9a516f873"/> + <skos:Concept rdf:about="http://localhost:8000/88ab2b99-d06a-46a1-b886-c5fc2d16be37"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6bea9a27-6b4b-4133-8ad9-105e9fee5dcb"/> + <skos:Concept rdf:about="http://localhost:8000/291354a2-c0b8-4143-baaf-534a9fae15a9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f903e2b8-5579-4159-b28d-9d8544c88c4b"/> + <skos:Concept rdf:about="http://localhost:8000/51613e01-7a47-4bb9-b9ae-75d449dbcda7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f73e0b59-f329-4b8f-932e-7c9426567c2c"/> + <skos:Concept rdf:about="http://localhost:8000/f5cc9b43-ae9b-43ed-91e5-baf11f7eafd2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a45e32f8-3025-49d7-9ad3-f0f960b4f772"/> + <skos:Concept rdf:about="http://localhost:8000/d86b855e-6af4-402d-a94a-d13e36bddf8e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a480c815-461a-470a-b012-81df75aef74e"/> + <skos:Concept rdf:about="http://localhost:8000/283aec4b-cdeb-4a9f-bc12-f64fb6bacc14"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "803f961c-a962-4c28-ade0-afaeb5f49cd7", "value": "Relationship Labels - Physical Thing"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/24b56b86-97c4-4fe5-a6e2-4a7a5d5ba8f1"/> + <skos:Concept rdf:about="http://localhost:8000/10d4f4dc-0326-43e7-9dd9-3e892fcc62d4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/22b51542-05e5-482f-97ba-0283336ef91b"/> + <skos:Concept rdf:about="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4916b590-691a-4bcd-9fdd-bcc756484682"/> + <skos:Concept rdf:about="http://localhost:8000/46123a1f-6786-4cef-8193-c1f72e67cc5c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d3a32755-c1ab-4e04-9a3b-9bc1b20583b1"/> + <skos:Concept rdf:about="http://localhost:8000/eaea40ec-8d19-4cc6-ae36-7ad042d50e3b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a5ae03f5-d2c0-4336-b170-2019d7cae51b"/> + <skos:Concept rdf:about="http://localhost:8000/5bd80233-7f66-41a1-bc32-2e9b49126bef"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/67f13f49-946d-4eb7-acf9-1bea91c30874"> - <skos:member rdf:resource="http://localhost:8000/7e932636-476c-41f5-99d3-2e13615d024f"/> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> - <skos:prefLabel xml:lang="en">{"id": "626e23fd-9b51-4175-90a7-c7a1e1eaeb92", "value": "Relationship Labels - Instrument"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/291354a2-c0b8-4143-baaf-534a9fae15a9"/> - <skos:member rdf:resource="http://localhost:8000/93dc6410-1d4f-4c8e-8652-497a4f9cec9f"/> - <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> - <skos:member rdf:resource="http://localhost:8000/d86b855e-6af4-402d-a94a-d13e36bddf8e"/> - <skos:member rdf:resource="http://localhost:8000/aaf58bb4-82c4-4aa6-b8c0-7755018217eb"/> - <skos:member rdf:resource="http://localhost:8000/3e308dfd-eb14-4ecf-842f-7a37c1baf89c"/> - <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> - <skos:member rdf:resource="http://localhost:8000/c64fe7b5-1fca-4de8-8562-cdc32fc26c98"/> - <skos:member rdf:resource="http://localhost:8000/46123a1f-6786-4cef-8193-c1f72e67cc5c"/> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/963f3f6a-c52e-4119-92fd-76d6fec9d31e"/> + <skos:Concept rdf:about="http://localhost:8000/3e308dfd-eb14-4ecf-842f-7a37c1baf89c"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/b5c6f06d-d6a6-482a-bebf-83c6da262e10"/> - <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> - <skos:member rdf:resource="http://localhost:8000/c897e183-1f0d-4b47-83d4-5c7a49bb6b5b"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/88acc148-088a-4161-8715-7fccf7d6fd5d"/> + <skos:Concept rdf:about="http://localhost:8000/b5cd85b4-622b-434d-b5b1-4da47d089517"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/24f4f6ae-ca63-4559-bfec-f50ab6c8346b"/> - <skos:member rdf:resource="http://localhost:8000/bcea7794-7ce8-4f82-882a-3aa6b083a275"/> - <skos:member rdf:resource="http://localhost:8000/5bd80233-7f66-41a1-bc32-2e9b49126bef"/> - <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> - <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> - <skos:member rdf:resource="http://localhost:8000/9d84c6cb-70b1-4607-a035-2175a18f1991"/> - <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/f0b85b97-f3ae-41dd-ac4e-6f1e249a9dbb"> - <skos:prefLabel xml:lang="en">{"id": "5092f113-6237-4018-8b88-49b05ebf5f9b", "value": "Event Types - Production"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/11378278-d14a-49c7-afe6-3a7fbb60f347"/> + <skos:Concept rdf:about="http://localhost:8000/45ba0f19-5c56-4ed0-b408-667071af9b51"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/db62dc19-f356-410b-a309-474f5b59c767"/> + <skos:Concept rdf:about="http://localhost:8000/e05856b0-bc90-4ce5-9ea4-b6a891adfecb"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a9590301-77dc-4b3d-aa36-d669d1e338e3"/> + <skos:Concept rdf:about="http://localhost:8000/be081cac-13ef-4370-ba34-457cb2d4a981"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/57f9fcb6-bfe5-4556-b610-35eb17798e08"/> + <skos:Concept rdf:about="http://localhost:8000/67f6e3e0-b6ae-4417-9c72-d71c5d48b971"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/0eb564f7-3ccb-4b13-aab1-307011c8610a"> + <skos:prefLabel xml:lang="en-us">{"id": "0c50ed39-ca1e-460c-9bef-fc0a23eb21eb", "value": "Duration types"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/a978368f-4219-4c27-a3fe-42e543919f58"> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> + <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/31ea3a41-4561-4e0e-af20-00157fe9715b"/> + <skos:Concept rdf:about="http://localhost:8000/cead6e47-d4b2-42fe-84b6-42bca2857d11"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/56f1db33-4d80-4871-bcb5-63ed73c67fec"/> + <skos:Concept rdf:about="http://localhost:8000/fd194f67-9432-451b-98dc-be6b76742965"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/145c37a2-08d3-4f38-a4dc-7a141eb83bdc"/> + <skos:Concept rdf:about="http://localhost:8000/2ab5c7a0-d903-4d2d-bf47-1d866d78f170"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "88fdf279-d813-4257-8234-15353f71c865", "value": "Relationship Labels - Digital Resource"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/d86b855e-6af4-402d-a94a-d13e36bddf8e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/268fd523-ce84-4e91-923b-01766b28f628"/> + <skos:Concept rdf:about="http://localhost:8000/cb4cc06d-3d14-480f-aab1-b02c28042946"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/9d84c6cb-70b1-4607-a035-2175a18f1991"/> + <skos:member rdf:resource="http://localhost:8000/46123a1f-6786-4cef-8193-c1f72e67cc5c"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ab17510a-b66c-455a-9f59-f4049ce522fa"/> + <skos:Concept rdf:about="http://localhost:8000/6748d659-f49e-4abb-b383-d97dfe6cc368"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/84123513-2b77-4050-b1dc-4fcd1269d83f"/> + <skos:Concept rdf:about="http://localhost:8000/c3e6c25d-0ea2-44e9-ba4c-8faf4397ec06"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/7a8d3213-0a64-4f31-92a4-191b41236ae9"> + <skos:member rdf:resource="http://localhost:8000/5bd80233-7f66-41a1-bc32-2e9b49126bef"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/be56d99a-4be6-4e2e-ab58-2432d8a77e46"/> + <skos:Concept rdf:about="http://localhost:8000/deb7b57d-3b11-4e62-866f-b48cb12a4dbe"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + <skos:Concept rdf:about="http://localhost:8000/6ea01af9-52df-4ddf-bd9e-2efda73f574f"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "a6257edf-76c5-456e-817a-c8ea3aa5086e", "value": "Identifier Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5bc20189-e804-45e2-bb65-b8d6c0ceda3b"/> + <skos:Concept rdf:about="http://localhost:8000/af047bfd-5454-41ef-812a-9fbf6ad9a0ac"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fbc4dc2f-61f7-4d80-969d-d61fdd71de23"/> + <skos:Concept rdf:about="http://localhost:8000/de8785a1-26e0-47f6-8612-a1909d88f55e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/371aae9e-044a-475b-8933-2275236232df"/> + <skos:Concept rdf:about="http://localhost:8000/49e10ca8-12ae-4ead-9494-34c35a8de316"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + <skos:Concept rdf:about="http://localhost:8000/525aee44-e205-4684-9218-b5c4f39397ee"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/45eeaca7-077d-45d2-9a3b-34268ddd9ea6"/> + <skos:Concept rdf:about="http://localhost:8000/8be4ac1b-581b-4967-b7d6-5e2fe36fadb6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d2d7ac19-a9b6-436c-936a-3c6f314b2742"/> + <skos:Concept rdf:about="http://localhost:8000/00a828d4-74d8-45ed-b4ec-cf6f709bb693"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b7929847-1bff-4ca6-b3f3-488b4a37db81"/> + <skos:Concept rdf:about="http://localhost:8000/b7b40309-f000-41cb-bc1b-630487e657ee"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/080f39d1-b54b-4260-9506-57eb802e5b4e"/> + <skos:Concept rdf:about="http://localhost:8000/3c44d93c-01e5-4768-9b00-61db7f350d6a"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9ce6c237-f015-4ee0-b7e3-9cc10b006483"/> + <skos:Concept rdf:about="http://localhost:8000/4455ae0b-c49e-4940-b43a-4b818848fdd4"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/a4095d09-de02-4675-ab63-42227d9e94bc"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6ecfc5d9-6082-465b-8294-670ad9c9270e"/> + <skos:Concept rdf:about="http://localhost:8000/6398dee0-6c11-40aa-97ef-496009784adb"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fe6ad26d-48c2-407d-b438-7859c5f1c301"/> + <skos:Concept rdf:about="http://localhost:8000/1a7aa305-ab78-4ea3-abd2-16ac8d8ce10e"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> + <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f5b916fc-e129-4391-9545-26871ddf3975"/> + <skos:Concept rdf:about="http://localhost:8000/e7801af8-3f25-4103-aef2-c5a023b1b15e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3774b3a4-96bc-4643-b260-c0fce1127bcf"/> + <skos:Concept rdf:about="http://localhost:8000/ed080f48-eafc-4b7f-b7f4-8ef01ddb7eba"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/efd96a8d-da15-4a59-a7e4-0e08a6e5c1c4"/> + <skos:Concept rdf:about="http://localhost:8000/61dfad8f-cd46-47fd-820f-3e69ac423cc6"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/7a8d3213-0a64-4f31-92a4-191b41236ae9"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e26bc6aa-28c3-4462-8f15-5015ed64c3fe"/> + <skos:Concept rdf:about="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8889c48f-504f-410d-8eb1-737f062d85f3"/> + <skos:Concept rdf:about="http://localhost:8000/fbc4dc2f-61f7-4d80-969d-d61fdd71de23"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "14fe6bef-2c46-4c81-9912-fae8036068e4", "value": "Event Types - Visual Work Creation Event"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f56d47fa-10d9-4e37-a009-9b77a96e3f50"/> + <skos:Concept rdf:about="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/72006c28-5bee-4c31-9b64-64d06ca3ab8b"/> + <skos:Concept rdf:about="http://localhost:8000/45eeaca7-077d-45d2-9a3b-34268ddd9ea6"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/52c977b9-3ee6-415c-ad88-70e01c72fd38"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> + <skos:Concept rdf:about="http://localhost:8000/d2d7ac19-a9b6-436c-936a-3c6f314b2742"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> + <skos:Concept rdf:about="http://localhost:8000/080f39d1-b54b-4260-9506-57eb802e5b4e"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "a6257edf-76c5-456e-817a-c8ea3aa5086e", "value": "Identifier Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> + <skos:Concept rdf:about="http://localhost:8000/9ce6c237-f015-4ee0-b7e3-9cc10b006483"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "5b1029a0-d764-4c7b-b3dd-405ab731f62e", "value": "Statement Types - Person"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/77617e19-4102-4f2c-9a8c-4bb118d0d61d"/> + <skos:Concept rdf:about="http://localhost:8000/b7929847-1bff-4ca6-b3f3-488b4a37db81"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> + <skos:Concept rdf:about="http://localhost:8000/371aae9e-044a-475b-8933-2275236232df"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> + <skos:Concept rdf:about="http://localhost:8000/be56d99a-4be6-4e2e-ab58-2432d8a77e46"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> + <skos:Concept rdf:about="http://localhost:8000/5bc20189-e804-45e2-bb65-b8d6c0ceda3b"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/cb3e0447-a6f4-4137-b376-99c3c32bd4c6"> - <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> + <skos:Collection rdf:about="http://localhost:8000/3a0ceee3-fe65-408c-970d-357dc535c594"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7090abfd-2702-47b7-8a66-4186cb607197"/> + <skos:Concept rdf:about="http://localhost:8000/2405aba5-e27c-42e6-9bd2-f6faf5e97369"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/49961e2c-7ee0-4989-bae4-385e47472ef0"/> - <skos:member rdf:resource="http://localhost:8000/8e6005a1-849d-426e-b657-5907b817d79b"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d94192dd-b513-443e-b20f-b5002aba0176"/> + <skos:Concept rdf:about="http://localhost:8000/afc13dca-6cef-4a8a-95a5-071ff442988f"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/55bda626-a4f8-4e30-82b8-ed438a02edc7"/> + <skos:Concept rdf:about="http://localhost:8000/a6b75972-d4f5-47b3-9b15-e8edacfa910d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/60b354e4-52fd-4c7b-9fc8-83350e894738"/> + <skos:Concept rdf:about="http://localhost:8000/3ff85615-be42-4e63-a92e-c0074717ecf2"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e0b7f712-f47f-4353-a454-b8e61a31a66a"/> + <skos:Concept rdf:about="http://localhost:8000/c3074d88-9974-43e7-817e-686dcada6b9c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ade10811-70ea-401c-b4f6-ea811592c4d9"/> + <skos:Concept rdf:about="http://localhost:8000/fdc542c4-9009-4558-9e90-28ef26d70f80"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5188d98d-4faf-4150-aaaf-d70038f9e202"/> + <skos:Concept rdf:about="http://localhost:8000/654d8f80-ed8c-42a9-a085-f9afc9d76493"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> + <skos:prefLabel xml:lang="en">{"id": "c11f52fd-ce14-4069-b74c-aa361d5ebcc5", "value": "Relationship Labels - Observation"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/45290c05-28b7-447e-bc6d-d8cf3c86a748"/> + <skos:Concept rdf:about="http://localhost:8000/582ce144-b5a7-4b1b-883f-163f323d3a66"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/40a37f81-29fa-4d6e-a0fa-ea99d894343d"/> + <skos:Concept rdf:about="http://localhost:8000/24ce7a28-25c7-4037-907e-319edad7f474"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/abef629f-5d8c-45ef-be56-ab9d6f7c9ba4"/> + <skos:Concept rdf:about="http://localhost:8000/0f434613-5533-490e-89f0-0aae96040b52"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3b20d306-21f5-473a-a012-8f9ba70742db"/> + <skos:Concept rdf:about="http://localhost:8000/6a86dfe8-4cca-409f-9fbe-95dd3e1c5a16"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/05137059-4a6c-4bf5-934d-c1ca7378246d"/> + <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> + <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> + <skos:member rdf:resource="http://localhost:8000/2e0fefb8-7556-4ffb-b946-e3546bac2e72"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5d21b903-1d8b-4539-9185-a5c07006f16f"/> + <skos:Concept rdf:about="http://localhost:8000/774a6a6e-66f0-4b6c-92de-ea1f8c0c1018"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4a7ec821-f41e-4f5b-bec0-2e81f1ae3f20"/> + <skos:Concept rdf:about="http://localhost:8000/68000b8c-5b5c-4718-9b0a-b70a08379f1f"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6add5a1c-f3ad-4393-ad77-3092929d3079"/> + <skos:Concept rdf:about="http://localhost:8000/2224c58e-75aa-4da7-be59-05c984002196"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c8613c26-82eb-485c-8854-7ccb619276ab"/> + <skos:Concept rdf:about="http://localhost:8000/fbc6a24a-26d7-47fe-bd09-d283cba4348a"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/1ad61b29-95db-4885-a5ad-0d037e609488"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/26ed262a-f60b-44a9-8401-af993bcb3ed4"/> + <skos:Concept rdf:about="http://localhost:8000/f899df4e-86eb-4579-aca8-d0cbadc31994"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/2a343ae1-3e8d-43f7-a84e-fbf38dcda817"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ae38a9a6-5e28-41ff-957d-f9527a07a57a"/> + <skos:Concept rdf:about="http://localhost:8000/47e940a3-b483-41c9-9430-34c990014764"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/db499c64-e4fa-4b38-846e-7066796eabe1"/> + <skos:Concept rdf:about="http://localhost:8000/5bf90b5e-37eb-45af-b326-e4609208fcb0"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> - <skos:member rdf:resource="http://localhost:8000/f61056d0-07cf-40da-8694-e23c2deb3bd5"/> + <skos:prefLabel xml:lang="en-us">{"id": "8ab8d472-6bca-49f2-9d54-07de64528a90", "value": "Group Joining Types"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/ca9e81f3-471d-4d1f-b323-edc816b1c522"> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8078e585-b5bc-4016-ba55-8161b4cf4c41"/> + <skos:Concept rdf:about="http://localhost:8000/7db49ae3-80dd-4c2e-83f3-842446415f13"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/834b28f1-d181-4366-b294-44e21f4810f1"/> + <skos:Concept rdf:about="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/02350960-6bac-47c9-abd9-5995ecfcd4da"/> + <skos:Concept rdf:about="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f54b7c1d-6fd2-4d10-8c64-01e8b9f74d63"/> + <skos:Concept rdf:about="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> - <skos:member rdf:resource="http://localhost:8000/a7cb9b76-59e2-47d4-8da6-52891ebbf4a5"/> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2f4c6357-f437-4948-9a7c-78350dfe37b8"/> + <skos:Concept rdf:about="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "1fa387a3-7edf-4025-9a43-72ae2ee65833", "value": "Identifier Types - Visual Work"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a795a0c7-7643-4748-94a1-70e45cbd65e5"/> + <skos:Concept rdf:about="http://localhost:8000/a064d600-c179-4df7-9f1f-17f4b33472be"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/54414cde-b8e6-4ab7-8b9e-cd3694f178d8"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8ca43306-a4ee-426f-967f-12f327ead6a2"/> + <skos:Concept rdf:about="http://localhost:8000/eec63d9c-cc98-4f2b-86cc-6a51485ff9b3"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5957d1e1-64be-415a-aa72-653243364544"/> + <skos:Concept rdf:about="http://localhost:8000/b30bcc05-bf01-47e8-b863-29103cf3b52c"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/f61056d0-07cf-40da-8694-e23c2deb3bd5"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2507a724-9cb6-420d-8010-47a053c9bb5a"/> + <skos:Concept rdf:about="http://localhost:8000/e416cd94-bddd-4f63-bb15-066400ece24d"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "83ee9a11-1628-4927-b7a5-11d35dac9e3c", "value": "Relationship Labels - Person"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/4574d04f-cf3d-4c2f-91d7-0c50f3d7aa14"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5da14416-2e56-4426-b4a8-86601b428ab4"/> + <skos:Concept rdf:about="http://localhost:8000/a019643e-9b29-4b5d-bed7-f2ecaa4e86f9"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> - <skos:member rdf:resource="http://localhost:8000/b03fb895-dc2d-4643-a770-a59ff4161637"/> + <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7655e50b-5fbe-4d1c-91ac-2f22592d8dff"/> + <skos:Concept rdf:about="http://localhost:8000/d81a487b-712e-46e9-851d-52674ecbf9ff"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/4574d04f-cf3d-4c2f-91d7-0c50f3d7aa14"/> + <skos:member rdf:resource="http://localhost:8000/6e229a28-05ae-483a-b6ec-16fb3f9af098"/> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3e6defea-fff6-459a-ae5a-c71f849a362d"/> + <skos:Concept rdf:about="http://localhost:8000/080cc639-4eef-4eef-80aa-8bc022e7c92b"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/6046ddcf-6698-4e9f-8c04-7459109d04e3"/> + <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> + <skos:member rdf:resource="http://localhost:8000/49961e2c-7ee0-4989-bae4-385e47472ef0"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d49cabd7-bbbc-4cba-8d61-23c3a794ac59"/> + <skos:Concept rdf:about="http://localhost:8000/ae0239c0-1f46-46c1-9821-616824e6cb8d"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/6046ddcf-6698-4e9f-8c04-7459109d04e3"/> - <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a949df20-5c8c-4ad9-b2f4-03dc9b8d09ee"/> + <skos:Concept rdf:about="http://localhost:8000/7c182fc3-2385-4e1c-9a2e-f3f21d6daf06"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/82535c52-9e39-428b-947d-f04ef5533a28"/> + <skos:Concept rdf:about="http://localhost:8000/237f9065-c319-4c54-a8b5-065fd0fb7f92"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/0cd2452d-daca-4cb1-bb15-d6aba7ca0b26"/> - <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> - <skos:member rdf:resource="http://localhost:8000/6e229a28-05ae-483a-b6ec-16fb3f9af098"/> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> - <skos:member rdf:resource="http://localhost:8000/d3e16385-0bb4-4940-b9b7-780d305d1592"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c601ffd7-0ec9-4208-8591-756a0aa86755"/> + <skos:Concept rdf:about="http://localhost:8000/198c9b4e-f3bd-4312-99cd-de73783686d7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/313487f7-e22b-48ed-8b94-c2c7bdb384fd"/> + <skos:Concept rdf:about="http://localhost:8000/b413ecb6-090a-42d0-ac17-5b3542a2d147"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> + <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> + <skos:member rdf:resource="http://localhost:8000/8e6005a1-849d-426e-b657-5907b817d79b"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/651dec1d-d823-4b52-a37b-47e7fe013ff2"/> + <skos:Concept rdf:about="http://localhost:8000/bd10b3df-47fc-49fb-a459-108f9cd60d16"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/a16a4edc-c916-4293-af98-44d76ce6cba7"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d12c085c-fa9a-4cc6-83b7-15031ce63c19"/> + <skos:Concept rdf:about="http://localhost:8000/c7613a4c-cce5-4709-b4f4-542909856180"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> + <skos:prefLabel xml:lang="en">{"id": "add3556b-2d99-4758-ae5d-e4737306fb7d", "value": "Relationship Labels - Group"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8a8ee459-ed32-4bd5-9235-518529188060"/> + <skos:Concept rdf:about="http://localhost:8000/eda0630d-68b1-4948-94dd-5c1317142729"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/b03fb895-dc2d-4643-a770-a59ff4161637"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7d9253fe-5b76-444d-84aa-34f35f0be80e"/> + <skos:Concept rdf:about="http://localhost:8000/84556902-d04b-4ad0-8dee-1cab211a98f6"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1b162cc8-1f31-4fb3-81f9-2479b21d01aa"/> + <skos:Concept rdf:about="http://localhost:8000/406d3dd2-2308-4bd8-9ad0-74ceeecd4e95"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/05137059-4a6c-4bf5-934d-c1ca7378246d"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5b1a15d7-f4ce-48ec-871f-d09b330feeb1"/> + <skos:Concept rdf:about="http://localhost:8000/c7406ab4-e50c-47d2-8459-636186e25ebe"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0cb8fa21-80b6-4afe-aeca-c9863ed725d6"/> + <skos:Concept rdf:about="http://localhost:8000/93011327-679b-4c33-8197-fbf47f500c51"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/d3e16385-0bb4-4940-b9b7-780d305d1592"/> + <skos:member rdf:resource="http://localhost:8000/2a343ae1-3e8d-43f7-a84e-fbf38dcda817"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/02899026-debc-4b08-8f8a-5750362ff27e"/> + <skos:Concept rdf:about="http://localhost:8000/46744fc9-2c59-4dda-a056-36ebf04dd941"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/427a808f-e289-46e0-986c-58eeb697d884"/> + <skos:Concept rdf:about="http://localhost:8000/16ef6491-1bb6-42cf-ad67-ce870f97be25"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/a7cb9b76-59e2-47d4-8da6-52891ebbf4a5"/> + <skos:member rdf:resource="http://localhost:8000/0cd2452d-daca-4cb1-bb15-d6aba7ca0b26"/> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/074dca4c-a3d3-4521-835d-f1fa1a9c775b"> + <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c13e1882-c0c8-4044-8fff-1268ea9c721f"/> + <skos:Concept rdf:about="http://localhost:8000/a5538b87-8a0b-43a2-b4cf-e3fda813d888"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> <skos:member> <skos:Concept rdf:about="http://localhost:8000/d835a4c9-22a2-4200-aa9e-50a7f09ce915"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0fff64d5-7aa5-4986-ae75-a684adec2dc6"/> + <skos:Concept rdf:about="http://localhost:8000/fb0a9c3f-02e5-44ac-8e39-266ac9460dcb"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8907399d-9e31-4026-8ce9-7be964908a91"/> + <skos:Concept rdf:about="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> + <skos:prefLabel xml:lang="en">{"id": "609bdb91-e960-44e1-ad37-09ee4c59fac6", "value": "Statement Types - Instrument"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/9f1cf9a8-ce65-455f-ab1e-a9b36e9e23ce"> + <skos:prefLabel xml:lang="en-us">{"id": "bed53e6e-ae3f-4407-9101-b7c59475d33c", "value": "Name Types - Physical Thing "}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5bd94b1d-b8b0-44fb-8e1a-fab715b2e8d0"/> + <skos:Concept rdf:about="http://localhost:8000/48b2dd36-2148-4ce6-a00a-40be229da73d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7be0d823-b871-4006-9eed-e0351c604f05"/> + <skos:Concept rdf:about="http://localhost:8000/e1888665-101f-4307-9906-6d9df78bd88c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f147d843-7622-4109-bd73-c7fb05f1adea"/> + <skos:Concept rdf:about="http://localhost:8000/41d71deb-c14b-46b2-b174-074c9abd5e3f"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "adf1063b-697d-4595-b9d4-f1eb2ff36d92", "value": "Statement Types - Physical Thing"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a842d507-d64c-482d-95d7-18d6e02d0ca6"/> + <skos:Concept rdf:about="http://localhost:8000/15599306-151c-4508-8e9c-ba0f10a709b0"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/8dc4c1ac-aae5-41f6-817b-9ee5fef855fe"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/662b53c0-2e26-4b87-a6d0-109b7f611e05"/> + <skos:Concept rdf:about="http://localhost:8000/f4643b7d-2710-4aca-8892-c0eeed02dfe9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b49383a7-a83e-4c1b-a705-e4c21d49ba17"/> + <skos:Concept rdf:about="http://localhost:8000/5f400d39-3b6b-4b8a-939b-4e49787c7444"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3c86859c-7cb7-4595-9c88-1c4780c19ee0"/> + <skos:Concept rdf:about="http://localhost:8000/09c5997e-86f4-4689-bc6e-169e299acb9b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/477438d2-c018-456e-8513-ae7f563a66c5"/> + <skos:Concept rdf:about="http://localhost:8000/c000d8be-cc35-430b-b250-5105395204d0"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "4a2acacf-7b12-4db4-a1e5-cde49a45f14e", "value": "Digital Resource Types"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/9a2ee63b-d696-4686-979b-994597790289"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/219c15b1-a525-4833-aeeb-ec3c3bffc665"/> + <skos:Concept rdf:about="http://localhost:8000/0f0f9727-0dee-4ff5-bc8d-201aaf6ab338"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/24110bd5-0f65-4754-bd7e-b19ccd35b973"/> + <skos:Concept rdf:about="http://localhost:8000/fde9f103-4536-4d8d-8882-9efb5084362c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/120c64e0-3f4a-4f2a-accb-8b9e1a6d6f37"/> + <skos:Concept rdf:about="http://localhost:8000/6dd419c8-178e-4144-b107-da5aaf329529"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/df4f12d3-48ca-49af-8e96-edc6d52af481"/> + <skos:Concept rdf:about="http://localhost:8000/480abea1-f508-4129-af86-52a4358b0e8a"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/ac85c692-0d2b-4132-8e5f-2ec3138294d5"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/24b976c1-14c5-4606-a686-08f7d5fb8e7c"/> + <skos:Concept rdf:about="http://localhost:8000/71c34097-58ba-444d-8c8b-ba3d108454f5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1914c881-21d4-4de3-8637-301b2178ebec"/> + <skos:Concept rdf:about="http://localhost:8000/c53742f1-4a2d-4b63-be4f-4cacc9bc9319"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> + <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> + <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1f2a382b-d892-4a20-a128-5604e972079e"/> + <skos:Concept rdf:about="http://localhost:8000/3077e707-7e96-4370-9e88-08d38a4e6fad"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6b389a46-6dcf-4ea0-af15-f11bae6fa6e2"/> + <skos:Concept rdf:about="http://localhost:8000/ca1546cf-6ee5-428d-9728-b90fc8820baa"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/58a9665f-e444-445a-8736-b76641edccbe"/> + <skos:Concept rdf:about="http://localhost:8000/1b8ef6a7-c0ed-4437-b836-16c3dec42ce9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/74ecdce5-765d-4de1-9a62-a24bd47f5b79"/> + <skos:Concept rdf:about="http://localhost:8000/54e55a90-d134-40a5-a4f0-4b2dfdb86448"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/80da44f6-5e55-4763-95d0-8e7cb2bf402c"/> + <skos:Concept rdf:about="http://localhost:8000/814cfe88-8330-43b7-a600-26096b7764c1"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2023db9b-d735-4ecf-91be-ef1fcf7110bc"/> + <skos:Concept rdf:about="http://localhost:8000/70847092-39b5-4620-97ed-2ec6e1a14c21"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/07dbe013-7dcf-4dd7-9df1-e72a9a855da5"/> + <skos:Concept rdf:about="http://localhost:8000/f62ccd87-14d8-48b9-9114-b8f752b6d999"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> + <skos:member rdf:resource="http://localhost:8000/2e0fefb8-7556-4ffb-b946-e3546bac2e72"/> + <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d4ed934d-ed5f-491f-bb64-2061e7251e21"/> + <skos:Concept rdf:about="http://localhost:8000/3161211b-d4f3-4ce7-9e5d-ace00c3ad361"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b5366c4d-3d1f-4643-982f-9aadf4ff17a7"/> + <skos:Concept rdf:about="http://localhost:8000/96caef6b-c991-445b-a9fc-edacf6772ca4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/27a55f27-4725-4440-bfd3-725cdebbf2ed"/> + <skos:Concept rdf:about="http://localhost:8000/855d9e88-1368-489a-893c-47f2a31db561"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d4e4db86-a948-4d6a-b89f-d1682d038afe"/> + <skos:Concept rdf:about="http://localhost:8000/b5767b7c-6c4e-48bd-abfa-caf3ff139cc8"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6ad4a9e8-b48e-4338-9fc4-fa7509dec88e"/> + <skos:Concept rdf:about="http://localhost:8000/4a3a2e3f-35ac-4ed4-994d-12e4c12b9bdc"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/26a58b62-1396-48f0-838f-9773a9a2c5e0"/> + <skos:Concept rdf:about="http://localhost:8000/e4362f02-74d1-4229-a33c-06aac1540e65"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "67c4cf4a-5262-4c22-91b4-1235749d8b3a", "value": "Relationship Labels - Project"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/fd0222dd-bd50-4597-b092-d124833176b3"> + <skos:prefLabel xml:lang="en-us">{"id": "235101ee-7b29-4e28-aa8c-662cef79702e", "value": "Document Part Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b544f43a-f685-4091-bf79-f50191c0c32a"/> + <skos:Concept rdf:about="http://localhost:8000/2ebb9a11-2d7d-47de-90da-e728635cb76b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1a3258bc-2083-41b0-aff6-705ba1b2fe03"/> + <skos:Concept rdf:about="http://localhost:8000/dd91e772-2e37-4e47-8306-a678ce7fd10c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/36c303a8-d7fb-4030-93a4-3a874cf70034"/> + <skos:Concept rdf:about="http://localhost:8000/102d6dc8-5a56-418e-afbf-799398a37ba8"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/dca6a321-3ab9-42bc-ac80-2171789ae205"> + <skos:prefLabel xml:lang="en">{"id": "41003e0a-d5d6-4521-aba6-7581c98a30e2", "value": "Identifier Types - Observation Event"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/49b09fc6-d1e1-46a7-a500-9089a68027eb"/> + <skos:Concept rdf:about="http://localhost:8000/4b220b03-17eb-44b8-b3db-3fa46f23697d"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/4a4050e9-00a8-42f5-9c7e-cf754060cd95"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/34b081cd-6fcc-4e00-9a43-0a8a73745b45"/> + <skos:Concept rdf:about="http://localhost:8000/32c7ac9c-9ab0-445b-b0c7-e08f65850356"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "34dbd6f0-7ecf-4264-96e8-e0cc28901a6e", "value": "Event Types - Move "}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ec551d7f-31d6-49ad-b812-38e5fc2a6436"/> + <skos:Concept rdf:about="http://localhost:8000/4b2ed1f9-3b31-47c1-975e-1e114f0fe099"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/5f3c2407-2e22-4022-9795-2f3ef963d5aa"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f8ba2d38-fd38-4130-91cd-543686b61003"/> + <skos:Concept rdf:about="http://localhost:8000/038d2bdf-081d-4f53-8ace-305e68c10591"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/54a65679-78fc-483a-81ef-0f760ab2c467"/> + <skos:Concept rdf:about="http://localhost:8000/1001587a-3524-455f-92ea-34deafc7bf68"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "1a92d2c8-c050-4737-a9f3-6993c84c961d", "value": "Materials"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "a7f73312-93c0-4065-b98f-736b5600d56f", "value": "TimeSpan Types - Duration"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e3c92bee-8df1-444f-899c-96d4fca1264d"/> + <skos:Concept rdf:about="http://localhost:8000/340a38a7-8ed9-4a07-a4a4-a28c8fe77b28"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/56991802-f539-4b22-b5a9-b1945fceb52b"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e7301d1f-8acf-4e16-b0e3-654655e23d7e"/> + <skos:Concept rdf:about="http://localhost:8000/ad788cc5-c54a-4a46-9fa2-817ffd97be3c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4013bc24-e4cf-479d-9ed9-775843ff259b"/> + <skos:Concept rdf:about="http://localhost:8000/7ea073d1-9998-4fb3-9bb7-d674417a42c1"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5f4346f1-126a-47fe-bd67-57a30353ef8b"/> + <skos:Concept rdf:about="http://localhost:8000/6a7d74ed-b78a-4e98-abe6-d0a967b42702"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7efca7ef-8ab1-4bb6-8b72-d93f4b9f46be"/> + <skos:Concept rdf:about="http://localhost:8000/88e06b9f-1690-45cd-a8b7-99c2ebf011b8"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/970f32df-c784-49e7-a83c-93174fd63cb3"/> + <skos:Concept rdf:about="http://localhost:8000/24f2475d-0bcf-4f7c-a8c2-de2e60e7b333"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3737266f-33a8-454e-98cb-34734756ec9c"/> + <skos:Concept rdf:about="http://localhost:8000/c6df2fb1-861f-4a72-b6d3-baffae85c4e6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4bb2e7b9-54aa-481e-abbe-a25381edef0e"/> + <skos:Concept rdf:about="http://localhost:8000/3946b808-80f1-42a1-9521-ce27043569b8"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/63c1e2a4-da7f-41a1-b6d1-57b92a7ced66"/> + <skos:Concept rdf:about="http://localhost:8000/2703e524-b5ea-4548-bea7-7ce354e4e05a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/479bf620-ff68-405f-9a85-975439fad879"/> + <skos:Concept rdf:about="http://localhost:8000/f29c3f29-101a-4e82-95bb-cdd7008e27af"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e04f3be0-f4e4-49c6-9330-00e4401d7c0e"/> + <skos:Concept rdf:about="http://localhost:8000/b69d9192-59a6-42df-9bef-234842ee4bab"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e59715c4-875b-4b50-8bb9-9f0597a6d6fe"/> + <skos:Concept rdf:about="http://localhost:8000/3949f930-cb20-4cc0-b914-77e399bbb3a2"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/af055b31-a7a9-493d-9497-c25c17203383"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/80cf80fe-9e17-48da-abc4-c7bef6a26cf5"/> + <skos:Concept rdf:about="http://localhost:8000/a2588fa8-5ae6-4770-a473-dec0c05fb175"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/feabbbcb-92a4-4c1f-b4cd-d4ad84802a88"/> + <skos:Concept rdf:about="http://localhost:8000/9db724b9-b3c7-4761-9a50-673d64a15bd8"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fd194f67-9432-451b-98dc-be6b76742965"/> + <skos:Concept rdf:about="http://localhost:8000/0d734a1c-eaea-4a42-a7a5-8a60ebdb9247"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/de8785a1-26e0-47f6-8612-a1909d88f55e"/> + <skos:Concept rdf:about="http://localhost:8000/907d7730-1c16-4c56-b3f0-a95894aa39f7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/147bb168-4bd4-4c99-a3dd-5e799e6cab0c"/> + <skos:Concept rdf:about="http://localhost:8000/907c2848-98fb-43e8-aa6a-64274ef9abf2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8be4ac1b-581b-4967-b7d6-5e2fe36fadb6"/> + <skos:Concept rdf:about="http://localhost:8000/bbb94e5c-2e82-46d1-bc97-a0423d3fb2d7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/61a740d5-03dd-460a-8b45-6ae438b4c352"/> + <skos:Concept rdf:about="http://localhost:8000/a8c19e2d-944b-409a-abfa-5a7c45806416"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6398dee0-6c11-40aa-97ef-496009784adb"/> + <skos:Concept rdf:about="http://localhost:8000/9961937d-eaeb-431b-9190-9e17eaebb688"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "5cd3f7f2-d818-4759-b706-088a4c4cd5c0", "value": "Object Types - Physical Thing"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/4d7dd282-959e-4bef-9b14-dc37a6470f7e"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4942787a-6681-4d14-be93-dc7edb58d5bf"/> + <skos:Concept rdf:about="http://localhost:8000/b16acdf3-a9c0-4c99-9ea1-dd17972cf288"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b55dcf94-3e0d-4d33-af82-9262dc4e2e0f"/> + <skos:Concept rdf:about="http://localhost:8000/68c7d1a5-862a-4c08-bd7e-9047c49b102d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/61dfad8f-cd46-47fd-820f-3e69ac423cc6"/> + <skos:Concept rdf:about="http://localhost:8000/8c59ec9a-c7df-4c52-9104-6b7de8ee8151"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4455ae0b-c49e-4940-b43a-4b818848fdd4"/> + <skos:Concept rdf:about="http://localhost:8000/5d9da344-2f3a-4f35-a5cd-3cb3f4a3535c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3c44d93c-01e5-4768-9b00-61db7f350d6a"/> + <skos:Concept rdf:about="http://localhost:8000/46a2da83-1594-4823-8480-1407d3f1d671"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/af047bfd-5454-41ef-812a-9fbf6ad9a0ac"/> + <skos:Concept rdf:about="http://localhost:8000/e8300d8d-587a-46c1-8e79-44ee57b2c043"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/14e00b4d-126d-4b88-a9fa-76a6ae5dd089"/> + <skos:Concept rdf:about="http://localhost:8000/9517a001-391c-4b5b-9939-b62e832721c1"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b7b40309-f000-41cb-bc1b-630487e657ee"/> + <skos:Concept rdf:about="http://localhost:8000/95950aa4-9344-4258-be98-829c70c69c8e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/cead6e47-d4b2-42fe-84b6-42bca2857d11"/> + <skos:Concept rdf:about="http://localhost:8000/41bc72c3-eb83-42b6-96c3-639bc9888ed6"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/87bfe412-f950-46f1-b27f-0f9a1a56f4cf"/> + <skos:Concept rdf:about="http://localhost:8000/f727ef24-5040-430b-975b-741eb542cd2d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e5657d2a-4609-4c99-9131-12f91089b5b8"/> + <skos:Concept rdf:about="http://localhost:8000/a5ed5507-0574-4726-ae98-fa0cd971c349"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5283f14c-71c8-4a02-803d-b98ddc78fe17"/> + <skos:Concept rdf:about="http://localhost:8000/8855248f-53da-4a46-8f05-41b95b1ebc8c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3b515129-0c9e-4471-b2e0-2d64231a8e43"/> + <skos:Concept rdf:about="http://localhost:8000/b53e679f-73d0-4933-a39c-facf23ce0c49"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d1b6852a-95cf-4ceb-a4de-78096e48b457"/> + <skos:Concept rdf:about="http://localhost:8000/84554ae9-0437-4ef3-94a3-6718fef184fe"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a4ed26e7-7da4-4f68-84aa-e4136f599263"/> + <skos:Concept rdf:about="http://localhost:8000/a210183c-c615-46f6-ac2c-e3c378817e34"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "afcdfa9e-bed2-490b-8796-e3f4e4dad38a", "value": "Person Types - Ethnicities"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/dd621f69-7e2a-492c-9921-30d42bbac20d"/> + <skos:Concept rdf:about="http://localhost:8000/73014870-366d-4c86-ac23-d01d40801d75"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> - <skos:member rdf:resource="http://localhost:8000/9d84c6cb-70b1-4607-a035-2175a18f1991"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f913b688-45d3-4d9f-818b-081b9232ca4b"/> + <skos:Concept rdf:about="http://localhost:8000/ab4e604c-8af4-4b55-8d62-a9875c260552"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/cb4cc06d-3d14-480f-aab1-b02c28042946"/> + <skos:Concept rdf:about="http://localhost:8000/fbd4a835-713e-421a-9f0e-466b2b3845bf"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/a373aabe-bba3-4c41-a363-d8f879c2f7ff"> + <skos:prefLabel xml:lang="en">{"id": "267fe10a-ea7c-45b1-a885-34c9837ad11c", "value": "Means Types"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/44295221-1215-4359-a079-234b317f65b7"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/63e4f894-576a-4035-aa8b-f4b392efd20f"/> + <skos:Concept rdf:about="http://localhost:8000/1c55bd47-1895-4c3e-ba40-3dc0084cad2d"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "b061aa20-23b2-4050-8a68-177893f786f2", "value": "Relationship Labels - Textual Work"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6ea01af9-52df-4ddf-bd9e-2efda73f574f"/> + <skos:Concept rdf:about="http://localhost:8000/48e06dbc-c0ea-4cc7-9588-f1ac2b53b46e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9d733804-5991-4980-a476-5d714f08d5d9"/> + <skos:Concept rdf:about="http://localhost:8000/56c052f1-df82-432b-a915-99a6a42e5c94"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> + <skos:prefLabel xml:lang="en-us">{"id": "88d3ca3b-e5b3-4db3-a401-f040822039e5", "value": "Dimension Types - Physical Units"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/75221889-4ace-4cb4-ae7e-6044a938a2ff"/> + <skos:Concept rdf:about="http://localhost:8000/e49f5b60-0a84-4004-980d-a6635b2f7b0b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b65471e5-4a52-4fd5-8bd2-73eb0e98f029"/> + <skos:Concept rdf:about="http://localhost:8000/076513dd-d250-40dd-8d5c-e79b55a282d0"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/d86b855e-6af4-402d-a94a-d13e36bddf8e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/66a5028b-f43d-4637-b824-bb2d1952a8b8"/> + <skos:Concept rdf:about="http://localhost:8000/ca88ef39-c76c-412a-bf9b-e9c8e3e89e08"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2ab5c7a0-d903-4d2d-bf47-1d866d78f170"/> + <skos:Concept rdf:about="http://localhost:8000/4583a363-ad2d-4dd9-8c7c-b1a433f53079"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/507664bb-567a-4833-a142-52358ec05b7d"/> + <skos:Concept rdf:about="http://localhost:8000/96151ca8-8e58-4e07-a490-c6152e2c5048"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/795ed653-676b-4057-b468-fcbe1a4ec8c5"/> + <skos:Concept rdf:about="http://localhost:8000/2c276821-6d7b-421d-bea4-814669f7aa7f"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/00a828d4-74d8-45ed-b4ec-cf6f709bb693"/> + <skos:Concept rdf:about="http://localhost:8000/71f2308c-6d7e-423d-8d23-17a0df059a75"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/16b0e5b5-1870-439c-8f70-a65b47d71024"> - <skos:member rdf:resource="http://localhost:8000/f62ccd87-14d8-48b9-9114-b8f752b6d999"/> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> - <skos:member rdf:resource="http://localhost:8000/2e0fefb8-7556-4ffb-b946-e3546bac2e72"/> - <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> + <skos:Collection rdf:about="http://localhost:8000/5da484cb-7537-43be-91cb-dc28c4369efb"> + <skos:prefLabel xml:lang="en-us">{"id": "586f0415-e842-4ef2-9a82-85de6c166572", "value": "Digital File Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/907fce8b-2b57-44ee-bd98-d40aa28abd77"/> + <skos:Concept rdf:about="http://localhost:8000/21121df1-9699-469d-924c-50f575c1ba83"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/cb051e82-7c14-4630-a08d-5892be6070cf"/> + <skos:Concept rdf:about="http://localhost:8000/662b53c0-2e26-4b87-a6d0-109b7f611e05"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c19fd08b-6aed-4535-83a0-b80ff2655475"/> + <skos:Concept rdf:about="http://localhost:8000/f7dda933-9221-4555-a828-493962ab9411"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> - <skos:member rdf:resource="http://localhost:8000/70847092-39b5-4620-97ed-2ec6e1a14c21"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f252adb6-3b7a-44ae-815d-10a72ff83666"/> + <skos:Concept rdf:about="http://localhost:8000/3c86859c-7cb7-4595-9c88-1c4780c19ee0"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/af055b31-a7a9-493d-9497-c25c17203383"> + <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> + <skos:member rdf:resource="http://localhost:8000/3c44d93c-01e5-4768-9b00-61db7f350d6a"/> + <skos:member rdf:resource="http://localhost:8000/6398dee0-6c11-40aa-97ef-496009784adb"/> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> + <skos:member rdf:resource="http://localhost:8000/4455ae0b-c49e-4940-b43a-4b818848fdd4"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9e9677da-5452-46cc-9bd2-682f001c60fc"/> + <skos:Concept rdf:about="http://localhost:8000/80cf80fe-9e17-48da-abc4-c7bef6a26cf5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4ddf7134-357f-4a39-8804-36b791b9c61f"/> + <skos:Concept rdf:about="http://localhost:8000/66a5028b-f43d-4637-b824-bb2d1952a8b8"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> - <skos:member rdf:resource="http://localhost:8000/3077e707-7e96-4370-9e88-08d38a4e6fad"/> - <skos:prefLabel xml:lang="en">{"id": "37a0eb9a-e23c-42d0-a22a-649c6ac9260f", "value": "Relationship Labels - Modification"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d2345f0c-b4e8-4190-b199-cbf283f405f5"/> + <skos:Concept rdf:about="http://localhost:8000/feabbbcb-92a4-4c1f-b4cd-d4ad84802a88"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/1b8ef6a7-c0ed-4437-b836-16c3dec42ce9"/> - <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> - <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fc49c02e-42cf-4ebb-8952-ddd323c4dd7f"/> + <skos:Concept rdf:about="http://localhost:8000/9d733804-5991-4980-a476-5d714f08d5d9"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4e7a7cdf-2e4b-4ac7-995a-22d44d075115"/> + <skos:Concept rdf:about="http://localhost:8000/87bfe412-f950-46f1-b27f-0f9a1a56f4cf"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/5f6772d0-149d-42b1-9e76-56fe018d7380"> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:prefLabel xml:lang="en-us">{"id": "90d58766-da83-4e7a-ba0f-7f79e7a30e8a", "value": "Activity Identifier Types"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/35ed167d-ab89-4f38-b046-3349256be725"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/478c39e7-9d07-4f5d-847d-ac887c2c4469"/> + <skos:Concept rdf:about="http://localhost:8000/14e00b4d-126d-4b88-a9fa-76a6ae5dd089"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/97c77b61-26be-4e34-8b03-0938feb915a3"/> + <skos:Concept rdf:about="http://localhost:8000/147bb168-4bd4-4c99-a3dd-5e799e6cab0c"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/17324c42-eb04-4527-8ea4-fe6b37ba03d2"/> + <skos:Concept rdf:about="http://localhost:8000/3b515129-0c9e-4471-b2e0-2d64231a8e43"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fdb282ff-4e71-4334-9993-46956fc2b64d"/> + <skos:Concept rdf:about="http://localhost:8000/e5657d2a-4609-4c99-9131-12f91089b5b8"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "4ab667b5-d1a7-4cbd-9647-205853a4c098", "value": "Techniques"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fa5108b1-0643-4605-ad0d-e7a3c22e7fd6"/> + <skos:Concept rdf:about="http://localhost:8000/a4ed26e7-7da4-4f68-84aa-e4136f599263"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> + <skos:member rdf:resource="http://localhost:8000/61dfad8f-cd46-47fd-820f-3e69ac423cc6"/> + <skos:prefLabel xml:lang="en">{"id": "b061aa20-23b2-4050-8a68-177893f786f2", "value": "Relationship Labels - Textual Work"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> + <skos:member rdf:resource="http://localhost:8000/cead6e47-d4b2-42fe-84b6-42bca2857d11"/> + <skos:member rdf:resource="http://localhost:8000/fd194f67-9432-451b-98dc-be6b76742965"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ce042b1c-f512-4933-9aeb-0552974d51ca"/> + <skos:Concept rdf:about="http://localhost:8000/d1b6852a-95cf-4ceb-a4de-78096e48b457"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/2ab5c7a0-d903-4d2d-bf47-1d866d78f170"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6444d3a3-f9bd-42e4-9c62-ea3fb2cd4f90"/> + <skos:Concept rdf:about="http://localhost:8000/b65471e5-4a52-4fd5-8bd2-73eb0e98f029"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/cb4cc06d-3d14-480f-aab1-b02c28042946"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/77e3d54b-b98d-43da-9049-1725645308d6"/> + <skos:Concept rdf:about="http://localhost:8000/5283f14c-71c8-4a02-803d-b98ddc78fe17"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/d86b855e-6af4-402d-a94a-d13e36bddf8e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1bef9076-8fcc-421f-9ac9-7efd152570ef"/> + <skos:Concept rdf:about="http://localhost:8000/507664bb-567a-4833-a142-52358ec05b7d"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/9d84c6cb-70b1-4607-a035-2175a18f1991"/> + <skos:member rdf:resource="http://localhost:8000/6ea01af9-52df-4ddf-bd9e-2efda73f574f"/> + <skos:member rdf:resource="http://localhost:8000/af047bfd-5454-41ef-812a-9fbf6ad9a0ac"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c6d0fd93-ac62-4927-b15b-5388af12d956"/> + <skos:Concept rdf:about="http://localhost:8000/795ed653-676b-4057-b468-fcbe1a4ec8c5"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/de8785a1-26e0-47f6-8612-a1909d88f55e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/60a64ca0-b6db-40da-b18c-6310515d22da"/> + <skos:Concept rdf:about="http://localhost:8000/f913b688-45d3-4d9f-818b-081b9232ca4b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d6a36ca5-c661-4dfd-9903-6a502eb52bbb"/> + <skos:Concept rdf:about="http://localhost:8000/61a740d5-03dd-460a-8b45-6ae438b4c352"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/dd2c84db-3b06-4443-8e55-514d7a412cb7"> - <skos:member rdf:resource="http://localhost:8000/00a828d4-74d8-45ed-b4ec-cf6f709bb693"/> - <skos:member rdf:resource="http://localhost:8000/6398dee0-6c11-40aa-97ef-496009784adb"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/dfa3a38f-4f2b-4f85-a454-7ad200d0fcd0"/> + <skos:Concept rdf:about="http://localhost:8000/4942787a-6681-4d14-be93-dc7edb58d5bf"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/8be4ac1b-581b-4967-b7d6-5e2fe36fadb6"/> + <skos:member rdf:resource="http://localhost:8000/00a828d4-74d8-45ed-b4ec-cf6f709bb693"/> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6748d659-f49e-4abb-b383-d97dfe6cc368"/> + <skos:Concept rdf:about="http://localhost:8000/b55dcf94-3e0d-4d33-af82-9262dc4e2e0f"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/fd194f67-9432-451b-98dc-be6b76742965"/> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fb173f25-ffe6-46a2-9bc9-daa4a6a21fb1"/> + <skos:Concept rdf:about="http://localhost:8000/63e4f894-576a-4035-aa8b-f4b392efd20f"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/de8785a1-26e0-47f6-8612-a1909d88f55e"/> - <skos:member rdf:resource="http://localhost:8000/8be4ac1b-581b-4967-b7d6-5e2fe36fadb6"/> + <skos:member rdf:resource="http://localhost:8000/b7b40309-f000-41cb-bc1b-630487e657ee"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f3f82fdc-b944-44d3-ad88-bdae0bf97b74"/> + <skos:Concept rdf:about="http://localhost:8000/dd621f69-7e2a-492c-9921-30d42bbac20d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/19b929c2-91ac-4d15-81c3-60b7f77322d9"/> + <skos:Concept rdf:about="http://localhost:8000/75221889-4ace-4cb4-ae7e-6044a938a2ff"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/61dfad8f-cd46-47fd-820f-3e69ac423cc6"/> - <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> - <skos:member rdf:resource="http://localhost:8000/4455ae0b-c49e-4940-b43a-4b818848fdd4"/> - <skos:member rdf:resource="http://localhost:8000/3c44d93c-01e5-4768-9b00-61db7f350d6a"/> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/5a9349ec-e6fa-4e19-9343-058749886697"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/904f4d83-449f-4848-8444-d19c598a70e5"/> + <skos:Concept rdf:about="http://localhost:8000/e8a9a948-1cc2-452f-bd4b-33b1d84e899d"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/b7b40309-f000-41cb-bc1b-630487e657ee"/> - <skos:prefLabel xml:lang="en">{"id": "6b5c8958-2617-48cc-91eb-344ab614451d", "value": "Relationship Labels - Collection or Set"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2224c58e-75aa-4da7-be59-05c984002196"/> + <skos:Concept rdf:about="http://localhost:8000/3b46f7de-75f7-4999-a0ab-3a8b6ca5b01a"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/35cd4540-54b2-4bd0-a7d8-8d7801c177ef"/> + <skos:Concept rdf:about="http://localhost:8000/6696a427-b2ff-4fce-9f78-61861c063c37"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ed080f48-eafc-4b7f-b7f4-8ef01ddb7eba"/> + <skos:Concept rdf:about="http://localhost:8000/f72e688f-855b-43d1-92aa-11aa679b01e6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2e20c0c0-154a-484f-9f2c-81e6dc680586"/> + <skos:Concept rdf:about="http://localhost:8000/e0cb0905-bf56-488f-b682-4a14cc0afa49"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/63af640c-f979-47ad-9cb1-edb5e685d756"/> + <skos:Concept rdf:about="http://localhost:8000/c84d1624-d004-4640-9653-6a6cd99c32e2"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5a7c3476-2197-4277-b459-d4d8b95e730d"/> + <skos:Concept rdf:about="http://localhost:8000/23da916d-1424-44f5-a85e-e5dacbcce27a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3e29bed6-4503-41ca-b5fe-ba92f158a5d9"/> + <skos:Concept rdf:about="http://localhost:8000/0bc8a3a2-baa2-4a32-9839-89b5bf917f3a"/> + </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "8492478c-e68e-48de-8797-7041c3b3b3d6", "value": "Person Types - Genders"}</skos:prefLabel> + <skos:member> + <skos:Concept rdf:about="http://localhost:8000/19b0fa01-3d14-43c5-afde-0662376fb3f2"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/67f13f49-946d-4eb7-acf9-1bea91c30874"> + <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> + <skos:member rdf:resource="http://localhost:8000/c64fe7b5-1fca-4de8-8562-cdc32fc26c98"/> + <skos:member rdf:resource="http://localhost:8000/291354a2-c0b8-4143-baaf-534a9fae15a9"/> <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> + <skos:member rdf:resource="http://localhost:8000/46123a1f-6786-4cef-8193-c1f72e67cc5c"/> + <skos:member rdf:resource="http://localhost:8000/d86b855e-6af4-402d-a94a-d13e36bddf8e"/> + <skos:member rdf:resource="http://localhost:8000/9d84c6cb-70b1-4607-a035-2175a18f1991"/> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> + <skos:member rdf:resource="http://localhost:8000/93dc6410-1d4f-4c8e-8652-497a4f9cec9f"/> + <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> + <skos:prefLabel xml:lang="en">{"id": "626e23fd-9b51-4175-90a7-c7a1e1eaeb92", "value": "Relationship Labels - Instrument"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/5bd80233-7f66-41a1-bc32-2e9b49126bef"/> + <skos:member rdf:resource="http://localhost:8000/b5c6f06d-d6a6-482a-bebf-83c6da262e10"/> + <skos:member rdf:resource="http://localhost:8000/aaf58bb4-82c4-4aa6-b8c0-7755018217eb"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5f20f94f-880a-4891-905a-48a2c4be1c73"/> + <skos:Concept rdf:about="http://localhost:8000/88acc148-088a-4161-8715-7fccf7d6fd5d"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/cb4cc06d-3d14-480f-aab1-b02c28042946"/> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> - <skos:member rdf:resource="http://localhost:8000/6ea01af9-52df-4ddf-bd9e-2efda73f574f"/> + <skos:member rdf:resource="http://localhost:8000/bcea7794-7ce8-4f82-882a-3aa6b083a275"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/688998b4-4abf-4b21-aa02-6a3a2ebd28e2"/> + <skos:Concept rdf:about="http://localhost:8000/963f3f6a-c52e-4119-92fd-76d6fec9d31e"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/2ab5c7a0-d903-4d2d-bf47-1d866d78f170"/> + <skos:member rdf:resource="http://localhost:8000/24f4f6ae-ca63-4559-bfec-f50ab6c8346b"/> + <skos:member rdf:resource="http://localhost:8000/3e308dfd-eb14-4ecf-842f-7a37c1baf89c"/> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> + <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> + <skos:member rdf:resource="http://localhost:8000/7e932636-476c-41f5-99d3-2e13615d024f"/> + <skos:member rdf:resource="http://localhost:8000/c897e183-1f0d-4b47-83d4-5c7a49bb6b5b"/> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/de10c1c8-a3a4-43e0-8afc-43720a9ad3a9"> + <skos:prefLabel xml:lang="en">{"id": "d829ab5a-4c55-49a8-8d12-ce02ab5113ce", "value": "Event Types - Textual Work Creation"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/25fcee5d-e563-470f-beb3-c85fc33f56ff"/> - </skos:member> - <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5d228ed2-d659-40ef-9f43-ca3209ea0896"/> + <skos:Concept rdf:about="http://localhost:8000/d1a8cc2c-a671-4ecf-8034-9348e2f0a8c7"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/b5dfd5e3-779d-4b94-8552-c539e352fd68"> - <skos:prefLabel xml:lang="en-us">{"id": "41452235-d273-4feb-b630-df2458124a2a", "value": "Personal Name Part Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/48ded04e-6487-4640-b5e1-37818ce87ade"/> + <skos:Concept rdf:about="http://localhost:8000/7db37c5b-95a0-411c-a088-3ba245c2de27"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c5f909c8-d870-4752-b62d-d18f945f1ddf"/> + <skos:Concept rdf:about="http://localhost:8000/a9590301-77dc-4b3d-aa36-d669d1e338e3"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1421293e-ad4d-4166-a199-d076622b2596"/> + <skos:Concept rdf:about="http://localhost:8000/714dc5b5-f2f3-4daa-9a6c-ed07c385aeec"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1ffe97e4-1822-4a6e-b170-861330764bbd"/> + <skos:Concept rdf:about="http://localhost:8000/dfd2f1ed-4af4-4fcc-8dac-a001a0ddc523"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9dd99086-3a90-4102-8335-33986fe797e3"/> + <skos:Concept rdf:about="http://localhost:8000/5f0e4350-cacd-41d8-a2bb-5efbfa5915b5"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/1adae7ea-4884-432f-af44-c9aea3a48a3d"> - <skos:member rdf:resource="http://localhost:8000/1b162cc8-1f31-4fb3-81f9-2479b21d01aa"/> - <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> - <skos:member rdf:resource="http://localhost:8000/5b1a15d7-f4ce-48ec-871f-d09b330feeb1"/> - <skos:member rdf:resource="http://localhost:8000/7d9253fe-5b76-444d-84aa-34f35f0be80e"/> - <skos:member rdf:resource="http://localhost:8000/02899026-debc-4b08-8f8a-5750362ff27e"/> + <skos:Collection rdf:about="http://localhost:8000/c8261144-c750-4f64-8980-e50f762b21a5"> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + <skos:prefLabel xml:lang="en">{"id": "33c164fa-c536-44cd-afa4-179a75835035", "value": "Identifier Types - Place"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/79f44e59-670d-408d-9439-0c6810523d5e"/> + <skos:Concept rdf:about="http://localhost:8000/0d660e45-fde0-47d8-b0c8-949a9ad397ef"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8d1180e7-b308-4402-b2a4-ed5322c2a90c"/> + <skos:Concept rdf:about="http://localhost:8000/043f82e6-540c-4c3c-a37c-365509c12cbe"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/892c52a6-0d81-4c5b-8e9f-dd7860276942"> + <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bb798e77-861d-47d8-a19b-5e9b25b6633d"/> + <skos:Concept rdf:about="http://localhost:8000/bb565261-55b7-4c1a-93aa-90ae78b28cee"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/427a808f-e289-46e0-986c-58eeb697d884"/> + <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> + <skos:prefLabel xml:lang="en">{"id": "a76a1381-4ad1-49b1-a35a-e07af9f5815b", "value": "Relationship Labels - Place"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4359e806-8987-48fc-ae44-5695dac48fcf"/> + <skos:Concept rdf:about="http://localhost:8000/bf289514-b63e-46e6-9575-ac40d643f5e7"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/c13e1882-c0c8-4044-8fff-1268ea9c721f"/> - <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> - <skos:member rdf:resource="http://localhost:8000/5bd94b1d-b8b0-44fb-8e1a-fab715b2e8d0"/> - <skos:member rdf:resource="http://localhost:8000/0fff64d5-7aa5-4986-ae75-a684adec2dc6"/> - <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> - <skos:member rdf:resource="http://localhost:8000/7be0d823-b871-4006-9eed-e0351c604f05"/> - <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> - <skos:member rdf:resource="http://localhost:8000/8907399d-9e31-4026-8ce9-7be964908a91"/> - <skos:member rdf:resource="http://localhost:8000/0cb8fa21-80b6-4afe-aeca-c9863ed725d6"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e49fda8f-fc61-47e3-9d66-127323d9aadb"/> + <skos:Concept rdf:about="http://localhost:8000/3d5fe8da-ee28-44d1-bb12-d736c9ebc8b9"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "cac05ab8-f52e-4117-a06e-964ef3b0e01a", "value": "Statement Types "}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/8a8ee459-ed32-4bd5-9235-518529188060"/> - <skos:member rdf:resource="http://localhost:8000/a842d507-d64c-482d-95d7-18d6e02d0ca6"/> - <skos:member rdf:resource="http://localhost:8000/77617e19-4102-4f2c-9a8c-4bb118d0d61d"/> + <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> + <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2ddfe0e3-e6de-4d0c-a521-389cbeb24955"/> + <skos:Concept rdf:about="http://localhost:8000/03f3f737-5ba8-4a49-94a0-187325d0df24"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/9f1cf9a8-ce65-455f-ab1e-a9b36e9e23ce"> + <skos:Collection rdf:about="http://localhost:8000/1230c0d7-ed5b-4f97-b54d-74bda170c7e3"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5f400d39-3b6b-4b8a-939b-4e49787c7444"/> + <skos:Concept rdf:about="http://localhost:8000/f4ea3658-51df-4475-aaf6-9bbdf384ed0c"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "4d42cce9-8169-4d08-86a1-6ec6eed4571f", "value": "Object Types - Digital Object Service"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/41d71deb-c14b-46b2-b174-074c9abd5e3f"/> + <skos:Concept rdf:about="http://localhost:8000/ce4ffb8a-597e-47c5-8d60-96f17fc92bb3"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/7cc462a5-db43-4b25-a748-99892eba26aa"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/15599306-151c-4508-8e9c-ba0f10a709b0"/> + <skos:Concept rdf:about="http://localhost:8000/c24d6806-75bf-4127-9fd6-c870cc160063"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f4643b7d-2710-4aca-8892-c0eeed02dfe9"/> + <skos:Concept rdf:about="http://localhost:8000/aa1c30cc-f0cb-4f4a-8faa-9ba2d42323f5"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "bed53e6e-ae3f-4407-9101-b7c59475d33c", "value": "Name Types - Physical Thing "}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> + <skos:prefLabel xml:lang="en">{"id": "497da2f6-01cc-4313-ac77-245697c230a9", "value": "Identifier Types - Provenance Activity"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/639b8e22-9565-4fa4-92d8-50c28d1df17d"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/09c5997e-86f4-4689-bc6e-169e299acb9b"/> + <skos:Concept rdf:about="http://localhost:8000/a3ddd46c-0aba-4ba0-a943-c9d793e1a9bc"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "954e30aa-2761-4eaa-8b83-e22d0e9561a7", "value": "Contact Point Part Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e1888665-101f-4307-9906-6d9df78bd88c"/> + <skos:Concept rdf:about="http://localhost:8000/48e08437-a15d-4f0f-adfc-77c1587f17b9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6dd419c8-178e-4144-b107-da5aaf329529"/> + <skos:Concept rdf:about="http://localhost:8000/62f83f13-058e-4c73-a0b0-4f1816780f52"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/f7fc4f6d-fd46-4881-846f-4a08bc1a3fef"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c000d8be-cc35-430b-b250-5105395204d0"/> + <skos:Concept rdf:about="http://localhost:8000/c3c3b964-007c-434d-8df9-ac687a3be542"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/48b2dd36-2148-4ce6-a00a-40be229da73d"/> + <skos:Concept rdf:about="http://localhost:8000/2b43ddad-7ab5-44c8-b943-020f7771de06"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fde9f103-4536-4d8d-8882-9efb5084362c"/> + <skos:Concept rdf:about="http://localhost:8000/7dcd9b95-ab41-4fb0-94ba-f6173d2e6e1a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/480abea1-f508-4129-af86-52a4358b0e8a"/> + <skos:Concept rdf:about="http://localhost:8000/135ccd63-25ca-4e3e-919f-ff09bf062274"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0f0f9727-0dee-4ff5-bc8d-201aaf6ab338"/> + <skos:Concept rdf:about="http://localhost:8000/fea87de8-c1e5-4978-aa18-7df19382d7d6"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/a373aabe-bba3-4c41-a363-d8f879c2f7ff"> - <skos:prefLabel xml:lang="en">{"id": "267fe10a-ea7c-45b1-a885-34c9837ad11c", "value": "Means Types"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/ff5ed7bd-4b75-42a3-8361-ddfc1edc2875"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e8300d8d-587a-46c1-8e79-44ee57b2c043"/> + <skos:Concept rdf:about="http://localhost:8000/a1d82c77-ebd6-4215-ab85-2c0b6a68a0e8"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/77181be9-230a-490e-8b81-2c242efdcfb9"/> + <skos:Concept rdf:about="http://localhost:8000/ec0f84da-5fff-44d0-a539-ed7099fb75ce"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5745583d-2795-4305-995f-a85929f8bd54"/> + <skos:Concept rdf:about="http://localhost:8000/6d302f17-decd-4f33-9606-c1df25e306ee"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/24381687-0e47-4418-934e-c828c7ba16eb"/> + <skos:Concept rdf:about="http://localhost:8000/5ab6901a-1d94-4769-9a8c-3ca83d9aa519"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "34fba778-5417-4179-8f01-d8596235a361", "value": "Person Types - Nationality"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/545dd2fc-0d38-46de-8475-2a77ead4298e"/> + <skos:Concept rdf:about="http://localhost:8000/5bb6ff4f-33c1-4804-9768-e1aa876d5150"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/31dbfe57-3132-4bab-8c7c-eeccf0e7c3f5"/> + <skos:Concept rdf:about="http://localhost:8000/90426117-4930-4fac-9c26-16aa06c451ac"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/465a8351-5ab1-4ffe-a768-57a08f44028e"/> + <skos:Concept rdf:about="http://localhost:8000/86d75104-eaba-4116-9201-0db856830aa4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/70ac381a-6eb8-4e33-9acd-12b8930f66c4"/> + <skos:Concept rdf:about="http://localhost:8000/7e6c493b-6434-4b3a-9513-02df44b78d24"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fdaa29fa-ac94-4c3a-802f-6a6b37f596fa"/> + <skos:Concept rdf:about="http://localhost:8000/6195ff8c-5970-41b6-9480-e92ce21dc0df"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/411df452-e9ba-481a-89dd-3b65fb8f08fd"/> + <skos:Concept rdf:about="http://localhost:8000/8ead46b7-39b3-4f6a-b9d0-08994a595bb7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/73014870-366d-4c86-ac23-d01d40801d75"/> + <skos:Concept rdf:about="http://localhost:8000/b9845f81-8de2-43be-a243-b91cc6924cdf"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5705baac-66ca-4fc3-adce-acc997d16b1d"/> + <skos:Concept rdf:about="http://localhost:8000/ffc79063-a21e-46b3-9441-0c8dac5b6161"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/84554ae9-0437-4ef3-94a3-6718fef184fe"/> + <skos:Concept rdf:about="http://localhost:8000/c7954ef2-0053-400b-997c-d56a9f64940b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/64136ae8-03ed-41fa-afe4-8a3408bd34b9"/> + <skos:Concept rdf:about="http://localhost:8000/38729dbe-6d1c-48ce-bf47-e2a18945600e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c7927e81-cd9f-4600-96ba-335200563fe5"/> + <skos:Concept rdf:about="http://localhost:8000/28e25c2d-2a00-440d-8cac-3f357dd737c9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8b8e6860-60f7-4de8-9368-05e18f72c183"/> + <skos:Concept rdf:about="http://localhost:8000/825d0d98-cdd9-461e-8e96-609159286bd9"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "fcb713b2-d057-4e2a-ac9b-944f2bb2c92a", "value": "Languages"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d7562d63-8f82-4c88-8b43-f5d81044721d"/> + <skos:Concept rdf:about="http://localhost:8000/a5e9ba49-12ce-4440-9db9-484c8519c785"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/93dc2aa7-a6d9-4a93-93dc-0752b890beb7"/> + <skos:Concept rdf:about="http://localhost:8000/0dfb95af-dcd3-4edd-8763-a3939e65f1e7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6c400200-8763-49ad-9928-8135a918b5d5"/> + <skos:Concept rdf:about="http://localhost:8000/0870ac7d-edd3-4214-ba2b-185396528024"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/acfbbb87-8a30-40c8-8399-3b64d0bda2c2"/> + <skos:Concept rdf:about="http://localhost:8000/6d997904-184c-4825-8807-83e2dddb124f"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8ef8ade6-fcdd-4da6-a9f7-1fb9e9df86d0"/> + <skos:Concept rdf:about="http://localhost:8000/bdb42273-5581-4554-956f-c8f41c67798d"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/e17c5d7f-eaf2-4e7d-9490-a3e362f74bdc"> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> + <skos:member rdf:resource="http://localhost:8000/4b220b03-17eb-44b8-b3db-3fa46f23697d"/> + <skos:prefLabel xml:lang="en">{"id": "880d246e-b5d5-427e-bdcb-00366400ca12", "value": "Identifier Types - Sampling Activity"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/adc8937e-1259-45bd-af5e-ffe892eb1a88"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f7422ea0-8a1d-48c9-a3a8-c45904cfc74c"/> + <skos:Concept rdf:about="http://localhost:8000/32337acf-91a0-4f1c-ae5b-c14155d64941"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "9cb08d5d-af7f-4700-8799-6df292aef72b", "value": "Relationship Labels - Sampling Activity"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/b5767b7c-6c4e-48bd-abfa-caf3ff139cc8"/> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> + <skos:member rdf:resource="http://localhost:8000/3077e707-7e96-4370-9e88-08d38a4e6fad"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3db4ef7a-437d-48fb-8f34-422e226d49cd"/> + <skos:Concept rdf:about="http://localhost:8000/5c69a1f4-01ca-4ee1-8000-493bc6b9b28e"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> + <skos:member rdf:resource="http://localhost:8000/1b8ef6a7-c0ed-4437-b836-16c3dec42ce9"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/207a310b-14b6-4518-af42-79cc3900e8e6"/> + <skos:Concept rdf:about="http://localhost:8000/d52bc3d2-4933-48a0-ae88-998b576a8e85"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/f62ccd87-14d8-48b9-9114-b8f752b6d999"/> + <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> + <skos:member rdf:resource="http://localhost:8000/2e0fefb8-7556-4ffb-b946-e3546bac2e72"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2be75a62-6065-45e0-8660-dddeeaa2d685"/> + <skos:Concept rdf:about="http://localhost:8000/83da6018-d9b0-4524-a239-e8e02bdef92a"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/3161211b-d4f3-4ce7-9e5d-ace00c3ad361"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0ad7ee80-84b7-479d-a7f6-4229839643c3"/> + <skos:Concept rdf:about="http://localhost:8000/941d2212-7f9a-46ce-8fc2-14ca6f068511"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/acccfdce-e713-4172-93c5-edc0fabb9e1a"/> + <skos:Concept rdf:about="http://localhost:8000/46ded2f4-2147-4136-92ed-1fa178f79b10"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> + <skos:member rdf:resource="http://localhost:8000/855d9e88-1368-489a-893c-47f2a31db561"/> + <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> + <skos:member rdf:resource="http://localhost:8000/e4362f02-74d1-4229-a33c-06aac1540e65"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f3100a7d-393e-43f8-bc20-80e1c09a078b"/> + <skos:Concept rdf:about="http://localhost:8000/dd1ea5a4-1740-4577-9983-f54ea56e8f95"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/c53742f1-4a2d-4b63-be4f-4cacc9bc9319"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8855248f-53da-4a46-8f05-41b95b1ebc8c"/> + <skos:Concept rdf:about="http://localhost:8000/d81a34d7-5653-4592-9b1c-44856cac6021"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/a978368f-4219-4c27-a3fe-42e543919f58"> - <skos:member rdf:resource="http://localhost:8000/61dfad8f-cd46-47fd-820f-3e69ac423cc6"/> + <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> + <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> + <skos:member rdf:resource="http://localhost:8000/ca1546cf-6ee5-428d-9728-b90fc8820baa"/> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1a7aa305-ab78-4ea3-abd2-16ac8d8ce10e"/> + <skos:Concept rdf:about="http://localhost:8000/fc49c02e-42cf-4ebb-8952-ddd323c4dd7f"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/4455ae0b-c49e-4940-b43a-4b818848fdd4"/> - <skos:member rdf:resource="http://localhost:8000/3c44d93c-01e5-4768-9b00-61db7f350d6a"/> - <skos:member rdf:resource="http://localhost:8000/af047bfd-5454-41ef-812a-9fbf6ad9a0ac"/> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> - <skos:member rdf:resource="http://localhost:8000/b7b40309-f000-41cb-bc1b-630487e657ee"/> - <skos:member rdf:resource="http://localhost:8000/cead6e47-d4b2-42fe-84b6-42bca2857d11"/> - <skos:member rdf:resource="http://localhost:8000/46123a1f-6786-4cef-8193-c1f72e67cc5c"/> + <skos:member rdf:resource="http://localhost:8000/814cfe88-8330-43b7-a600-26096b7764c1"/> + <skos:member rdf:resource="http://localhost:8000/70847092-39b5-4620-97ed-2ec6e1a14c21"/> + <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/49e10ca8-12ae-4ead-9494-34c35a8de316"/> + <skos:Concept rdf:about="http://localhost:8000/adfd842e-3eb4-4ac7-8115-d3f886a66a93"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> - <skos:member rdf:resource="http://localhost:8000/ed080f48-eafc-4b7f-b7f4-8ef01ddb7eba"/> - <skos:member rdf:resource="http://localhost:8000/5bd80233-7f66-41a1-bc32-2e9b49126bef"/> - <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> - <skos:member rdf:resource="http://localhost:8000/9d84c6cb-70b1-4607-a035-2175a18f1991"/> - <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> - <skos:member rdf:resource="http://localhost:8000/cb4cc06d-3d14-480f-aab1-b02c28042946"/> - <skos:member rdf:resource="http://localhost:8000/6ea01af9-52df-4ddf-bd9e-2efda73f574f"/> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> - <skos:member rdf:resource="http://localhost:8000/d86b855e-6af4-402d-a94a-d13e36bddf8e"/> - <skos:member rdf:resource="http://localhost:8000/2ab5c7a0-d903-4d2d-bf47-1d866d78f170"/> - <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/3e46a547-fa4b-418d-bca7-18b2a5a50536"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/525aee44-e205-4684-9218-b5c4f39397ee"/> + <skos:Concept rdf:about="http://localhost:8000/30c6d071-88cf-4778-912b-b04bd4b856cd"> + <skos:member rdf:resource="http://localhost:8000/f74ebcee-1474-423a-98e0-eec4a6f70599"/> + <skos:member rdf:resource="http://localhost:8000/879c7e4e-2bce-490c-bb05-bf9ac6c3fe28"/> + <skos:member rdf:resource="http://localhost:8000/b96656eb-094b-48c3-a491-148df2d5fec0"/> + <skos:member rdf:resource="http://localhost:8000/b2a36d1a-3f90-4b23-a35d-837482891be1"/> + </skos:Concept> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e7801af8-3f25-4103-aef2-c5a023b1b15e"/> + <skos:Concept rdf:about="http://localhost:8000/9d30b6a3-e948-4a87-97a8-f145984694bb"> + <skos:member rdf:resource="http://localhost:8000/07edfe46-dc43-40ab-aeec-3103e2673bab"/> + <skos:member rdf:resource="http://localhost:8000/5b5b8456-900a-4a9b-8382-ebb9390d5fc8"/> + <skos:member rdf:resource="http://localhost:8000/b1a3bc7a-441a-48c8-9cfa-d37627b021a5"/> + <skos:member rdf:resource="http://localhost:8000/96c6ba52-ac8b-4c26-a020-a8199a851e42"/> + <skos:member rdf:resource="http://localhost:8000/94bb858b-3d17-41c7-a145-d70fda1822c5"/> + <skos:member rdf:resource="http://localhost:8000/cbc2485e-0e8b-4884-9045-e764078bbbb2"/> + </skos:Concept> </skos:member> - <skos:member rdf:resource="http://localhost:8000/00a828d4-74d8-45ed-b4ec-cf6f709bb693"/> - <skos:member rdf:resource="http://localhost:8000/6398dee0-6c11-40aa-97ef-496009784adb"/> + <skos:prefLabel xml:lang="en">{"id": "efb3c48f-3c15-4399-a220-2140c9474f10", "value": "Visual Work Techniques"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/b5dfd5e3-779d-4b94-8552-c539e352fd68"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c3e6c25d-0ea2-44e9-ba4c-8faf4397ec06"/> + <skos:Concept rdf:about="http://localhost:8000/9dd99086-3a90-4102-8335-33986fe797e3"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/6748d659-f49e-4abb-b383-d97dfe6cc368"/> - <skos:member rdf:resource="http://localhost:8000/fd194f67-9432-451b-98dc-be6b76742965"/> - <skos:prefLabel xml:lang="en">{"id": "88fdf279-d813-4257-8234-15353f71c865", "value": "Relationship Labels - Digital Resource"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/de8785a1-26e0-47f6-8612-a1909d88f55e"/> + <skos:prefLabel xml:lang="en-us">{"id": "41452235-d273-4feb-b630-df2458124a2a", "value": "Personal Name Part Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/deb7b57d-3b11-4e62-866f-b48cb12a4dbe"/> + <skos:Concept rdf:about="http://localhost:8000/1421293e-ad4d-4166-a199-d076622b2596"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/8be4ac1b-581b-4967-b7d6-5e2fe36fadb6"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/dca6a321-3ab9-42bc-ac80-2171789ae205"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> + <skos:Concept rdf:about="http://localhost:8000/c5f909c8-d870-4752-b62d-d18f945f1ddf"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - <skos:prefLabel xml:lang="en">{"id": "41003e0a-d5d6-4521-aba6-7581c98a30e2", "value": "Identifier Types - Observation Event"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> + <skos:Concept rdf:about="http://localhost:8000/1ffe97e4-1822-4a6e-b170-861330764bbd"/> + </skos:member> + <skos:member> + <skos:Concept rdf:about="http://localhost:8000/48ded04e-6487-4640-b5e1-37818ce87ade"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/044b55b3-bd2b-4c66-bb92-f60d6a563e54"> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + <skos:Concept rdf:about="http://localhost:8000/5c57af12-3510-4dfb-b924-97bbf55ddbd3"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> + <skos:Concept rdf:about="http://localhost:8000/ba983b76-67d1-4788-bbf3-40aa8093a268"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> + <skos:prefLabel xml:lang="en">{"id": "868d5e18-6606-4c02-a724-4efcfc3fd4b9", "value": "Identifier Types - Set"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4b220b03-17eb-44b8-b3db-3fa46f23697d"/> + <skos:Concept rdf:about="http://localhost:8000/1e4e1d74-2c6b-4a09-adb9-fd1b314584e7"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/94343b71-a35a-4edd-8ffa-61c66ea8d417"> - <skos:prefLabel xml:lang="en">{"id": "38763cc0-cc89-4055-8cfa-c016e3260472", "value": "Event Types - Set Addition"}</skos:prefLabel> + <skos:Collection rdf:about="http://localhost:8000/a7e17177-c533-4027-a66a-0c4fe961d7fc"> + <skos:prefLabel xml:lang="en">{"id": "98df025c-9828-4821-a0b7-1f47fed76650", "value": "Identifier Types - Instrument"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f01f324e-a192-4aab-9bdb-9a2fd5c355a2"/> + <skos:Concept rdf:about="http://localhost:8000/bf21abdf-897f-48c0-b9aa-c1f46502cdcc"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/dd2c84db-3b06-4443-8e55-514d7a412cb7"> + <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> + <skos:member rdf:resource="http://localhost:8000/4455ae0b-c49e-4940-b43a-4b818848fdd4"/> + <skos:member rdf:resource="http://localhost:8000/3c44d93c-01e5-4768-9b00-61db7f350d6a"/> + <skos:member rdf:resource="http://localhost:8000/6398dee0-6c11-40aa-97ef-496009784adb"/> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> + <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c1b53f0c-f372-4094-b0cb-5be66a44cefe"/> + <skos:Concept rdf:about="http://localhost:8000/25fcee5d-e563-470f-beb3-c85fc33f56ff"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/265d5422-709a-4e7b-bc0a-88e4a87608f7"/> + <skos:Concept rdf:about="http://localhost:8000/fb173f25-ffe6-46a2-9bc9-daa4a6a21fb1"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/69abe4f9-f16f-47bf-8fdf-ccce67a18e5d"> - <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> - <skos:member rdf:resource="http://localhost:8000/d12c085c-fa9a-4cc6-83b7-15031ce63c19"/> - <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> - <skos:member rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> - <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> - <skos:prefLabel xml:lang="en">{"id": "1a141b9b-1b8d-4516-bd68-4cb6e0cc4a91", "value": "Statement Types - Sampling Activity"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> - <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/9fe65e48-540c-4401-836d-947eb1878677"> + <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/93a715ef-5c16-4852-98c6-5d73d42633b6"/> + <skos:Concept rdf:about="http://localhost:8000/dfa3a38f-4f2b-4f85-a454-7ad200d0fcd0"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/598ce9bd-a5d6-4fd8-886f-7f45d99f1d57"/> + <skos:Concept rdf:about="http://localhost:8000/f3f82fdc-b944-44d3-ad88-bdae0bf97b74"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> + <skos:member rdf:resource="http://localhost:8000/ed080f48-eafc-4b7f-b7f4-8ef01ddb7eba"/> + <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> + <skos:member rdf:resource="http://localhost:8000/61dfad8f-cd46-47fd-820f-3e69ac423cc6"/> + <skos:member rdf:resource="http://localhost:8000/fd194f67-9432-451b-98dc-be6b76742965"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fa563901-745f-4edf-b1d4-26b24508e362"/> + <skos:Concept rdf:about="http://localhost:8000/63af640c-f979-47ad-9cb1-edb5e685d756"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/2ab5c7a0-d903-4d2d-bf47-1d866d78f170"/> + <skos:member rdf:resource="http://localhost:8000/cb4cc06d-3d14-480f-aab1-b02c28042946"/> + <skos:member rdf:resource="http://localhost:8000/6748d659-f49e-4abb-b383-d97dfe6cc368"/> + <skos:member rdf:resource="http://localhost:8000/2224c58e-75aa-4da7-be59-05c984002196"/> + <skos:member rdf:resource="http://localhost:8000/6ea01af9-52df-4ddf-bd9e-2efda73f574f"/> + <skos:member rdf:resource="http://localhost:8000/de8785a1-26e0-47f6-8612-a1909d88f55e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/115aff8f-f29f-4536-9e83-973cbf18623c"/> + <skos:Concept rdf:about="http://localhost:8000/2e20c0c0-154a-484f-9f2c-81e6dc680586"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e6c99d74-08b7-42c3-b663-978873bb3865"/> + <skos:Concept rdf:about="http://localhost:8000/904f4d83-449f-4848-8444-d19c598a70e5"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "5620b90d-f208-4f41-a34c-17e1aabdcabe", "value": "Dimension Types - Currencies"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "6b5c8958-2617-48cc-91eb-344ab614451d", "value": "Relationship Labels - Collection or Set"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/8be4ac1b-581b-4967-b7d6-5e2fe36fadb6"/> + <skos:member rdf:resource="http://localhost:8000/00a828d4-74d8-45ed-b4ec-cf6f709bb693"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5e49ee59-6580-4fcb-a57c-be102f72bccd"/> + <skos:Concept rdf:about="http://localhost:8000/35cd4540-54b2-4bd0-a7d8-8d7801c177ef"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/775271df-a7dc-4158-9eea-425ed089728d"/> + <skos:Concept rdf:about="http://localhost:8000/688998b4-4abf-4b21-aa02-6a3a2ebd28e2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d2ecdb4f-eca9-4407-953e-50fdf9f711b0"/> + <skos:Concept rdf:about="http://localhost:8000/19b929c2-91ac-4d15-81c3-60b7f77322d9"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/b7b40309-f000-41cb-bc1b-630487e657ee"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/411b634d-3ead-498c-9b30-29f0512e9771"/> + <skos:Concept rdf:about="http://localhost:8000/5d228ed2-d659-40ef-9f43-ca3209ea0896"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f3e8cc93-09ea-448d-9bae-d33a1c396919"/> + <skos:Concept rdf:about="http://localhost:8000/5a7c3476-2197-4277-b459-d4d8b95e730d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/249e9e0e-0af1-457e-b33e-ccb6824e5a2a"/> + <skos:Concept rdf:about="http://localhost:8000/3e29bed6-4503-41ca-b5fe-ba92f158a5d9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/eda33b72-4404-49fc-8cff-98383ff47234"/> + <skos:Concept rdf:about="http://localhost:8000/5f20f94f-880a-4891-905a-48a2c4be1c73"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/641c4612-732b-48c3-b958-3af2c5c3f647"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/98cffed5-2102-45fb-ba12-7b287fd2e8f3"/> + <skos:Concept rdf:about="http://localhost:8000/2f7aa8c7-8162-41a2-a742-92103bc838e2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/44230e61-1c33-47a2-a425-8089e09c060c"/> + <skos:Concept rdf:about="http://localhost:8000/541c4e7c-8a87-4604-804a-76b85b4948cd"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/299a2526-ed43-4578-ab31-aca6ab0b4a2f"/> + <skos:Concept rdf:about="http://localhost:8000/6f88b717-088e-48cd-9c4a-f3c08c5ed8fd"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/58e0487d-3421-41ef-ab8e-4a635eb40e9d"/> + <skos:Concept rdf:about="http://localhost:8000/2d8ddf38-37c9-4bd9-8bb1-75ac2b7f13d4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/903c4a8b-4051-4791-9ee9-9fd96e222117"/> + <skos:Concept rdf:about="http://localhost:8000/95d56de2-7c29-4a03-b0b1-4f8d5ea3aaed"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "988773e3-6203-4a6d-8436-82547a227892", "value": "Method Types - Creation Technique"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e518447a-c5a2-485f-926d-c854f65e88ec"/> + <skos:Concept rdf:about="http://localhost:8000/62fdcff5-5abc-4477-a916-bbae886f38af"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5dc2c5f1-bccd-44e2-be0e-f34f3d1ac8db"/> + <skos:Concept rdf:about="http://localhost:8000/0e099c0e-663a-4330-8597-d39eb9fda10a"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/4d7dd282-959e-4bef-9b14-dc37a6470f7e"> + <skos:Collection rdf:about="http://localhost:8000/5f7df45b-31ae-44ce-a8cc-55ccdafa019d"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a5ed5507-0574-4726-ae98-fa0cd971c349"/> + <skos:Concept rdf:about="http://localhost:8000/26a055ac-f801-4170-a4d5-a11d72d51eba"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/73014870-366d-4c86-ac23-d01d40801d75"/> - <skos:member rdf:resource="http://localhost:8000/84554ae9-0437-4ef3-94a3-6718fef184fe"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b16acdf3-a9c0-4c99-9ea1-dd17972cf288"/> + <skos:Concept rdf:about="http://localhost:8000/2f3699e4-1581-4bd7-b7f5-e2ac769d114d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/68c7d1a5-862a-4c08-bd7e-9047c49b102d"/> + <skos:Concept rdf:about="http://localhost:8000/4d40bcba-8ad8-4415-9781-94d501c50142"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/95950aa4-9344-4258-be98-829c70c69c8e"/> + <skos:Concept rdf:about="http://localhost:8000/88e8a379-1609-432d-8667-9f0c0d427a82"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/41bc72c3-eb83-42b6-96c3-639bc9888ed6"/> + <skos:Concept rdf:about="http://localhost:8000/392e4a35-2710-4467-86f9-650f5aea9630"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9517a001-391c-4b5b-9939-b62e832721c1"/> + <skos:Concept rdf:about="http://localhost:8000/9c9ea021-34bc-4f4d-9b19-baff24198e36"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "afcdfa9e-bed2-490b-8796-e3f4e4dad38a", "value": "Person Types - Ethnicities"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/8855248f-53da-4a46-8f05-41b95b1ebc8c"/> + <skos:prefLabel xml:lang="en">{"id": "4656a3fa-a004-49c0-945f-49db9a2020bc", "value": "Event Types - Provenance Activity"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5d9da344-2f3a-4f35-a5cd-3cb3f4a3535c"/> + <skos:Concept rdf:about="http://localhost:8000/4d2e8c94-7536-4067-ae2f-2e52b337fa0b"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/c66a18f6-eb8a-43cb-92d1-f74feaaf29ed"> + <skos:prefLabel xml:lang="en-us">{"id": "d69c2a78-71b3-4b75-b463-e651d85bff64", "value": "Personal Activity Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fbd4a835-713e-421a-9f0e-466b2b3845bf"/> + <skos:Concept rdf:about="http://localhost:8000/d4518c68-1a63-49fc-b515-a251cbdb76e9"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/e8300d8d-587a-46c1-8e79-44ee57b2c043"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/3534ed28-8baa-40f0-a4c2-97e23870cdb3"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f727ef24-5040-430b-975b-741eb542cd2d"/> + <skos:Concept rdf:about="http://localhost:8000/22b51542-05e5-482f-97ba-0283336ef91b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b53e679f-73d0-4933-a39c-facf23ce0c49"/> + <skos:Concept rdf:about="http://localhost:8000/b3498065-2de2-43d1-945c-96713ffb1fb8"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "50750f30-a10a-47dd-95cb-24d7579f5fce", "value": "Object Types - Collection/Set"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/46a2da83-1594-4823-8480-1407d3f1d671"/> + <skos:Concept rdf:about="http://localhost:8000/905f6f3e-9cc0-479e-9e7d-e313a14f3297"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a210183c-c615-46f6-ac2c-e3c378817e34"/> + <skos:Concept rdf:about="http://localhost:8000/1c9052ae-db51-4033-aba0-fc767330fd12"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ab4e604c-8af4-4b55-8d62-a9875c260552"/> + <skos:Concept rdf:about="http://localhost:8000/2c1d1ac2-3f1c-4796-9f01-f0857b918c9e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8c59ec9a-c7df-4c52-9104-6b7de8ee8151"/> + <skos:Concept rdf:about="http://localhost:8000/c0029e45-bd2d-42b5-b2a4-77b9d1219159"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/f3eca78c-7547-4ca5-a7eb-b130391b40ed"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/17a5481d-5595-46cf-b6a1-56b29103f739"/> + <skos:Concept rdf:about="http://localhost:8000/759cca44-5219-4074-beda-214a81c201b0"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e22afbaa-948c-4063-a4f9-8ea7ce5a35c7"/> + <skos:Concept rdf:about="http://localhost:8000/fe2241bd-9fa0-463b-aa69-f26aca86f3ee"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c801eaae-849a-46b4-a97e-280b59c1f2d7"/> + <skos:Concept rdf:about="http://localhost:8000/3787d26c-11a1-447c-8a71-74b862714f5f"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d5c8c4b4-f569-4963-9f2b-b4869c768b7c"/> + <skos:Concept rdf:about="http://localhost:8000/c262b1b6-df83-42a7-9385-1e0cd2b9e706"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4d40bcba-8ad8-4415-9781-94d501c50142"/> + <skos:Concept rdf:about="http://localhost:8000/67ee8af0-c9a0-4e1d-8f2b-19b35fcb57e6"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "04ad2c96-13e5-42d0-9f03-f745e0a66e82", "value": "Event Types - Acquisition Event"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8913b62a-23fe-4a7e-aeca-52356160b92e"/> + <skos:Concept rdf:about="http://localhost:8000/b8bff485-6f60-45ea-a9bc-32861ade7861"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bfe0540e-72a5-4ee3-a224-78167f39b1b6"/> + <skos:Concept rdf:about="http://localhost:8000/8af67f6d-3f1b-4313-9668-d3969a0c5469"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/c9e838f8-7660-4701-821c-721dac98a10b"> - <skos:prefLabel xml:lang="en-us">{"id": "f9115b37-9edd-4da6-9bd0-2641a0a8c3ea", "value": "Dimension Types - Physical Thing"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f18613e5-aa77-4400-97b9-aaf6987de517"/> + <skos:Concept rdf:about="http://localhost:8000/0fa2731d-a349-4cf4-979c-3a3de0375a79"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/191c70d0-82cd-4eeb-8a71-48f794f15211"/> + <skos:Concept rdf:about="http://localhost:8000/bf2a55ff-b9c6-4216-bb96-172825edef68"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b391c967-2a6b-4972-9289-17130cf96557"/> + <skos:Concept rdf:about="http://localhost:8000/90dbeb41-afa5-4e24-ba2c-bbc04779130d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9624bcad-0f1a-4c78-a919-f9eb6c532da2"/> + <skos:Concept rdf:about="http://localhost:8000/f903e2b8-5579-4159-b28d-9d8544c88c4b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4649d0f2-ad6c-4905-a24e-8d784c2cbc48"/> + <skos:Concept rdf:about="http://localhost:8000/7ecee866-60e9-428d-85ef-c089ce047e2a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7882a788-a6ba-42d7-bb02-7c2776d82353"/> + <skos:Concept rdf:about="http://localhost:8000/f3432589-1ec7-4f21-90ff-3582608bbbc4"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/05ad2322-38c4-434f-95ec-4f9f297515eb"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d5e68b90-83be-4307-8583-f7e5e939832c"/> + <skos:Concept rdf:about="http://localhost:8000/4f4cf6d3-c30a-4f08-a733-c8bd1276067b"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/ff5ed7bd-4b75-42a3-8361-ddfc1edc2875"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/26472e1f-7f73-4205-84e8-28c40b8e36ec"/> + <skos:Concept rdf:about="http://localhost:8000/8ef8ade6-fcdd-4da6-a9f7-1fb9e9df86d0"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0d9d0957-e2eb-4ba1-a848-a6e8231ab70d"> - <skos:member rdf:resource="http://localhost:8000/3044ebe4-8d5f-446a-b618-5f39fbfc2364"/> - <skos:member rdf:resource="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/545dd2fc-0d38-46de-8475-2a77ead4298e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8331ba52-065a-4ab7-8883-f6cfc14e8a08"> - <skos:member rdf:resource="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/acfbbb87-8a30-40c8-8399-3b64d0bda2c2"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "e82a6ab3-dc7d-4248-96a1-4c86081e6c17", "value": "Means Types - Object Used"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/dfc9614b-86ea-4e07-bf9a-caa703058cee"/> + <skos:Concept rdf:about="http://localhost:8000/f3100a7d-393e-43f8-bc20-80e1c09a078b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/535e70a2-5dca-4796-bbd4-35a4f4b4d33f"/> + <skos:Concept rdf:about="http://localhost:8000/64136ae8-03ed-41fa-afe4-8a3408bd34b9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7962e30a-76e0-4eee-b85b-58c8c1a75141"/> + <skos:Concept rdf:about="http://localhost:8000/24381687-0e47-4418-934e-c828c7ba16eb"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "34fba778-5417-4179-8f01-d8596235a361", "value": "Person Types - Nationality"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5435fb76-946f-414d-ad14-57a6b552c5d2"/> + <skos:Concept rdf:about="http://localhost:8000/31dbfe57-3132-4bab-8c7c-eeccf0e7c3f5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b2af20c9-e820-4db2-ad65-3744a4202d2d"> - <skos:member rdf:resource="http://localhost:8000/8201eb9f-7936-4220-8403-074ce3e9ea48"/> - <skos:member rdf:resource="http://localhost:8000/d29562a6-93e2-409e-9bb4-bcc58077113f"/> - <skos:member rdf:resource="http://localhost:8000/3c4df3ee-bf83-4b3e-b2d1-0dc42baf6088"/> - <skos:member rdf:resource="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"/> - <skos:member rdf:resource="http://localhost:8000/e3193f72-3a4c-4d54-8294-6a1af433a886"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/3db4ef7a-437d-48fb-8f34-422e226d49cd"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2fe66f7d-a761-4861-ab10-985b578bbe9b"/> + <skos:Concept rdf:about="http://localhost:8000/77181be9-230a-490e-8b81-2c242efdcfb9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/13485eec-f4aa-456a-8250-71526797597d"> - <skos:member rdf:resource="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/6c400200-8763-49ad-9928-8135a918b5d5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fe766393-d00d-463e-b706-4ca9ad772b7d"/> + <skos:Concept rdf:about="http://localhost:8000/5745583d-2795-4305-995f-a85929f8bd54"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/f7fc4f6d-fd46-4881-846f-4a08bc1a3fef"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6d997904-184c-4825-8807-83e2dddb124f"/> + <skos:Concept rdf:about="http://localhost:8000/acccfdce-e713-4172-93c5-edc0fabb9e1a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/135ccd63-25ca-4e3e-919f-ff09bf062274"/> + <skos:Concept rdf:about="http://localhost:8000/fdaa29fa-ac94-4c3a-802f-6a6b37f596fa"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8ead46b7-39b3-4f6a-b9d0-08994a595bb7"/> + <skos:Concept rdf:about="http://localhost:8000/f7422ea0-8a1d-48c9-a3a8-c45904cfc74c"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/e8300d8d-587a-46c1-8e79-44ee57b2c043"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6d302f17-decd-4f33-9606-c1df25e306ee"/> + <skos:Concept rdf:about="http://localhost:8000/2be75a62-6065-45e0-8660-dddeeaa2d685"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/38729dbe-6d1c-48ce-bf47-e2a18945600e"/> + <skos:Concept rdf:about="http://localhost:8000/465a8351-5ab1-4ffe-a768-57a08f44028e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bdb42273-5581-4554-956f-c8f41c67798d"/> + <skos:Concept rdf:about="http://localhost:8000/5705baac-66ca-4fc3-adce-acc997d16b1d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0870ac7d-edd3-4214-ba2b-185396528024"/> + <skos:Concept rdf:about="http://localhost:8000/207a310b-14b6-4518-af42-79cc3900e8e6"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/8855248f-53da-4a46-8f05-41b95b1ebc8c"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fea87de8-c1e5-4978-aa18-7df19382d7d6"/> + <skos:Concept rdf:about="http://localhost:8000/93dc2aa7-a6d9-4a93-93dc-0752b890beb7"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/84554ae9-0437-4ef3-94a3-6718fef184fe"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a1d82c77-ebd6-4215-ab85-2c0b6a68a0e8"/> + <skos:Concept rdf:about="http://localhost:8000/70ac381a-6eb8-4e33-9acd-12b8930f66c4"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/73014870-366d-4c86-ac23-d01d40801d75"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6195ff8c-5970-41b6-9480-e92ce21dc0df"/> + <skos:Concept rdf:about="http://localhost:8000/c7927e81-cd9f-4600-96ba-335200563fe5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ffc79063-a21e-46b3-9441-0c8dac5b6161"/> + <skos:Concept rdf:about="http://localhost:8000/411df452-e9ba-481a-89dd-3b65fb8f08fd"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/86d75104-eaba-4116-9201-0db856830aa4"/> + <skos:Concept rdf:about="http://localhost:8000/d7562d63-8f82-4c88-8b43-f5d81044721d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b9845f81-8de2-43be-a243-b91cc6924cdf"/> + <skos:Concept rdf:about="http://localhost:8000/8b8e6860-60f7-4de8-9368-05e18f72c183"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2b43ddad-7ab5-44c8-b943-020f7771de06"/> + <skos:Concept rdf:about="http://localhost:8000/0ad7ee80-84b7-479d-a7f6-4229839643c3"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/35ed167d-ab89-4f38-b046-3349256be725"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ec0f84da-5fff-44d0-a539-ed7099fb75ce"/> + <skos:Concept rdf:about="http://localhost:8000/fa5108b1-0643-4605-ad0d-e7a3c22e7fd6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7dcd9b95-ab41-4fb0-94ba-f6173d2e6e1a"/> + <skos:Concept rdf:about="http://localhost:8000/c6d0fd93-ac62-4927-b15b-5388af12d956"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c7954ef2-0053-400b-997c-d56a9f64940b"/> + <skos:Concept rdf:about="http://localhost:8000/60a64ca0-b6db-40da-b18c-6310515d22da"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0dfb95af-dcd3-4edd-8763-a3939e65f1e7"/> + <skos:Concept rdf:about="http://localhost:8000/d6a36ca5-c661-4dfd-9903-6a502eb52bbb"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "4ab667b5-d1a7-4cbd-9647-205853a4c098", "value": "Techniques"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7e6c493b-6434-4b3a-9513-02df44b78d24"/> + <skos:Concept rdf:about="http://localhost:8000/6444d3a3-f9bd-42e4-9c62-ea3fb2cd4f90"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "fcb713b2-d057-4e2a-ac9b-944f2bb2c92a", "value": "Languages"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/90426117-4930-4fac-9c26-16aa06c451ac"/> + <skos:Concept rdf:about="http://localhost:8000/17324c42-eb04-4527-8ea4-fe6b37ba03d2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5ab6901a-1d94-4769-9a8c-3ca83d9aa519"/> + <skos:Concept rdf:about="http://localhost:8000/478c39e7-9d07-4f5d-847d-ac887c2c4469"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a5e9ba49-12ce-4440-9db9-484c8519c785"/> + <skos:Concept rdf:about="http://localhost:8000/1bef9076-8fcc-421f-9ac9-7efd152570ef"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/825d0d98-cdd9-461e-8e96-609159286bd9"/> + <skos:Concept rdf:about="http://localhost:8000/fdb282ff-4e71-4334-9993-46956fc2b64d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c3c3b964-007c-434d-8df9-ac687a3be542"/> + <skos:Concept rdf:about="http://localhost:8000/ce042b1c-f512-4933-9aeb-0552974d51ca"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/28e25c2d-2a00-440d-8cac-3f357dd737c9"/> + <skos:Concept rdf:about="http://localhost:8000/97c77b61-26be-4e34-8b03-0938feb915a3"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5bb6ff4f-33c1-4804-9768-e1aa876d5150"/> + <skos:Concept rdf:about="http://localhost:8000/77e3d54b-b98d-43da-9049-1725645308d6"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/3a0ceee3-fe65-408c-970d-357dc535c594"> - <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> + <skos:Collection rdf:about="http://localhost:8000/80249c96-22e0-4ef5-bc2c-711ef1dbf6ad"> + <skos:prefLabel xml:lang="en">{"id": "e295dce5-c9af-4bdf-a6db-3f53151d973e", "value": "Name Types"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/e480165f-44d2-4ec4-b13a-f246270f06af"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c3074d88-9974-43e7-817e-686dcada6b9c"/> + <skos:Concept rdf:about="http://localhost:8000/2c1b54ac-bcba-48bc-975c-108961fe3036"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> - <skos:prefLabel xml:lang="en">{"id": "c11f52fd-ce14-4069-b74c-aa361d5ebcc5", "value": "Relationship Labels - Observation"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/654d8f80-ed8c-42a9-a085-f9afc9d76493"/> + <skos:Concept rdf:about="http://localhost:8000/d1cfab03-ce07-4800-9b89-d6129b602228"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/24ce7a28-25c7-4037-907e-319edad7f474"/> + <skos:Concept rdf:about="http://localhost:8000/6bea9a27-6b4b-4133-8ad9-105e9fee5dcb"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fbc6a24a-26d7-47fe-bd09-d283cba4348a"/> + <skos:Concept rdf:about="http://localhost:8000/b4d7567c-09f8-4039-b15f-67cada5cb57d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/afc13dca-6cef-4a8a-95a5-071ff442988f"/> + <skos:Concept rdf:about="http://localhost:8000/f73e0b59-f329-4b8f-932e-7c9426567c2c"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> - <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6a86dfe8-4cca-409f-9fbe-95dd3e1c5a16"/> + <skos:Concept rdf:about="http://localhost:8000/58800805-b0f0-4a6b-947a-8b98fec4c33a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0f434613-5533-490e-89f0-0aae96040b52"/> + <skos:Concept rdf:about="http://localhost:8000/24b56b86-97c4-4fe5-a6e2-4a7a5d5ba8f1"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/68000b8c-5b5c-4718-9b0a-b70a08379f1f"/> + <skos:Concept rdf:about="http://localhost:8000/a45e32f8-3025-49d7-9ad3-f0f960b4f772"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a6b75972-d4f5-47b3-9b15-e8edacfa910d"/> + <skos:Concept rdf:about="http://localhost:8000/b42fd6eb-b396-4ae0-926c-09f9a516f873"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/582ce144-b5a7-4b1b-883f-163f323d3a66"/> + <skos:Concept rdf:about="http://localhost:8000/4916b590-691a-4bcd-9fdd-bcc756484682"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/2224c58e-75aa-4da7-be59-05c984002196"/> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> + <skos:prefLabel xml:lang="en-us">{"id": "2d184615-73c7-4940-85f7-a6b7dd9af56f", "value": "Document Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2405aba5-e27c-42e6-9bd2-f6faf5e97369"/> + <skos:Concept rdf:about="http://localhost:8000/5864a6e2-5d38-42d5-bfc3-e7a4972cebed"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fdc542c4-9009-4558-9e90-28ef26d70f80"/> + <skos:Concept rdf:about="http://localhost:8000/ac2a0b23-c92f-482e-8f55-292386f66b86"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3ff85615-be42-4e63-a92e-c0074717ecf2"/> + <skos:Concept rdf:about="http://localhost:8000/cbf70ed1-44ea-4079-92b0-2c98834e808c"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/2e0fefb8-7556-4ffb-b946-e3546bac2e72"/> - <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> - <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> + <skos:member rdf:resource="http://localhost:8000/f903e2b8-5579-4159-b28d-9d8544c88c4b"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/774a6a6e-66f0-4b6c-92de-ea1f8c0c1018"/> + <skos:Concept rdf:about="http://localhost:8000/6f91f3d7-bb19-4d23-9ba4-e18d37825054"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/b3d6e036-e788-4c85-a1f0-3aa35f0a82f2"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ac747098-0517-45b7-a311-808da9e96da6"/> + <skos:Concept rdf:about="http://localhost:8000/f3612d52-0bdb-471d-afec-a3378c25b452"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5f9d4f70-ca98-4ff1-9c73-52877fbf83c3"/> + <skos:Concept rdf:about="http://localhost:8000/6cf9b53f-7e44-4264-8fa4-5d828ff3de72"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ddac2d30-4d8e-4c37-bb13-a8a32ee7b924"/> + <skos:Concept rdf:about="http://localhost:8000/a480c815-461a-470a-b012-81df75aef74e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b019227c-dcb0-4fa1-a187-b15a5613ffab"/> + <skos:Concept rdf:about="http://localhost:8000/5a7be6de-f130-472a-931e-635d830be28e"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "3c969683-725c-4b86-b6c0-15abf38b495c", "value": "Event Types - Professional Activity"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/93c026d3-22d5-45a3-847b-4767d49a5bbf"/> + <skos:Concept rdf:about="http://localhost:8000/a5ae03f5-d2c0-4336-b170-2019d7cae51b"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/22b51542-05e5-482f-97ba-0283336ef91b"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/90cca4e4-b569-48bf-91de-b18a473d2deb"/> + <skos:Concept rdf:about="http://localhost:8000/d3a32755-c1ab-4e04-9a3b-9bc1b20583b1"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/db261e02-be27-4a99-b9c1-875375103a1d"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/55949598-b28f-4e42-a286-1a1e9871fb09"/> + <skos:Concept rdf:about="http://localhost:8000/3ce7379e-24e2-4543-93be-d2a6353e197d"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/a16a4edc-c916-4293-af98-44d76ce6cba7"> + <skos:member rdf:resource="http://localhost:8000/0cb8fa21-80b6-4afe-aeca-c9863ed725d6"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f16e685d-fa8a-4670-8707-99448fe2a791"/> + <skos:Concept rdf:about="http://localhost:8000/d12c085c-fa9a-4cc6-83b7-15031ce63c19"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/7be0d823-b871-4006-9eed-e0351c604f05"/> + <skos:member rdf:resource="http://localhost:8000/0fff64d5-7aa5-4986-ae75-a684adec2dc6"/> + <skos:member rdf:resource="http://localhost:8000/5bd94b1d-b8b0-44fb-8e1a-fab715b2e8d0"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/210c4d7a-e17a-4f3d-b684-bf8cd803dcfa"/> + <skos:Concept rdf:about="http://localhost:8000/f147d843-7622-4109-bd73-c7fb05f1adea"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "f76823a6-f9e1-484e-abf4-b78d81b47a55", "value": "Person Types - Profession"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/7d9253fe-5b76-444d-84aa-34f35f0be80e"/> + <skos:member rdf:resource="http://localhost:8000/8907399d-9e31-4026-8ce9-7be964908a91"/> + <skos:member rdf:resource="http://localhost:8000/a842d507-d64c-482d-95d7-18d6e02d0ca6"/> + <skos:member rdf:resource="http://localhost:8000/1b162cc8-1f31-4fb3-81f9-2479b21d01aa"/> + <skos:member rdf:resource="http://localhost:8000/8a8ee459-ed32-4bd5-9235-518529188060"/> + <skos:member rdf:resource="http://localhost:8000/5b1a15d7-f4ce-48ec-871f-d09b330feeb1"/> + <skos:member rdf:resource="http://localhost:8000/02899026-debc-4b08-8f8a-5750362ff27e"/> + <skos:member rdf:resource="http://localhost:8000/c13e1882-c0c8-4044-8fff-1268ea9c721f"/> + <skos:member rdf:resource="http://localhost:8000/d835a4c9-22a2-4200-aa9e-50a7f09ce915"/> + <skos:prefLabel xml:lang="en">{"id": "adf1063b-697d-4595-b9d4-f1eb2ff36d92", "value": "Statement Types - Physical Thing"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/427a808f-e289-46e0-986c-58eeb697d884"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/273d0839-8911-468f-9eb1-b0cc3507b6e7"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/cf73b0a9-ecca-471c-ade9-e4fbcd404f63"/> + <skos:Concept rdf:about="http://localhost:8000/3966ec93-968e-4f31-a38b-75adadc09c3c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d9c6e689-f74b-4494-b8d4-cd6cc78297c9"/> + <skos:Concept rdf:about="http://localhost:8000/68e3884d-a4da-4a1c-9b41-853cdb59d5f9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b1bcc89f-22bd-42d3-bfc8-e694d5f8d460"/> + <skos:Concept rdf:about="http://localhost:8000/ecb98f2b-7104-4bbc-ae9a-8837104052a8"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c1684495-03dd-4070-9921-a050e6a7a632"/> + <skos:Concept rdf:about="http://localhost:8000/9966b87c-8914-472c-ac0c-cc5378c7127d"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "f342b090-41eb-4533-abba-720f7b1afe36", "value": "Visual Work Types - Subject Depicted"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/34eae943-67d8-42f8-abeb-6131b2a95b43"/> + <skos:Concept rdf:about="http://localhost:8000/9afbc9a7-f570-46b1-9055-80cc62bf82b3"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/f44f7240-35c5-49e8-a0e3-2ffe308f0862"> - <skos:member rdf:resource="http://localhost:8000/1b162cc8-1f31-4fb3-81f9-2479b21d01aa"/> - <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> - <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> - <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> - <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> - <skos:member rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> - <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> - <skos:prefLabel xml:lang="en-us">{"id": "0d015911-e436-4e9f-a9fa-5adff17e0042", "value": "Statement Types - Generic"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/fb8ccaf4-9d92-4150-b7cb-ed333ca767ea"> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> - <skos:prefLabel xml:lang="en">{"id": "834a7bb7-43d7-4558-b0f4-78573dd2edc9", "value": "Identifier Types - Textual Work"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + <skos:Collection rdf:about="http://localhost:8000/38867773-6543-4a98-90cc-dc1c7bec3340"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/77021141-5b6e-4e72-afe1-c65bb0878026"/> + <skos:Concept rdf:about="http://localhost:8000/4e7f0c35-fbb8-477f-8a19-00655d840e45"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d7195ad5-217f-4a62-8cf2-2aac59cf88f5"/> + <skos:Concept rdf:about="http://localhost:8000/f43bfa7f-e3de-4364-9735-0459b8ac5b8b"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "435cfbce-e62e-4893-ae41-0955eefac650", "value": "Event Types - Digital Resource Creation"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/51e3963f-00b3-4a62-8704-5c89822555de"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5627a014-3495-4d24-9543-21a577adaaaf"/> + <skos:Concept rdf:about="http://localhost:8000/6585f0e4-712a-4b88-81c8-7d8732f9fa78"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/851c8546-9f11-4a8f-8c6c-2230b9a1c92d"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4cd39562-1f73-4b78-9021-0b3a0e0be0e3"/> + <skos:Concept rdf:about="http://localhost:8000/26b5a060-eddb-4e4a-a98c-98abc6272296"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5fc4650f-5791-4351-bc52-1c5308eb730e"/> + <skos:Concept rdf:about="http://localhost:8000/546e7e19-54c6-44ed-8a81-3da08e275009"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "8b205ab2-f54e-4b70-b8de-2e86568a0ba9", "value": "Event Types - Set Removal"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c17e82b5-450c-43d4-a66d-b4796532316a"/> + <skos:Concept rdf:about="http://localhost:8000/e15a5258-c4c6-479f-bd0b-30e83ec5a3f1"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/495fe7b2-5580-4489-8a66-fd50aea1c266"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b655bf98-5a16-4641-8362-c78624d8d171"/> + <skos:Concept rdf:about="http://localhost:8000/e0b23285-bd55-43d8-9cef-f28df2e2a44e"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> + <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> + <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> + <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4c10d2b0-92c1-4752-a991-c6c051c3d9c2"/> + <skos:Concept rdf:about="http://localhost:8000/94326469-5f79-4830-96be-0beb2d3cfc6f"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/ac2a0b23-c92f-482e-8f55-292386f66b86"/> - <skos:prefLabel xml:lang="en">{"id": "251dd82f-090d-43dc-83f7-6d4f3ac03a3f", "value": "Object Types - Textual Work"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/2ddfe0e3-e6de-4d0c-a521-389cbeb24955"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fc767b12-ec83-49a9-bf4e-dc11d1d63bc9"/> + <skos:Concept rdf:about="http://localhost:8000/a23a8cda-73a8-4a44-922b-f05882fa797b"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> + <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> + <skos:prefLabel xml:lang="en">{"id": "50f6d721-548f-416a-bb71-755c6b818157", "value": "Statement Types - Experiment"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/69abe4f9-f16f-47bf-8fdf-ccce67a18e5d"> + <skos:member rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> + <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> + <skos:member rdf:resource="http://localhost:8000/d12c085c-fa9a-4cc6-83b7-15031ce63c19"/> + <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> + <skos:prefLabel xml:lang="en">{"id": "1a141b9b-1b8d-4516-bd68-4cb6e0cc4a91", "value": "Statement Types - Sampling Activity"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> + <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> + <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/9fe65e48-540c-4401-836d-947eb1878677"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0784c9bd-32c4-424f-a8cd-143b6f05703e"/> + <skos:Concept rdf:about="http://localhost:8000/e6c99d74-08b7-42c3-b663-978873bb3865"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a9cda9b2-9379-4626-9ed7-d6ef44bf13b5"/> + <skos:Concept rdf:about="http://localhost:8000/598ce9bd-a5d6-4fd8-886f-7f45d99f1d57"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0b9b05f5-9b5b-44ab-8090-98e195953043"/> + <skos:Concept rdf:about="http://localhost:8000/fa563901-745f-4edf-b1d4-26b24508e362"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/c372cf0b-f0f4-4730-a97d-c892dfbefcd7"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/abeca9ea-214c-4a19-91d1-233c940fd679"/> + <skos:Concept rdf:about="http://localhost:8000/eda33b72-4404-49fc-8cff-98383ff47234"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/268fd523-ce84-4e91-923b-01766b28f628"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d615bfb7-1503-42ab-8bdf-ab384ca24be6"/> + <skos:Concept rdf:about="http://localhost:8000/93a715ef-5c16-4852-98c6-5d73d42633b6"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/11378278-d14a-49c7-afe6-3a7fbb60f347"/> - <skos:member rdf:resource="http://localhost:8000/db62dc19-f356-410b-a309-474f5b59c767"/> - <skos:prefLabel xml:lang="en">{"id": "d2a43fe9-83aa-4824-aba9-2ad4102e871c", "value": "Profession Technique"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/693bf783-7cd9-4ce3-a7d2-fb59b80c1f2e"/> + <skos:Concept rdf:about="http://localhost:8000/44230e61-1c33-47a2-a425-8089e09c060c"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/adc8937e-1259-45bd-af5e-ffe892eb1a88"> - <skos:member rdf:resource="http://localhost:8000/ca1546cf-6ee5-428d-9728-b90fc8820baa"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/83da6018-d9b0-4524-a239-e8e02bdef92a"/> + <skos:Concept rdf:about="http://localhost:8000/98cffed5-2102-45fb-ba12-7b287fd2e8f3"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/b5767b7c-6c4e-48bd-abfa-caf3ff139cc8"/> - <skos:member rdf:resource="http://localhost:8000/3161211b-d4f3-4ce7-9e5d-ace00c3ad361"/> - <skos:member rdf:resource="http://localhost:8000/70847092-39b5-4620-97ed-2ec6e1a14c21"/> - <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> - <skos:member rdf:resource="http://localhost:8000/e4362f02-74d1-4229-a33c-06aac1540e65"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/941d2212-7f9a-46ce-8fc2-14ca6f068511"/> + <skos:Concept rdf:about="http://localhost:8000/775271df-a7dc-4158-9eea-425ed089728d"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/c53742f1-4a2d-4b63-be4f-4cacc9bc9319"/> - <skos:member rdf:resource="http://localhost:8000/fc49c02e-42cf-4ebb-8952-ddd323c4dd7f"/> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d81a34d7-5653-4592-9b1c-44856cac6021"/> + <skos:Concept rdf:about="http://localhost:8000/5e49ee59-6580-4fcb-a57c-be102f72bccd"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d52bc3d2-4933-48a0-ae88-998b576a8e85"/> + <skos:Concept rdf:about="http://localhost:8000/5dc2c5f1-bccd-44e2-be0e-f34f3d1ac8db"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/dd1ea5a4-1740-4577-9983-f54ea56e8f95"/> + <skos:Concept rdf:about="http://localhost:8000/299a2526-ed43-4578-ab31-aca6ab0b4a2f"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/f62ccd87-14d8-48b9-9114-b8f752b6d999"/> - <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> - <skos:member rdf:resource="http://localhost:8000/2e0fefb8-7556-4ffb-b946-e3546bac2e72"/> - <skos:prefLabel xml:lang="en">{"id": "9cb08d5d-af7f-4700-8799-6df292aef72b", "value": "Relationship Labels - Sampling Activity"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> - <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> - <skos:member rdf:resource="http://localhost:8000/814cfe88-8330-43b7-a600-26096b7764c1"/> + <skos:prefLabel xml:lang="en-us">{"id": "5620b90d-f208-4f41-a34c-17e1aabdcabe", "value": "Dimension Types - Currencies"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5c69a1f4-01ca-4ee1-8000-493bc6b9b28e"/> + <skos:Concept rdf:about="http://localhost:8000/115aff8f-f29f-4536-9e83-973cbf18623c"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/855d9e88-1368-489a-893c-47f2a31db561"/> - <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/adfd842e-3eb4-4ac7-8115-d3f886a66a93"/> + <skos:Concept rdf:about="http://localhost:8000/e518447a-c5a2-485f-926d-c854f65e88ec"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> - <skos:member rdf:resource="http://localhost:8000/3077e707-7e96-4370-9e88-08d38a4e6fad"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/32337acf-91a0-4f1c-ae5b-c14155d64941"/> + <skos:Concept rdf:about="http://localhost:8000/58e0487d-3421-41ef-ab8e-4a635eb40e9d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/46ded2f4-2147-4136-92ed-1fa178f79b10"/> + <skos:Concept rdf:about="http://localhost:8000/249e9e0e-0af1-457e-b33e-ccb6824e5a2a"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/1b8ef6a7-c0ed-4437-b836-16c3dec42ce9"/> - <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/892c52a6-0d81-4c5b-8e9f-dd7860276942"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bf289514-b63e-46e6-9575-ac40d643f5e7"/> + <skos:Concept rdf:about="http://localhost:8000/d2ecdb4f-eca9-4407-953e-50fdf9f711b0"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> - <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> - <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> - <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> - <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bb565261-55b7-4c1a-93aa-90ae78b28cee"/> + <skos:Concept rdf:about="http://localhost:8000/f3e8cc93-09ea-448d-9bae-d33a1c396919"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> - <skos:prefLabel xml:lang="en">{"id": "a76a1381-4ad1-49b1-a35a-e07af9f5815b", "value": "Relationship Labels - Place"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3d5fe8da-ee28-44d1-bb12-d736c9ebc8b9"/> + <skos:Concept rdf:about="http://localhost:8000/903c4a8b-4051-4791-9ee9-9fd96e222117"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/03f3f737-5ba8-4a49-94a0-187325d0df24"/> + <skos:Concept rdf:about="http://localhost:8000/411b634d-3ead-498c-9b30-29f0512e9771"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/38867773-6543-4a98-90cc-dc1c7bec3340"> - <skos:prefLabel xml:lang="en">{"id": "435cfbce-e62e-4893-ae41-0955eefac650", "value": "Event Types - Digital Resource Creation"}</skos:prefLabel> + <skos:Collection rdf:about="http://localhost:8000/36169008-3624-4589-98f8-47653f6db663"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4e7f0c35-fbb8-477f-8a19-00655d840e45"/> + <skos:Concept rdf:about="http://localhost:8000/b9c2b0a7-88b8-40d5-b605-0f74e4e0da61"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f43bfa7f-e3de-4364-9735-0459b8ac5b8b"/> + <skos:Concept rdf:about="http://localhost:8000/d435267f-7de2-4321-9b02-f495386866b3"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/641c4612-732b-48c3-b958-3af2c5c3f647"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6f88b717-088e-48cd-9c4a-f3c08c5ed8fd"/> + <skos:Concept rdf:about="http://localhost:8000/ac05986c-ffe8-4910-a73e-6efe0d451eda"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/62fdcff5-5abc-4477-a916-bbae886f38af"/> + <skos:Concept rdf:about="http://localhost:8000/1635bf19-34b2-4f52-b2dd-f67116830f05"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "988773e3-6203-4a6d-8436-82547a227892", "value": "Method Types - Creation Technique"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0e099c0e-663a-4330-8597-d39eb9fda10a"/> + <skos:Concept rdf:about="http://localhost:8000/02040456-2800-4934-9a95-70b2af7e8966"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2f7aa8c7-8162-41a2-a742-92103bc838e2"/> + <skos:Concept rdf:about="http://localhost:8000/5b2324ed-1afc-4e69-8edc-4547fe2166bc"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "cc951770-47fb-4d20-9bae-a882d0a104ec", "value": "Name Types - Personal"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2d8ddf38-37c9-4bd9-8bb1-75ac2b7f13d4"/> + <skos:Concept rdf:about="http://localhost:8000/0c9c8887-e4fb-480a-9cf0-9506b9650d40"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/541c4e7c-8a87-4604-804a-76b85b4948cd"/> + <skos:Concept rdf:about="http://localhost:8000/fa579432-0d81-4d5e-a721-01015f8fbfe5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/95d56de2-7c29-4a03-b0b1-4f8d5ea3aaed"/> + <skos:Concept rdf:about="http://localhost:8000/c54f3642-9f8d-475d-8c6d-b82fc4b5b853"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/a7e17177-c533-4027-a66a-0c4fe961d7fc"> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> - <skos:prefLabel xml:lang="en">{"id": "98df025c-9828-4821-a0b7-1f47fed76650", "value": "Identifier Types - Instrument"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> + <skos:Collection rdf:about="http://localhost:8000/9a2ee63b-d696-4686-979b-994597790289"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bf21abdf-897f-48c0-b9aa-c1f46502cdcc"/> + <skos:Concept rdf:about="http://localhost:8000/54a65679-78fc-483a-81ef-0f760ab2c467"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/044b55b3-bd2b-4c66-bb92-f60d6a563e54"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5c57af12-3510-4dfb-b924-97bbf55ddbd3"/> + <skos:Concept rdf:about="http://localhost:8000/63c1e2a4-da7f-41a1-b6d1-57b92a7ced66"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1e4e1d74-2c6b-4a09-adb9-fd1b314584e7"/> + <skos:Concept rdf:about="http://localhost:8000/1914c881-21d4-4de3-8637-301b2178ebec"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "868d5e18-6606-4c02-a724-4efcfc3fd4b9", "value": "Identifier Types - Set"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> + <skos:prefLabel xml:lang="en-us">{"id": "1a92d2c8-c050-4737-a9f3-6993c84c961d", "value": "Materials"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ba983b76-67d1-4788-bbf3-40aa8093a268"/> + <skos:Concept rdf:about="http://localhost:8000/1f2a382b-d892-4a20-a128-5604e972079e"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/00000000-0000-0000-0000-000000000005"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/00000000-0000-0000-0000-000000000007"/> + <skos:Concept rdf:about="http://localhost:8000/e04f3be0-f4e4-49c6-9330-00e4401d7c0e"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "d8c622f6-e786-11e6-905a-475a5eee86f5", "value": "Resource To Resource Relationship Types"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/5d1f9674-3dbb-4da2-b107-c878eff13d5d"> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d0705d15-91a1-4ac3-b298-94a554b5ef77"/> + <skos:Concept rdf:about="http://localhost:8000/27a55f27-4725-4440-bfd3-725cdebbf2ed"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/265b2804-4472-4540-b7bb-b81ced9e41fd"/> + <skos:Concept rdf:about="http://localhost:8000/1a3258bc-2083-41b0-aff6-705ba1b2fe03"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> - <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - <skos:prefLabel xml:lang="en">{"id": "824b35c6-2057-4c6f-9264-95d0d70b3a09", "value": "Identifier Types - Person"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8d57caff-b29f-407c-b2c9-6ad0d21ab80f"/> + <skos:Concept rdf:about="http://localhost:8000/120c64e0-3f4a-4f2a-accb-8b9e1a6d6f37"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/3534ed28-8baa-40f0-a4c2-97e23870cdb3"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1c9052ae-db51-4033-aba0-fc767330fd12"/> + <skos:Concept rdf:about="http://localhost:8000/49b09fc6-d1e1-46a7-a500-9089a68027eb"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/90dbeb41-afa5-4e24-ba2c-bbc04779130d"/> + <skos:Concept rdf:about="http://localhost:8000/6b389a46-6dcf-4ea0-af15-f11bae6fa6e2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fe2241bd-9fa0-463b-aa69-f26aca86f3ee"/> + <skos:Concept rdf:about="http://localhost:8000/d4e4db86-a948-4d6a-b89f-d1682d038afe"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4f4cf6d3-c30a-4f08-a733-c8bd1276067b"/> + <skos:Concept rdf:about="http://localhost:8000/f8ba2d38-fd38-4130-91cd-543686b61003"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bf2a55ff-b9c6-4216-bb96-172825edef68"/> + <skos:Concept rdf:about="http://localhost:8000/3737266f-33a8-454e-98cb-34734756ec9c"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/22b51542-05e5-482f-97ba-0283336ef91b"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c262b1b6-df83-42a7-9385-1e0cd2b9e706"/> + <skos:Concept rdf:about="http://localhost:8000/4bb2e7b9-54aa-481e-abbe-a25381edef0e"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/f903e2b8-5579-4159-b28d-9d8544c88c4b"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2c1d1ac2-3f1c-4796-9f01-f0857b918c9e"/> + <skos:Concept rdf:about="http://localhost:8000/e3c92bee-8df1-444f-899c-96d4fca1264d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c0029e45-bd2d-42b5-b2a4-77b9d1219159"/> + <skos:Concept rdf:about="http://localhost:8000/e59715c4-875b-4b50-8bb9-9f0597a6d6fe"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b3498065-2de2-43d1-945c-96713ffb1fb8"/> + <skos:Concept rdf:about="http://localhost:8000/d4ed934d-ed5f-491f-bb64-2061e7251e21"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/905f6f3e-9cc0-479e-9e7d-e313a14f3297"/> + <skos:Concept rdf:about="http://localhost:8000/6ad4a9e8-b48e-4338-9fc4-fa7509dec88e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3787d26c-11a1-447c-8a71-74b862714f5f"/> + <skos:Concept rdf:about="http://localhost:8000/24b976c1-14c5-4606-a686-08f7d5fb8e7c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/759cca44-5219-4074-beda-214a81c201b0"/> + <skos:Concept rdf:about="http://localhost:8000/2023db9b-d735-4ecf-91be-ef1fcf7110bc"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "50750f30-a10a-47dd-95cb-24d7579f5fce", "value": "Object Types - Collection/Set"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b8bff485-6f60-45ea-a9bc-32861ade7861"/> + <skos:Concept rdf:about="http://localhost:8000/b544f43a-f685-4091-bf79-f50191c0c32a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f3432589-1ec7-4f21-90ff-3582608bbbc4"/> + <skos:Concept rdf:about="http://localhost:8000/479bf620-ff68-405f-9a85-975439fad879"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8af67f6d-3f1b-4313-9668-d3969a0c5469"/> + <skos:Concept rdf:about="http://localhost:8000/ec551d7f-31d6-49ad-b812-38e5fc2a6436"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/67ee8af0-c9a0-4e1d-8f2b-19b35fcb57e6"/> + <skos:Concept rdf:about="http://localhost:8000/5f4346f1-126a-47fe-bd67-57a30353ef8b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0fa2731d-a349-4cf4-979c-3a3de0375a79"/> + <skos:Concept rdf:about="http://localhost:8000/34b081cd-6fcc-4e00-9a43-0a8a73745b45"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7ecee866-60e9-428d-85ef-c089ce047e2a"/> + <skos:Concept rdf:about="http://localhost:8000/07dbe013-7dcf-4dd7-9df1-e72a9a855da5"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/36169008-3624-4589-98f8-47653f6db663"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d435267f-7de2-4321-9b02-f495386866b3"/> + <skos:Concept rdf:about="http://localhost:8000/26a58b62-1396-48f0-838f-9773a9a2c5e0"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fa579432-0d81-4d5e-a721-01015f8fbfe5"/> + <skos:Concept rdf:about="http://localhost:8000/970f32df-c784-49e7-a83c-93174fd63cb3"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/02040456-2800-4934-9a95-70b2af7e8966"/> + <skos:Concept rdf:about="http://localhost:8000/24110bd5-0f65-4754-bd7e-b19ccd35b973"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c54f3642-9f8d-475d-8c6d-b82fc4b5b853"/> + <skos:Concept rdf:about="http://localhost:8000/36c303a8-d7fb-4030-93a4-3a874cf70034"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ac05986c-ffe8-4910-a73e-6efe0d451eda"/> + <skos:Concept rdf:about="http://localhost:8000/b5366c4d-3d1f-4643-982f-9aadf4ff17a7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b9c2b0a7-88b8-40d5-b605-0f74e4e0da61"/> + <skos:Concept rdf:about="http://localhost:8000/7efca7ef-8ab1-4bb6-8b72-d93f4b9f46be"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0c9c8887-e4fb-480a-9cf0-9506b9650d40"/> + <skos:Concept rdf:about="http://localhost:8000/219c15b1-a525-4833-aeeb-ec3c3bffc665"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1635bf19-34b2-4f52-b2dd-f67116830f05"/> + <skos:Concept rdf:about="http://localhost:8000/74ecdce5-765d-4de1-9a62-a24bd47f5b79"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "cc951770-47fb-4d20-9bae-a882d0a104ec", "value": "Name Types - Personal"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5b2324ed-1afc-4e69-8edc-4547fe2166bc"/> + <skos:Concept rdf:about="http://localhost:8000/80da44f6-5e55-4763-95d0-8e7cb2bf402c"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/e17c5d7f-eaf2-4e7d-9490-a3e362f74bdc"> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> - <skos:prefLabel xml:lang="en">{"id": "880d246e-b5d5-427e-bdcb-00366400ca12", "value": "Identifier Types - Sampling Activity"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> - <skos:member rdf:resource="http://localhost:8000/4b220b03-17eb-44b8-b3db-3fa46f23697d"/> - <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/c66a18f6-eb8a-43cb-92d1-f74feaaf29ed"> - <skos:prefLabel xml:lang="en-us">{"id": "d69c2a78-71b3-4b75-b463-e651d85bff64", "value": "Personal Activity Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d4518c68-1a63-49fc-b515-a251cbdb76e9"/> + <skos:Concept rdf:about="http://localhost:8000/df4f12d3-48ca-49af-8e96-edc6d52af481"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/56991802-f539-4b22-b5a9-b1945fceb52b"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ad788cc5-c54a-4a46-9fa2-817ffd97be3c"/> + <skos:Concept rdf:about="http://localhost:8000/4013bc24-e4cf-479d-9ed9-775843ff259b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c6df2fb1-861f-4a72-b6d3-baffae85c4e6"/> + <skos:Concept rdf:about="http://localhost:8000/e7301d1f-8acf-4e16-b0e3-654655e23d7e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/907d7730-1c16-4c56-b3f0-a95894aa39f7"/> + <skos:Concept rdf:about="http://localhost:8000/58a9665f-e444-445a-8736-b76641edccbe"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/b27ffefc-18a1-468f-8923-87530b6f5943"> + <skos:prefLabel xml:lang="en">{"id": "c0979a98-30c8-45fa-a7cb-6fef9e845d19", "value": "Professional Activity Technique"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6a7d74ed-b78a-4e98-abe6-d0a967b42702"/> + <skos:Concept rdf:about="http://localhost:8000/f8b729da-4edc-4718-bcd3-569ddff655cd"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a8c19e2d-944b-409a-abfa-5a7c45806416"/> + <skos:Concept rdf:about="http://localhost:8000/bc5364c9-6179-429f-b643-88889e0291f1"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/88e06b9f-1690-45cd-a8b7-99c2ebf011b8"/> + <skos:Concept rdf:about="http://localhost:8000/3e105447-bca4-4819-a674-e0773ce6df8e"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/09f4f591-5654-4518-931b-7ab382fbc100"> + <skos:prefLabel xml:lang="en">{"id": "7ae4edb3-d408-4b7e-9253-e4466b493daa", "value": "Object Types - Place"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0d734a1c-eaea-4a42-a7a5-8a60ebdb9247"/> + <skos:Concept rdf:about="http://localhost:8000/b759fb17-8868-45f9-889a-c4550b324e7c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2703e524-b5ea-4548-bea7-7ce354e4e05a"/> + <skos:Concept rdf:about="http://localhost:8000/5d471d02-cb7e-48bf-8fba-c367ffde2c07"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "5cd3f7f2-d818-4759-b706-088a4c4cd5c0", "value": "Object Types - Physical Thing"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9961937d-eaeb-431b-9190-9e17eaebb688"/> + <skos:Concept rdf:about="http://localhost:8000/599b2119-6e98-430b-8ae6-61bcdce15a47"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/05ad2322-38c4-434f-95ec-4f9f297515eb"> + <skos:prefLabel xml:lang="en">{"id": "e82a6ab3-dc7d-4248-96a1-4c86081e6c17", "value": "Means Types - Object Used"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3946b808-80f1-42a1-9521-ce27043569b8"/> + <skos:Concept rdf:about="http://localhost:8000/2fe66f7d-a761-4861-ab10-985b578bbe9b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a2588fa8-5ae6-4770-a473-dec0c05fb175"/> + <skos:Concept rdf:about="http://localhost:8000/8331ba52-065a-4ab7-8883-f6cfc14e8a08"> + <skos:member rdf:resource="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"/> + </skos:Concept> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/24f2475d-0bcf-4f7c-a8c2-de2e60e7b333"/> + <skos:Concept rdf:about="http://localhost:8000/0d9d0957-e2eb-4ba1-a848-a6e8231ab70d"> + <skos:member rdf:resource="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"/> + <skos:member rdf:resource="http://localhost:8000/3044ebe4-8d5f-446a-b618-5f39fbfc2364"/> + </skos:Concept> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f29c3f29-101a-4e82-95bb-cdd7008e27af"/> + <skos:Concept rdf:about="http://localhost:8000/fe766393-d00d-463e-b706-4ca9ad772b7d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7ea073d1-9998-4fb3-9bb7-d674417a42c1"/> + <skos:Concept rdf:about="http://localhost:8000/26472e1f-7f73-4205-84e8-28c40b8e36ec"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/907c2848-98fb-43e8-aa6a-64274ef9abf2"/> + <skos:Concept rdf:about="http://localhost:8000/d5e68b90-83be-4307-8583-f7e5e939832c"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9db724b9-b3c7-4761-9a50-673d64a15bd8"/> + <skos:Concept rdf:about="http://localhost:8000/5435fb76-946f-414d-ad14-57a6b552c5d2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3949f930-cb20-4cc0-b914-77e399bbb3a2"/> + <skos:Concept rdf:about="http://localhost:8000/dfc9614b-86ea-4e07-bf9a-caa703058cee"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b69d9192-59a6-42df-9bef-234842ee4bab"/> + <skos:Concept rdf:about="http://localhost:8000/13485eec-f4aa-456a-8250-71526797597d"> + <skos:member rdf:resource="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"/> + </skos:Concept> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bbb94e5c-2e82-46d1-bc97-a0423d3fb2d7"/> + <skos:Concept rdf:about="http://localhost:8000/535e70a2-5dca-4796-bbd4-35a4f4b4d33f"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/07e8d7a0-551f-4200-8c71-8a03e1f02d36"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4f861b2d-0400-41f7-a08b-a871f1e51316"/> + <skos:Concept rdf:about="http://localhost:8000/7962e30a-76e0-4eee-b85b-58c8c1a75141"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8ba7ae28-7ab0-409c-9259-023ddb0c44b5"/> + <skos:Concept rdf:about="http://localhost:8000/b2af20c9-e820-4db2-ad65-3744a4202d2d"> + <skos:member rdf:resource="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"/> + <skos:member rdf:resource="http://localhost:8000/e3193f72-3a4c-4d54-8294-6a1af433a886"/> + <skos:member rdf:resource="http://localhost:8000/3c4df3ee-bf83-4b3e-b2d1-0dc42baf6088"/> + <skos:member rdf:resource="http://localhost:8000/d29562a6-93e2-409e-9bb4-bcc58077113f"/> + <skos:member rdf:resource="http://localhost:8000/8201eb9f-7936-4220-8403-074ce3e9ea48"/> + </skos:Concept> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/c372cf0b-f0f4-4730-a97d-c892dfbefcd7"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/03c51652-484f-4b24-98ea-f3bf5bcf2d7c"/> + <skos:Concept rdf:about="http://localhost:8000/d615bfb7-1503-42ab-8bdf-ab384ca24be6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/23e4a3b3-ad56-456f-b9ae-88211f0dc40d"/> + <skos:Concept rdf:about="http://localhost:8000/11378278-d14a-49c7-afe6-3a7fbb60f347"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "800cdba0-2f67-48ec-a148-e8572e579cca", "value": "Role Types - Group"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/933cf221-2d71-478f-998a-a5e088457971"> - <skos:member rdf:resource="http://localhost:8000/662b53c0-2e26-4b87-a6d0-109b7f611e05"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0c682c76-a6a4-48f0-9c5b-1203a6dc33da"> - <skos:member rdf:resource="http://localhost:8000/b8a8e087-6e8f-41db-98ff-202785afddbb"/> - <skos:member rdf:resource="http://localhost:8000/106feb03-935f-49c4-8e15-c30ee42adc66"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/db62dc19-f356-410b-a309-474f5b59c767"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f7dda933-9221-4555-a828-493962ab9411"/> + <skos:Concept rdf:about="http://localhost:8000/268fd523-ce84-4e91-923b-01766b28f628"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/17060cf6-23de-457f-b98f-8bce7b99d325"/> + <skos:Concept rdf:about="http://localhost:8000/abeca9ea-214c-4a19-91d1-233c940fd679"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/b49383a7-a83e-4c1b-a705-e4c21d49ba17"/> - <skos:member rdf:resource="http://localhost:8000/3c86859c-7cb7-4595-9c88-1c4780c19ee0"/> + <skos:prefLabel xml:lang="en">{"id": "d2a43fe9-83aa-4824-aba9-2ad4102e871c", "value": "Profession Technique"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/21121df1-9699-469d-924c-50f575c1ba83"/> + <skos:Concept rdf:about="http://localhost:8000/693bf783-7cd9-4ce3-a7d2-fb59b80c1f2e"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "4ec75c36-22b9-4430-af00-04ee14546e9d", "value": "Reference Types - Digital Resource Reference"}</skos:prefLabel> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/8b7faa16-3846-4360-b767-bb2c823b6550"> - <skos:member> - <skos:Concept rdf:about="http://localhost:8000/cddda87a-6281-4547-a2e0-4047994836c8"/> - </skos:member> + <skos:Collection rdf:about="http://localhost:8000/f3eca78c-7547-4ca5-a7eb-b130391b40ed"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4490453e-608e-40d6-9e39-79af0f1cc9fe"/> + <skos:Concept rdf:about="http://localhost:8000/17a5481d-5595-46cf-b6a1-56b29103f739"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/15f52617-f1cf-40c6-b31f-eccd2dc8c252"/> + <skos:Concept rdf:about="http://localhost:8000/e22afbaa-948c-4063-a4f9-8ea7ce5a35c7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/75613ffa-549e-42cd-8a5a-b9ff66ae8c07"/> + <skos:Concept rdf:about="http://localhost:8000/d5c8c4b4-f569-4963-9f2b-b4869c768b7c"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "04ad2c96-13e5-42d0-9f03-f745e0a66e82", "value": "Event Types - Acquisition Event"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ca08a220-303e-4bee-92d9-8bd4f5302b49"/> + <skos:Concept rdf:about="http://localhost:8000/bfe0540e-72a5-4ee3-a224-78167f39b1b6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1ff831dd-8f7a-4331-9579-51e513725ca3"/> + <skos:Concept rdf:about="http://localhost:8000/8913b62a-23fe-4a7e-aeca-52356160b92e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/89462b0b-71a7-4872-a6ca-18ded17f7568"/> + <skos:Concept rdf:about="http://localhost:8000/c801eaae-849a-46b4-a97e-280b59c1f2d7"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "311d3930-7fea-4842-9199-245a7f1a88bf", "value": "Textual Work Types - Subject"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/4096365e-4fe7-412d-906c-16f3d356e8be"> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> - <skos:prefLabel xml:lang="en">{"id": "ee42f7ad-b7ab-4eb5-8d3d-91f76f6240e2", "value": "Identifier Types - Generic"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> - <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/0eb564f7-3ccb-4b13-aab1-307011c8610a"> - <skos:prefLabel xml:lang="en-us">{"id": "0c50ed39-ca1e-460c-9bef-fc0a23eb21eb", "value": "Duration types"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/4d40bcba-8ad8-4415-9781-94d501c50142"/> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/5d2357bf-4ac0-407f-ae2a-c8ac35dca0e9"> - <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> - <skos:member rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> - <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> + <skos:Collection rdf:about="http://localhost:8000/00000000-0000-0000-0000-000000000005"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e0b23285-bd55-43d8-9cef-f28df2e2a44e"/> + <skos:Concept rdf:about="http://localhost:8000/00000000-0000-0000-0000-000000000007"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/2ddfe0e3-e6de-4d0c-a521-389cbeb24955"/> - <skos:prefLabel xml:lang="en">{"id": "0fc88287-d904-429f-9b88-7f8b6cfe1628", "value": "Statement Types - Digital Resource"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> - <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> - <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> + <skos:prefLabel xml:lang="en-us">{"id": "d8c622f6-e786-11e6-905a-475a5eee86f5", "value": "Resource To Resource Relationship Types"}</skos:prefLabel> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/44295221-1215-4359-a079-234b317f65b7"> - <skos:member> - <skos:Concept rdf:about="http://localhost:8000/076513dd-d250-40dd-8d5c-e79b55a282d0"/> - </skos:member> - <skos:member> - <skos:Concept rdf:about="http://localhost:8000/48e06dbc-c0ea-4cc7-9588-f1ac2b53b46e"/> - </skos:member> + <skos:Collection rdf:about="http://localhost:8000/02dc399d-9c8c-406d-a4bf-56817eb03449"> + <skos:prefLabel xml:lang="en">{"id": "71fe68d9-2f1a-493e-8915-c835d69fdcc9", "value": "Event Types - Payment "}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/96151ca8-8e58-4e07-a490-c6152e2c5048"/> + <skos:Concept rdf:about="http://localhost:8000/7baa8baa-38a4-4f83-a96a-1a18bd751c36"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/71f2308c-6d7e-423d-8d23-17a0df059a75"/> + <skos:Concept rdf:about="http://localhost:8000/479e887b-5700-4629-adfa-a71d652756fa"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4583a363-ad2d-4dd9-8c7c-b1a433f53079"/> + <skos:Concept rdf:about="http://localhost:8000/1c09bed5-8ef4-4d1d-9b29-3764bdb8c14b"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/c82d6f85-ae67-4c28-b07a-c114f6d6ba50"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ca88ef39-c76c-412a-bf9b-e9c8e3e89e08"/> + <skos:Concept rdf:about="http://localhost:8000/c6a32789-73d3-450d-837c-dc4932716b61"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2c276821-6d7b-421d-bea4-814669f7aa7f"/> + <skos:Concept rdf:about="http://localhost:8000/7bf9197c-f82d-4ce3-9e4d-2221c017d45b"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "1553c148-ea61-4cf4-8f72-de3bc2a5bc24", "value": "Meta Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e49f5b60-0a84-4004-980d-a6635b2f7b0b"/> + <skos:Concept rdf:about="http://localhost:8000/f396443b-2e35-44e3-8887-8bbb39f6b44a"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "88d3ca3b-e5b3-4db3-a401-f040822039e5", "value": "Dimension Types - Physical Units"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/e8552ef1-a840-41c0-8653-37ced235c300"> + <skos:prefLabel xml:lang="en-us">{"id": "afeb1876-2e40-47be-984f-aab4f44f2ce3", "value": "Birth types"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/f44f7240-35c5-49e8-a0e3-2ffe308f0862"> + <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> + <skos:member rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> + <skos:member rdf:resource="http://localhost:8000/1b162cc8-1f31-4fb3-81f9-2479b21d01aa"/> + <skos:prefLabel xml:lang="en-us">{"id": "0d015911-e436-4e9f-a9fa-5adff17e0042", "value": "Statement Types - Generic"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> + <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> + <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> + <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/8dc4c1ac-aae5-41f6-817b-9ee5fef855fe"> + <skos:prefLabel xml:lang="en-us">{"id": "4a2acacf-7b12-4db4-a1e5-cde49a45f14e", "value": "Digital Resource Types"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/56c052f1-df82-432b-a915-99a6a42e5c94"/> + <skos:Concept rdf:about="http://localhost:8000/477438d2-c018-456e-8513-ae7f563a66c5"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/662b53c0-2e26-4b87-a6d0-109b7f611e05"/> + <skos:member rdf:resource="http://localhost:8000/3c86859c-7cb7-4595-9c88-1c4780c19ee0"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1c55bd47-1895-4c3e-ba40-3dc0084cad2d"/> + <skos:Concept rdf:about="http://localhost:8000/b49383a7-a83e-4c1b-a705-e4c21d49ba17"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/5a9349ec-e6fa-4e19-9343-058749886697"> + <skos:Collection rdf:about="http://localhost:8000/07e8d7a0-551f-4200-8c71-8a03e1f02d36"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e8a9a948-1cc2-452f-bd4b-33b1d84e899d"/> + <skos:Concept rdf:about="http://localhost:8000/8ba7ae28-7ab0-409c-9259-023ddb0c44b5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/23da916d-1424-44f5-a85e-e5dacbcce27a"/> + <skos:Concept rdf:about="http://localhost:8000/4f861b2d-0400-41f7-a08b-a871f1e51316"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f72e688f-855b-43d1-92aa-11aa679b01e6"/> + <skos:Concept rdf:about="http://localhost:8000/23e4a3b3-ad56-456f-b9ae-88211f0dc40d"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "800cdba0-2f67-48ec-a148-e8572e579cca", "value": "Role Types - Group"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6696a427-b2ff-4fce-9f78-61861c063c37"/> + <skos:Concept rdf:about="http://localhost:8000/03c51652-484f-4b24-98ea-f3bf5bcf2d7c"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/98555065-476d-454d-93e9-e9a03cd57a27"> + <skos:prefLabel xml:lang="en">{"id": "05558474-7b8e-4ccd-b54a-048600a1cde7", "value": "Production Techniques"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/6e3bd268-68bc-4464-aad0-82eabfd5a78f"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c84d1624-d004-4640-9653-6a6cd99c32e2"/> + <skos:Concept rdf:about="http://localhost:8000/f41ad781-5aa6-46c6-8daf-7598ffcd4aae"> + <skos:member rdf:resource="http://localhost:8000/b9cb3ead-ae6d-4f04-9551-e390defc35f2"/> + <skos:member rdf:resource="http://localhost:8000/cd3d2406-1ae5-42f0-98f9-43e965ae5d38"/> + </skos:Concept> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "7c3d8286-d377-439d-aff3-a5c4c8a15648", "value": "Event Types - Sampling Activity"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/19b0fa01-3d14-43c5-afde-0662376fb3f2"/> + <skos:Concept rdf:about="http://localhost:8000/e80c9f10-5bb5-45b9-b7c5-daa7f81f7211"> + <skos:member rdf:resource="http://localhost:8000/07591d48-bad3-4fea-972f-584394cefeb1"/> + </skos:Concept> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/52fbf9cc-3027-4d5c-9439-1856bb6e68a5"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0bc8a3a2-baa2-4a32-9839-89b5bf917f3a"/> + <skos:Concept rdf:about="http://localhost:8000/b727e4b6-3169-457d-ab05-5991bacb03cd"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "8492478c-e68e-48de-8797-7041c3b3b3d6", "value": "Person Types - Genders"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "d59eaf34-8a01-47ad-9ad8-10560d135ebc", "value": "Visual Work Types - Subject"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e0cb0905-bf56-488f-b682-4a14cc0afa49"/> + <skos:Concept rdf:about="http://localhost:8000/d8de88fc-19c6-4129-bcc2-7bb3ff8e841a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3b46f7de-75f7-4999-a0ab-3a8b6ca5b01a"/> + <skos:Concept rdf:about="http://localhost:8000/ce7ad2f6-e99e-43b8-be84-98e4272c803f"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/093ddd50-2a48-4d20-8b46-344ade2af30c"> - <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f6ae1e05-4657-464d-858e-f1426de3e9d3"/> - </skos:member> + <skos:Collection rdf:about="http://localhost:8000/9830adca-4ef8-4088-8cff-cae89a8af60c"> + <skos:prefLabel xml:lang="en">{"id": "fef1379a-adac-4ed3-a7fd-e6ac660989f4", "value": "Object Types - Visual Work"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0c07fee2-14e2-4af3-b987-5d6d00958b45"/> + <skos:Concept rdf:about="http://localhost:8000/0e5d03f3-613c-4e36-9783-e93e317b56a6"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f9f84020-d138-420e-8efb-c6fa7a8edd6d"/> + <skos:Concept rdf:about="http://localhost:8000/14aaf84d-4bd1-40c4-8f6e-6e0e368a49d4"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/52c977b9-3ee6-415c-ad88-70e01c72fd38"> + <skos:member rdf:resource="http://localhost:8000/77617e19-4102-4f2c-9a8c-4bb118d0d61d"/> + <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> + <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> + <skos:prefLabel xml:lang="en">{"id": "5b1029a0-d764-4c7b-b3dd-405ab731f62e", "value": "Statement Types - Person"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> + <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> + <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> + <skos:member rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/a4095d09-de02-4675-ab63-42227d9e94bc"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7a18d2f2-e8d2-4ae7-a7ce-e4d02083149e"/> + <skos:Concept rdf:about="http://localhost:8000/72006c28-5bee-4c31-9b64-64d06ca3ab8b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/51eb7a71-66e1-45ba-97c7-f92edcf4cdec"/> + <skos:Concept rdf:about="http://localhost:8000/efd96a8d-da15-4a59-a7e4-0e08a6e5c1c4"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "14fe6bef-2c46-4c81-9912-fae8036068e4", "value": "Event Types - Visual Work Creation Event"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0ce70c72-c0c8-4b2d-86af-39821d6a3d07"/> + <skos:Concept rdf:about="http://localhost:8000/3774b3a4-96bc-4643-b260-c0fce1127bcf"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/581d3c26-5265-4979-aa1a-8a0409583c48"/> + <skos:Concept rdf:about="http://localhost:8000/f5b916fc-e129-4391-9545-26871ddf3975"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/87429aa4-81ee-415e-87c2-8420089d53f4"/> + <skos:Concept rdf:about="http://localhost:8000/f56d47fa-10d9-4e37-a009-9b77a96e3f50"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a23008bd-df63-4d01-a3c7-e22e0f34ad80"/> + <skos:Concept rdf:about="http://localhost:8000/6ecfc5d9-6082-465b-8294-670ad9c9270e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/929b011e-3cdb-449e-b155-8cd2808ed4c5"/> + <skos:Concept rdf:about="http://localhost:8000/8889c48f-504f-410d-8eb1-737f062d85f3"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0d87b5d0-1aac-456f-81e7-62c260e2293d"/> + <skos:Concept rdf:about="http://localhost:8000/e26bc6aa-28c3-4462-8f15-5015ed64c3fe"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "0f6c54ad-488c-4fcd-a03e-0e8d0a079a48", "value": "Object Types - Group"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f37e69ea-ce89-4a5c-924b-172a2ac7e9a0"/> + <skos:Concept rdf:about="http://localhost:8000/fe6ad26d-48c2-407d-b438-7859c5f1c301"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/02dc399d-9c8c-406d-a4bf-56817eb03449"> + <skos:Collection rdf:about="http://localhost:8000/093ddd50-2a48-4d20-8b46-344ade2af30c"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1c09bed5-8ef4-4d1d-9b29-3764bdb8c14b"/> + <skos:Concept rdf:about="http://localhost:8000/581d3c26-5265-4979-aa1a-8a0409583c48"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7baa8baa-38a4-4f83-a96a-1a18bd751c36"/> + <skos:Concept rdf:about="http://localhost:8000/929b011e-3cdb-449e-b155-8cd2808ed4c5"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "71fe68d9-2f1a-493e-8915-c835d69fdcc9", "value": "Event Types - Payment "}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/479e887b-5700-4629-adfa-a71d652756fa"/> + <skos:Concept rdf:about="http://localhost:8000/f6ae1e05-4657-464d-858e-f1426de3e9d3"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/074dca4c-a3d3-4521-835d-f1fa1a9c775b"> - <skos:member rdf:resource="http://localhost:8000/d835a4c9-22a2-4200-aa9e-50a7f09ce915"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a5538b87-8a0b-43a2-b4cf-e3fda813d888"/> + <skos:Concept rdf:about="http://localhost:8000/0c07fee2-14e2-4af3-b987-5d6d00958b45"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> - <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fb0a9c3f-02e5-44ac-8e39-266ac9460dcb"/> + <skos:Concept rdf:about="http://localhost:8000/0ce70c72-c0c8-4b2d-86af-39821d6a3d07"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> - <skos:prefLabel xml:lang="en">{"id": "609bdb91-e960-44e1-ad37-09ee4c59fac6", "value": "Statement Types - Instrument"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> - <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> - <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/6bdfcec3-0748-4380-befb-b75a4634d87e"> - <skos:prefLabel xml:lang="en-us">{"id": "e09f2ad5-c20d-4678-b478-071675d15ece", "value": "Payment types"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/ca9e81f3-471d-4d1f-b323-edc816b1c522"> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> - <skos:prefLabel xml:lang="en">{"id": "1fa387a3-7edf-4025-9a43-72ae2ee65833", "value": "Identifier Types - Visual Work"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7db49ae3-80dd-4c2e-83f3-842446415f13"/> + <skos:Concept rdf:about="http://localhost:8000/51eb7a71-66e1-45ba-97c7-f92edcf4cdec"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a064d600-c179-4df7-9f1f-17f4b33472be"/> + <skos:Concept rdf:about="http://localhost:8000/7a18d2f2-e8d2-4ae7-a7ce-e4d02083149e"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/696fd77f-0181-4d00-9372-b395b2fde9b3"> - <skos:prefLabel xml:lang="en-us">{"id": "ee51fac5-6b9c-479b-8aed-602926965ac2", "value": "Monetary Amount types (not currencies)"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/273d0839-8911-468f-9eb1-b0cc3507b6e7"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9afbc9a7-f570-46b1-9055-80cc62bf82b3"/> + <skos:Concept rdf:about="http://localhost:8000/87429aa4-81ee-415e-87c2-8420089d53f4"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "f342b090-41eb-4533-abba-720f7b1afe36", "value": "Visual Work Types - Subject Depicted"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/68e3884d-a4da-4a1c-9b41-853cdb59d5f9"/> + <skos:Concept rdf:about="http://localhost:8000/f37e69ea-ce89-4a5c-924b-172a2ac7e9a0"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9966b87c-8914-472c-ac0c-cc5378c7127d"/> + <skos:Concept rdf:about="http://localhost:8000/a23008bd-df63-4d01-a3c7-e22e0f34ad80"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ecb98f2b-7104-4bbc-ae9a-8837104052a8"/> + <skos:Concept rdf:about="http://localhost:8000/f9f84020-d138-420e-8efb-c6fa7a8edd6d"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "0f6c54ad-488c-4fcd-a03e-0e8d0a079a48", "value": "Object Types - Group"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3966ec93-968e-4f31-a38b-75adadc09c3c"/> + <skos:Concept rdf:about="http://localhost:8000/0d87b5d0-1aac-456f-81e7-62c260e2293d"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/7cc462a5-db43-4b25-a748-99892eba26aa"> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - <skos:prefLabel xml:lang="en">{"id": "497da2f6-01cc-4313-ac77-245697c230a9", "value": "Identifier Types - Provenance Activity"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> + <skos:Collection rdf:about="http://localhost:8000/0ca18480-f5f2-41b2-b177-857726e5ecd7"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c24d6806-75bf-4127-9fd6-c870cc160063"/> + <skos:Concept rdf:about="http://localhost:8000/c6ad85c9-12a5-40f5-8773-9b513ded7585"> + <skos:member rdf:resource="http://localhost:8000/9ef07691-f751-415a-805e-6fc52fbdb5a1"/> + <skos:member rdf:resource="http://localhost:8000/2e3e64b3-c802-4bbc-b284-5dbcd50ee4da"/> + <skos:member rdf:resource="http://localhost:8000/b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982"/> + <skos:member rdf:resource="http://localhost:8000/977c662f-c1d9-4a35-b556-696517e312ec"/> + </skos:Concept> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/aa1c30cc-f0cb-4f4a-8faa-9ba2d42323f5"/> + <skos:Concept rdf:about="http://localhost:8000/9f336e9a-17bd-45bc-a4a2-f816a551d196"> + <skos:member rdf:resource="http://localhost:8000/fa1d6a48-4e82-4d23-8747-c4fa10f3301a"/> + <skos:member rdf:resource="http://localhost:8000/d5c7a90b-fd87-4d2c-86f8-01909795e73e"/> + <skos:member rdf:resource="http://localhost:8000/9b1c5d1b-7ff9-400a-acde-c9a081eff7e1"/> + <skos:member rdf:resource="http://localhost:8000/091a244e-6532-4fc7-8b70-63364c4a4569"/> + </skos:Concept> </skos:member> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/f4a87a34-8288-4cec-8e20-b28bd567ce0a"> - <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - <skos:member rdf:resource="http://localhost:8000/fbc4dc2f-61f7-4d80-969d-d61fdd71de23"/> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> - <skos:member rdf:resource="http://localhost:8000/5bc20189-e804-45e2-bb65-b8d6c0ceda3b"/> - <skos:member rdf:resource="http://localhost:8000/45eeaca7-077d-45d2-9a3b-34268ddd9ea6"/> - <skos:prefLabel xml:lang="en">{"id": "0f260524-d3f1-4960-845a-55ac2847d517", "value": "Identifier Types - Physical Thing"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/b7929847-1bff-4ca6-b3f3-488b4a37db81"/> - <skos:member rdf:resource="http://localhost:8000/1e4e1d74-2c6b-4a09-adb9-fd1b314584e7"/> + <skos:prefLabel xml:lang="en">{"id": "a3b9d567-094d-4fc5-813b-ae10b7fbe956", "value": "Event Types - Observation"}</skos:prefLabel> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/079561dc-4c8f-40db-b658-c2fd5acdb3f2"> + <skos:Collection rdf:about="http://localhost:8000/af4360a2-0809-44a3-a72a-8a5f3c15ab31"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/254161a9-5063-42e7-a718-05e1b6baebea"/> + <skos:Concept rdf:about="http://localhost:8000/a17a13c9-58f0-4e66-8a73-bfae8f6247fa"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e77ea94b-c9c7-4e1f-879d-0916d1550d49"/> + <skos:Concept rdf:about="http://localhost:8000/3edc9a03-36c6-4b6a-8c19-3a626f5a0b7d"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/35159c58-3b68-4f2f-b6f6-10c2a873d5d7"/> + <skos:Concept rdf:about="http://localhost:8000/d5b6cfce-f3b4-4ff1-acf1-3b9353a87953"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "774e3420-4e2b-4191-b20d-935d9048b346", "value": "Event Types - Destruction Event"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f8004550-b659-4647-bc2c-d969b68c5714"/> + <skos:Concept rdf:about="http://localhost:8000/49add32c-3045-47aa-b1c7-9cf3307a2754"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0e95cff7-5df1-4281-a896-d3bbb295b11e"/> + <skos:Concept rdf:about="http://localhost:8000/87d354fd-8284-444e-a5ee-0718d4c84f56"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a7c83cb3-d116-4fb4-907c-c394fa3a63e0"/> + <skos:Concept rdf:about="http://localhost:8000/9038c161-43ac-4567-abae-9bb546e7898a"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "ae5a672a-ea6c-4c00-9adc-33e1b64da0de", "value": "Method Types - Part Removal Technique"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1682fbb6-52a3-46be-9488-8e50d1804172"/> + <skos:Concept rdf:about="http://localhost:8000/7d8aa2f8-f8a0-4d0d-a2a8-2fa8d64ae16b"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/43a271b6-28f3-4524-b497-2d3e0902b6ca"/> + <skos:Concept rdf:about="http://localhost:8000/5e4b95e8-70ff-41d4-8926-31182e4a5e56"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0f419fca-4b00-422d-8353-0b24a18d7e8e"/> + <skos:Concept rdf:about="http://localhost:8000/e7c365a4-aa13-41ea-870a-64780dfb3d39"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/a9e75b55-78b9-46a6-8cb2-aee3f5b5003e"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/14197ada-900e-4783-94b7-454707317007"/> + <skos:Concept rdf:about="http://localhost:8000/b5b561eb-9935-40bf-ade0-5a576299c3d9"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/1bb3db74-3dff-4e44-a629-7d6a0c1383e9"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/faeaa555-3942-4a7e-9c22-bcfae7e3076b"> - <skos:member rdf:resource="http://localhost:8000/1bd9f61f-fbc6-4b0d-9107-0e5b1ed9b277"/> - <skos:member rdf:resource="http://localhost:8000/fa11cdad-f45d-41f2-bac0-8b8045cff74b"/> - <skos:member rdf:resource="http://localhost:8000/a7e9a77a-005b-4253-8abc-7f3b944a4c0c"/> - <skos:member rdf:resource="http://localhost:8000/afbf17a2-4e83-4de6-963a-b985dc0f7c35"/> - <skos:member rdf:resource="http://localhost:8000/eedcb6df-656b-4a3b-b808-be00a7a4daf9"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/fa855ab3-215b-4b2e-b314-11364d9b6cb3"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f2bd260c-a4ba-4b27-ba3b-961f37ca8016"> - <skos:member rdf:resource="http://localhost:8000/7dfe3f0a-333c-45e6-8751-840841142bb1"/> - <skos:member rdf:resource="http://localhost:8000/b96a5716-1e25-4697-b5f9-3afad1627ed4"/> - <skos:member rdf:resource="http://localhost:8000/804e24c6-f30b-4675-b4d4-49b0897b589c"/> - <skos:member rdf:resource="http://localhost:8000/cb2a1f81-43a9-4c99-be9b-1624501a8c29"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/21bbcd2d-84b8-4604-96aa-add5e2e84588"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "5bae85fe-f972-479b-b4b1-c6b048ca1868", "value": "Method Types - Production Technique"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/495fe7b2-5580-4489-8a66-fd50aea1c266"> - <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> - <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> - <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/94326469-5f79-4830-96be-0beb2d3cfc6f"/> + <skos:Concept rdf:about="http://localhost:8000/fbdf6081-0cfa-4594-aa96-1453e6b703d7"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> - <skos:member rdf:resource="http://localhost:8000/e0b23285-bd55-43d8-9cef-f28df2e2a44e"/> - <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> - <skos:member rdf:resource="http://localhost:8000/2ddfe0e3-e6de-4d0c-a521-389cbeb24955"/> - <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a23a8cda-73a8-4a44-922b-f05882fa797b"/> + <skos:Concept rdf:about="http://localhost:8000/0159aa99-f9ef-43f6-a412-89df24b832bb"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "50f6d721-548f-416a-bb71-755c6b818157", "value": "Statement Types - Experiment"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "1bf91044-074d-4d05-a626-15f3923649b5", "value": "Event Types - Modification"}</skos:prefLabel> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/5f3c2407-2e22-4022-9795-2f3ef963d5aa"> - <skos:prefLabel xml:lang="en">{"id": "a7f73312-93c0-4065-b98f-736b5600d56f", "value": "TimeSpan Types - Duration"}</skos:prefLabel> + <skos:Collection rdf:about="http://localhost:8000/16b0e5b5-1870-439c-8f70-a65b47d71024"> + <skos:member rdf:resource="http://localhost:8000/35c808fa-3af2-4a8e-8d64-0f5d48dc2c59"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/1001587a-3524-455f-92ea-34deafc7bf68"/> + <skos:Concept rdf:about="http://localhost:8000/cb051e82-7c14-4630-a08d-5892be6070cf"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/340a38a7-8ed9-4a07-a4a4-a28c8fe77b28"/> + <skos:Concept rdf:about="http://localhost:8000/9e9677da-5452-46cc-9bd2-682f001c60fc"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/1b8ef6a7-c0ed-4437-b836-16c3dec42ce9"/> + <skos:member rdf:resource="http://localhost:8000/79002668-68b7-4d4c-a5ae-e05007039bdd"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/038d2bdf-081d-4f53-8ace-305e68c10591"/> + <skos:Concept rdf:about="http://localhost:8000/f252adb6-3b7a-44ae-815d-10a72ff83666"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/de10c1c8-a3a4-43e0-8afc-43720a9ad3a9"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7db37c5b-95a0-411c-a088-3ba245c2de27"/> + <skos:Concept rdf:about="http://localhost:8000/4e7a7cdf-2e4b-4ac7-995a-22d44d075115"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/92be9ab3-7782-4633-adc3-c1fb4716fb83"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5f0e4350-cacd-41d8-a2bb-5efbfa5915b5"/> + <skos:Concept rdf:about="http://localhost:8000/c19fd08b-6aed-4535-83a0-b80ff2655475"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/714dc5b5-f2f3-4daa-9a6c-ed07c385aeec"/> + <skos:Concept rdf:about="http://localhost:8000/4ddf7134-357f-4a39-8804-36b791b9c61f"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/fc49c02e-42cf-4ebb-8952-ddd323c4dd7f"/> + <skos:member rdf:resource="http://localhost:8000/70847092-39b5-4620-97ed-2ec6e1a14c21"/> + <skos:member rdf:resource="http://localhost:8000/f62ccd87-14d8-48b9-9114-b8f752b6d999"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/dfd2f1ed-4af4-4fcc-8dac-a001a0ddc523"/> + <skos:Concept rdf:about="http://localhost:8000/d2345f0c-b4e8-4190-b199-cbf283f405f5"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "d829ab5a-4c55-49a8-8d12-ce02ab5113ce", "value": "Event Types - Textual Work Creation"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/a9590301-77dc-4b3d-aa36-d669d1e338e3"/> + <skos:member rdf:resource="http://localhost:8000/1f0d2c15-fdaa-4809-84f6-165cf66a1d3d"/> + <skos:member rdf:resource="http://localhost:8000/2e0fefb8-7556-4ffb-b946-e3546bac2e72"/> + <skos:member rdf:resource="http://localhost:8000/cd093911-f1e1-4abb-bbb2-fcaea3ca03ab"/> + <skos:member rdf:resource="http://localhost:8000/cf4707c0-4fbf-46a7-998c-fa04f9552a96"/> + <skos:member rdf:resource="http://localhost:8000/6cc8d2de-439f-4345-8b99-fa42bc692d7e"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d1a8cc2c-a671-4ecf-8034-9348e2f0a8c7"/> + <skos:Concept rdf:about="http://localhost:8000/907fce8b-2b57-44ee-bd98-d40aa28abd77"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "37a0eb9a-e23c-42d0-a22a-649c6ac9260f", "value": "Relationship Labels - Modification"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/8455d232-8591-4e04-ac90-1f04ccd46f73"/> + <skos:member rdf:resource="http://localhost:8000/30af05cf-3a15-4bb5-a0c9-a5f5f946e309"/> + <skos:member rdf:resource="http://localhost:8000/8f3bebaa-3ee9-41a8-bbed-f484d2efc300"/> + <skos:member rdf:resource="http://localhost:8000/3077e707-7e96-4370-9e88-08d38a4e6fad"/> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/1b066f78-8d4b-4bb7-a83b-db15ae220811"> - <skos:prefLabel xml:lang="en-us">{"id": "7dfd94b9-1f11-497e-9f53-79347f22152f", "value": "Properties"}</skos:prefLabel> + <skos:Collection rdf:about="http://localhost:8000/83dd1837-e399-469f-a073-cd76edff810c"> + <skos:prefLabel xml:lang="en">{"id": "73bca47e-28ef-4e37-ac29-936c92576edd", "value": "Event Types - Transfer of Custody"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6b031c2a-888a-4637-b853-2c01dc38c132"/> + <skos:Concept rdf:about="http://localhost:8000/5b8027bf-d85e-4801-8c9d-723f9b8d9fb5"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/af4360a2-0809-44a3-a72a-8a5f3c15ab31"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a17a13c9-58f0-4e66-8a73-bfae8f6247fa"/> + <skos:Concept rdf:about="http://localhost:8000/58d98835-1370-4665-88fb-230bed179b67"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d5b6cfce-f3b4-4ff1-acf1-3b9353a87953"/> + <skos:Concept rdf:about="http://localhost:8000/2c7f2bb2-7527-438c-877b-90b1a5c67b83"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e7c365a4-aa13-41ea-870a-64780dfb3d39"/> + <skos:Concept rdf:about="http://localhost:8000/2f397086-f12b-4f43-881b-2f582b307968"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/9faa2596-258f-4a2f-a482-d07cb1e4126e"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3edc9a03-36c6-4b6a-8c19-3a626f5a0b7d"/> + <skos:Concept rdf:about="http://localhost:8000/2cef2cdf-cdda-4e25-a135-ef71a8305497"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/87d354fd-8284-444e-a5ee-0718d4c84f56"/> + <skos:Concept rdf:about="http://localhost:8000/8e39291b-e186-4571-b03d-e7b5b74b030e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9038c161-43ac-4567-abae-9bb546e7898a"/> + <skos:Concept rdf:about="http://localhost:8000/5d34bcba-7196-44ea-94c1-6180a0bb5927"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5e4b95e8-70ff-41d4-8926-31182e4a5e56"/> + <skos:Concept rdf:about="http://localhost:8000/a440773e-a140-4e8e-9fa7-2773b1c88f25"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "ae5a672a-ea6c-4c00-9adc-33e1b64da0de", "value": "Method Types - Part Removal Technique"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/49add32c-3045-47aa-b1c7-9cf3307a2754"/> + <skos:Concept rdf:about="http://localhost:8000/c5c1b27b-de1d-4dd3-aeb6-3a8a2715a7dc"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7d8aa2f8-f8a0-4d0d-a2a8-2fa8d64ae16b"/> + <skos:Concept rdf:about="http://localhost:8000/7860b0f4-b777-40e9-a320-6dde997fe2d6"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/c8261144-c750-4f64-8980-e50f762b21a5"> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> - <skos:prefLabel xml:lang="en">{"id": "33c164fa-c536-44cd-afa4-179a75835035", "value": "Identifier Types - Place"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/043f82e6-540c-4c3c-a37c-365509c12cbe"/> + <skos:Concept rdf:about="http://localhost:8000/aaf5444e-3e94-4f4b-905c-c5c5c7c35ec8"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0d660e45-fde0-47d8-b0c8-949a9ad397ef"/> + <skos:Concept rdf:about="http://localhost:8000/7156f8e2-d534-4f02-8f31-71f9a9a3a4aa"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/bbf81641-b1dd-4ddf-858d-7e8ca823d385"> - <skos:member> - <skos:Concept rdf:about="http://localhost:8000/62e7809a-d1d3-4b1b-b242-e5c217503c77"/> - </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "caedb825-7fab-430c-a6f6-b56864bb639b", "value": "TimeSpan Types - Overall"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0f572454-3e77-4d9e-8ea2-774e28469f3a"/> + <skos:Concept rdf:about="http://localhost:8000/62793e6b-097a-4045-be89-bcb0b4bc5cef"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "81baf4f3-62e3-4045-bb24-eeda672e7e79", "value": "Dimension Types - Digital Units"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/933cf221-2d71-478f-998a-a5e088457971"> + <skos:member rdf:resource="http://localhost:8000/3c86859c-7cb7-4595-9c88-1c4780c19ee0"/> + <skos:member rdf:resource="http://localhost:8000/b49383a7-a83e-4c1b-a705-e4c21d49ba17"/> + <skos:member rdf:resource="http://localhost:8000/21121df1-9699-469d-924c-50f575c1ba83"/> + <skos:prefLabel xml:lang="en-us">{"id": "4ec75c36-22b9-4430-af00-04ee14546e9d", "value": "Reference Types - Digital Resource Reference"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/493e8f0d-2e89-439a-9e8d-f1e813388f3b"/> + <skos:Concept rdf:about="http://localhost:8000/17060cf6-23de-457f-b98f-8bce7b99d325"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/f7dda933-9221-4555-a828-493962ab9411"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c85793a7-86d1-45ae-92f9-913652c5b4c8"/> + <skos:Concept rdf:about="http://localhost:8000/0c682c76-a6a4-48f0-9c5b-1203a6dc33da"> + <skos:member rdf:resource="http://localhost:8000/106feb03-935f-49c4-8e15-c30ee42adc66"/> + <skos:member rdf:resource="http://localhost:8000/b8a8e087-6e8f-41db-98ff-202785afddbb"/> + </skos:Concept> </skos:member> + <skos:member rdf:resource="http://localhost:8000/662b53c0-2e26-4b87-a6d0-109b7f611e05"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/1bb3db74-3dff-4e44-a629-7d6a0c1383e9"> + <skos:prefLabel xml:lang="en">{"id": "5bae85fe-f972-479b-b4b1-c6b048ca1868", "value": "Method Types - Production Technique"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f89a0022-ac64-45fd-aa77-5aab89eb77d3"/> + <skos:Concept rdf:about="http://localhost:8000/faeaa555-3942-4a7e-9c22-bcfae7e3076b"> + <skos:member rdf:resource="http://localhost:8000/afbf17a2-4e83-4de6-963a-b985dc0f7c35"/> + <skos:member rdf:resource="http://localhost:8000/a7e9a77a-005b-4253-8abc-7f3b944a4c0c"/> + <skos:member rdf:resource="http://localhost:8000/1bd9f61f-fbc6-4b0d-9107-0e5b1ed9b277"/> + <skos:member rdf:resource="http://localhost:8000/fa11cdad-f45d-41f2-bac0-8b8045cff74b"/> + <skos:member rdf:resource="http://localhost:8000/eedcb6df-656b-4a3b-b808-be00a7a4daf9"/> + </skos:Concept> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/20d21d50-3650-44ed-8451-edee26ddc3f2"/> + <skos:Concept rdf:about="http://localhost:8000/f2bd260c-a4ba-4b27-ba3b-961f37ca8016"> + <skos:member rdf:resource="http://localhost:8000/b96a5716-1e25-4697-b5f9-3afad1627ed4"/> + <skos:member rdf:resource="http://localhost:8000/7dfe3f0a-333c-45e6-8751-840841142bb1"/> + <skos:member rdf:resource="http://localhost:8000/cb2a1f81-43a9-4c99-be9b-1624501a8c29"/> + <skos:member rdf:resource="http://localhost:8000/804e24c6-f30b-4675-b4d4-49b0897b589c"/> + </skos:Concept> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/c82d6f85-ae67-4c28-b07a-c114f6d6ba50"> + <skos:Collection rdf:about="http://localhost:8000/fb8ccaf4-9d92-4150-b7cb-ed333ca767ea"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c6a32789-73d3-450d-837c-dc4932716b61"/> + <skos:Concept rdf:about="http://localhost:8000/77021141-5b6e-4e72-afe1-c65bb0878026"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "834a7bb7-43d7-4558-b0f4-78573dd2edc9", "value": "Identifier Types - Textual Work"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7bf9197c-f82d-4ce3-9e4d-2221c017d45b"/> + <skos:Concept rdf:about="http://localhost:8000/5627a014-3495-4d24-9543-21a577adaaaf"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "1553c148-ea61-4cf4-8f72-de3bc2a5bc24", "value": "Meta Types"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f396443b-2e35-44e3-8887-8bbb39f6b44a"/> + <skos:Concept rdf:about="http://localhost:8000/d7195ad5-217f-4a62-8cf2-2aac59cf88f5"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/9faa2596-258f-4a2f-a482-d07cb1e4126e"> + <skos:Collection rdf:about="http://localhost:8000/851c8546-9f11-4a8f-8c6c-2230b9a1c92d"> + <skos:prefLabel xml:lang="en">{"id": "251dd82f-090d-43dc-83f7-6d4f3ac03a3f", "value": "Object Types - Textual Work"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/ac2a0b23-c92f-482e-8f55-292386f66b86"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7860b0f4-b777-40e9-a320-6dde997fe2d6"/> + <skos:Concept rdf:about="http://localhost:8000/0784c9bd-32c4-424f-a8cd-143b6f05703e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5d34bcba-7196-44ea-94c1-6180a0bb5927"/> + <skos:Concept rdf:about="http://localhost:8000/4cd39562-1f73-4b78-9021-0b3a0e0be0e3"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "81baf4f3-62e3-4045-bb24-eeda672e7e79", "value": "Dimension Types - Digital Units"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/7156f8e2-d534-4f02-8f31-71f9a9a3a4aa"/> + <skos:Concept rdf:about="http://localhost:8000/4c10d2b0-92c1-4752-a991-c6c051c3d9c2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c5c1b27b-de1d-4dd3-aeb6-3a8a2715a7dc"/> + <skos:Concept rdf:about="http://localhost:8000/fc767b12-ec83-49a9-bf4e-dc11d1d63bc9"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/aaf5444e-3e94-4f4b-905c-c5c5c7c35ec8"/> + <skos:Concept rdf:about="http://localhost:8000/0b9b05f5-9b5b-44ab-8090-98e195953043"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a440773e-a140-4e8e-9fa7-2773b1c88f25"/> + <skos:Concept rdf:about="http://localhost:8000/a9cda9b2-9379-4626-9ed7-d6ef44bf13b5"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8e39291b-e186-4571-b03d-e7b5b74b030e"/> + <skos:Concept rdf:about="http://localhost:8000/c17e82b5-450c-43d4-a66d-b4796532316a"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2cef2cdf-cdda-4e25-a135-ef71a8305497"/> + <skos:Concept rdf:about="http://localhost:8000/b655bf98-5a16-4641-8362-c78624d8d171"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/62793e6b-097a-4045-be89-bcb0b4bc5cef"/> + <skos:Concept rdf:about="http://localhost:8000/5fc4650f-5791-4351-bc52-1c5308eb730e"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/cde31c5b-8ab2-4fbe-9b55-11eed1d478f7"> - <skos:member rdf:resource="http://localhost:8000/265d5422-709a-4e7b-bc0a-88e4a87608f7"/> + <skos:Collection rdf:about="http://localhost:8000/c9e838f8-7660-4701-821c-721dac98a10b"> + <skos:prefLabel xml:lang="en-us">{"id": "f9115b37-9edd-4da6-9bd0-2641a0a8c3ea", "value": "Dimension Types - Physical Thing"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/edcb51e8-6c01-440f-8ace-d707c352148a"/> + <skos:Concept rdf:about="http://localhost:8000/7882a788-a6ba-42d7-bb02-7c2776d82353"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "21b2e82b-c495-4661-8e75-a0b94cf93894", "value": "Event Types - Group Formation Events"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/dc5fe25b-6499-4b41-9ac8-08db72fcadf4"/> + <skos:Concept rdf:about="http://localhost:8000/9624bcad-0f1a-4c78-a919-f9eb6c532da2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e576485c-36c1-41e0-be6e-67dde3c52d9f"/> + <skos:Concept rdf:about="http://localhost:8000/b391c967-2a6b-4972-9289-17130cf96557"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/5f7df45b-31ae-44ce-a8cc-55ccdafa019d"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/392e4a35-2710-4467-86f9-650f5aea9630"/> + <skos:Concept rdf:about="http://localhost:8000/4649d0f2-ad6c-4905-a24e-8d784c2cbc48"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "4656a3fa-a004-49c0-945f-49db9a2020bc", "value": "Event Types - Provenance Activity"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9c9ea021-34bc-4f4d-9b19-baff24198e36"/> + <skos:Concept rdf:about="http://localhost:8000/191c70d0-82cd-4eeb-8a71-48f794f15211"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2f3699e4-1581-4bd7-b7f5-e2ac769d114d"/> + <skos:Concept rdf:about="http://localhost:8000/f18613e5-aa77-4400-97b9-aaf6987de517"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/5d1f9674-3dbb-4da2-b107-c878eff13d5d"> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/26a055ac-f801-4170-a4d5-a11d72d51eba"/> + <skos:Concept rdf:about="http://localhost:8000/265b2804-4472-4540-b7bb-b81ced9e41fd"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/4d40bcba-8ad8-4415-9781-94d501c50142"/> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4d2e8c94-7536-4067-ae2f-2e52b337fa0b"/> + <skos:Concept rdf:about="http://localhost:8000/d0705d15-91a1-4ac3-b298-94a554b5ef77"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "824b35c6-2057-4c6f-9264-95d0d70b3a09", "value": "Identifier Types - Person"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/88e8a379-1609-432d-8667-9f0c0d427a82"/> + <skos:Concept rdf:about="http://localhost:8000/8d57caff-b29f-407c-b2c9-6ad0d21ab80f"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> </skos:Collection> <skos:Collection rdf:about="http://localhost:8000/80028d07-9c98-48cf-84db-f77bc01c8bbc"> - <skos:member rdf:resource="http://localhost:8000/f4643b7d-2710-4aca-8892-c0eeed02dfe9"/> + <skos:member rdf:resource="http://localhost:8000/5f400d39-3b6b-4b8a-939b-4e49787c7444"/> <skos:member> <skos:Concept rdf:about="http://localhost:8000/18610abd-e0e5-48bb-9a7a-3830d75755d0"/> </skos:member> <skos:prefLabel xml:lang="en">{"id": "0e22b0b0-55fc-486f-8c32-0d545e00d05b", "value": "Name Types - Generic"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/5f400d39-3b6b-4b8a-939b-4e49787c7444"/> + <skos:member rdf:resource="http://localhost:8000/f4643b7d-2710-4aca-8892-c0eeed02dfe9"/> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/0ca18480-f5f2-41b2-b177-857726e5ecd7"> + <skos:Collection rdf:about="http://localhost:8000/079561dc-4c8f-40db-b658-c2fd5acdb3f2"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2e3e64b3-c802-4bbc-b284-5dbcd50ee4da"/> + <skos:Concept rdf:about="http://localhost:8000/0f419fca-4b00-422d-8353-0b24a18d7e8e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/977c662f-c1d9-4a35-b556-696517e312ec"/> + <skos:Concept rdf:about="http://localhost:8000/f8004550-b659-4647-bc2c-d969b68c5714"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982"/> + <skos:Concept rdf:about="http://localhost:8000/a7c83cb3-d116-4fb4-907c-c394fa3a63e0"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "a3b9d567-094d-4fc5-813b-ae10b7fbe956", "value": "Event Types - Observation"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/5da484cb-7537-43be-91cb-dc28c4369efb"> - <skos:member rdf:resource="http://localhost:8000/21121df1-9699-469d-924c-50f575c1ba83"/> - <skos:member rdf:resource="http://localhost:8000/f7dda933-9221-4555-a828-493962ab9411"/> - <skos:member rdf:resource="http://localhost:8000/3c86859c-7cb7-4595-9c88-1c4780c19ee0"/> - <skos:prefLabel xml:lang="en-us">{"id": "586f0415-e842-4ef2-9a82-85de6c166572", "value": "Digital File Types"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/662b53c0-2e26-4b87-a6d0-109b7f611e05"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/f24f177f-9849-48d9-ba67-621d577f71e9"> - <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> - <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> - <skos:prefLabel xml:lang="en">{"id": "759ccd32-4d00-42a7-906d-835efe7419cd", "value": "Identifier Types - Modification Event"}</skos:prefLabel> - <skos:member rdf:resource="http://localhost:8000/4b220b03-17eb-44b8-b3db-3fa46f23697d"/> - <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> - <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> - <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/b27ffefc-18a1-468f-8923-87530b6f5943"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/3e105447-bca4-4819-a674-e0773ce6df8e"/> + <skos:Concept rdf:about="http://localhost:8000/35159c58-3b68-4f2f-b6f6-10c2a873d5d7"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/bc5364c9-6179-429f-b643-88889e0291f1"/> + <skos:Concept rdf:about="http://localhost:8000/254161a9-5063-42e7-a718-05e1b6baebea"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "c0979a98-30c8-45fa-a7cb-6fef9e845d19", "value": "Professional Activity Technique"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f8b729da-4edc-4718-bcd3-569ddff655cd"/> + <skos:Concept rdf:about="http://localhost:8000/43a271b6-28f3-4524-b497-2d3e0902b6ca"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/639b8e22-9565-4fa4-92d8-50c28d1df17d"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/62f83f13-058e-4c73-a0b0-4f1816780f52"/> + <skos:Concept rdf:about="http://localhost:8000/0e95cff7-5df1-4281-a896-d3bbb295b11e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/48e08437-a15d-4f0f-adfc-77c1587f17b9"/> + <skos:Concept rdf:about="http://localhost:8000/1682fbb6-52a3-46be-9488-8e50d1804172"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "774e3420-4e2b-4191-b20d-935d9048b346", "value": "Event Types - Destruction Event"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/a3ddd46c-0aba-4ba0-a943-c9d793e1a9bc"/> + <skos:Concept rdf:about="http://localhost:8000/14197ada-900e-4783-94b7-454707317007"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "954e30aa-2761-4eaa-8b83-e22d0e9561a7", "value": "Contact Point Part Types"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/92d3e507-9d66-4122-9cd6-36430cf36e3c"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c0561406-3cd4-414d-9a64-d75abf6570be"/> + <skos:Concept rdf:about="http://localhost:8000/e77ea94b-c9c7-4e1f-879d-0916d1550d49"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/94343b71-a35a-4edd-8ffa-61c66ea8d417"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/725a5deb-3ed2-4b66-9979-8590ad6a6d6e"/> + <skos:Concept rdf:about="http://localhost:8000/265d5422-709a-4e7b-bc0a-88e4a87608f7"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "38763cc0-cc89-4055-8cfa-c016e3260472", "value": "Event Types - Set Addition"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ac3c260d-a77a-4ebb-8281-43282e53f0d2"/> + <skos:Concept rdf:about="http://localhost:8000/c1b53f0c-f372-4094-b0cb-5be66a44cefe"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c1046e53-a3c7-4e1e-b9a3-5051b5fb2e33"/> + <skos:Concept rdf:about="http://localhost:8000/f01f324e-a192-4aab-9bdb-9a2fd5c355a2"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "ab38ee10-7118-4fb8-a9fd-b5c865911395", "value": "Name Types - Contact Point"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/bbf81641-b1dd-4ddf-858d-7e8ca823d385"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/89d67de0-53ea-464e-8a28-448e6c267d87"/> + <skos:Concept rdf:about="http://localhost:8000/f89a0022-ac64-45fd-aa77-5aab89eb77d3"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/83dd1837-e399-469f-a073-cd76edff810c"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2f397086-f12b-4f43-881b-2f582b307968"/> + <skos:Concept rdf:about="http://localhost:8000/62e7809a-d1d3-4b1b-b242-e5c217503c77"/> </skos:member> + <skos:prefLabel xml:lang="en-us">{"id": "caedb825-7fab-430c-a6f6-b56864bb639b", "value": "TimeSpan Types - Overall"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5b8027bf-d85e-4801-8c9d-723f9b8d9fb5"/> + <skos:Concept rdf:about="http://localhost:8000/20d21d50-3650-44ed-8451-edee26ddc3f2"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2c7f2bb2-7527-438c-877b-90b1a5c67b83"/> + <skos:Concept rdf:about="http://localhost:8000/0f572454-3e77-4d9e-8ea2-774e28469f3a"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "73bca47e-28ef-4e37-ac29-936c92576edd", "value": "Event Types - Transfer of Custody"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/58d98835-1370-4665-88fb-230bed179b67"/> + <skos:Concept rdf:about="http://localhost:8000/c85793a7-86d1-45ae-92f9-913652c5b4c8"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/98555065-476d-454d-93e9-e9a03cd57a27"> - <skos:prefLabel xml:lang="en">{"id": "05558474-7b8e-4ccd-b54a-048600a1cde7", "value": "Production Techniques"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/51e3963f-00b3-4a62-8704-5c89822555de"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e15a5258-c4c6-479f-bd0b-30e83ec5a3f1"/> + <skos:Concept rdf:about="http://localhost:8000/493e8f0d-2e89-439a-9e8d-f1e813388f3b"/> </skos:member> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/f0b85b97-f3ae-41dd-ac4e-6f1e249a9dbb"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/546e7e19-54c6-44ed-8a81-3da08e275009"/> + <skos:Concept rdf:about="http://localhost:8000/56f1db33-4d80-4871-bcb5-63ed73c67fec"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/6585f0e4-712a-4b88-81c8-7d8732f9fa78"/> + <skos:Concept rdf:about="http://localhost:8000/84123513-2b77-4050-b1dc-4fcd1269d83f"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/a9590301-77dc-4b3d-aa36-d669d1e338e3"/> + <skos:prefLabel xml:lang="en">{"id": "5092f113-6237-4018-8b88-49b05ebf5f9b", "value": "Event Types - Production"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/26b5a060-eddb-4e4a-a98c-98abc6272296"/> + <skos:Concept rdf:about="http://localhost:8000/31ea3a41-4561-4e0e-af20-00157fe9715b"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "8b205ab2-f54e-4b70-b8de-2e86568a0ba9", "value": "Event Types - Set Removal"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/1ad61b29-95db-4885-a5ad-0d037e609488"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f899df4e-86eb-4579-aca8-d0cbadc31994"/> + <skos:Concept rdf:about="http://localhost:8000/57f9fcb6-bfe5-4556-b610-35eb17798e08"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/db62dc19-f356-410b-a309-474f5b59c767"/> + <skos:member rdf:resource="http://localhost:8000/11378278-d14a-49c7-afe6-3a7fbb60f347"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5bf90b5e-37eb-45af-b326-e4609208fcb0"/> + <skos:Concept rdf:about="http://localhost:8000/145c37a2-08d3-4f38-a4dc-7a141eb83bdc"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "8ab8d472-6bca-49f2-9d54-07de64528a90", "value": "Group Joining Types"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/268fd523-ce84-4e91-923b-01766b28f628"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/47e940a3-b483-41c9-9430-34c990014764"/> + <skos:Concept rdf:about="http://localhost:8000/ab17510a-b66c-455a-9f59-f4049ce522fa"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/a9e75b55-78b9-46a6-8cb2-aee3f5b5003e"> + <skos:Collection rdf:about="http://localhost:8000/92d3e507-9d66-4122-9cd6-36430cf36e3c"> + <skos:prefLabel xml:lang="en-us">{"id": "ab38ee10-7118-4fb8-a9fd-b5c865911395", "value": "Name Types - Contact Point"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/21bbcd2d-84b8-4604-96aa-add5e2e84588"/> + <skos:Concept rdf:about="http://localhost:8000/ac3c260d-a77a-4ebb-8281-43282e53f0d2"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "1bf91044-074d-4d05-a626-15f3923649b5", "value": "Event Types - Modification"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fa855ab3-215b-4b2e-b314-11364d9b6cb3"/> + <skos:Concept rdf:about="http://localhost:8000/c1046e53-a3c7-4e1e-b9a3-5051b5fb2e33"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/fbdf6081-0cfa-4594-aa96-1453e6b703d7"/> + <skos:Concept rdf:about="http://localhost:8000/725a5deb-3ed2-4b66-9979-8590ad6a6d6e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b5b561eb-9935-40bf-ade0-5a576299c3d9"/> + <skos:Concept rdf:about="http://localhost:8000/89d67de0-53ea-464e-8a28-448e6c267d87"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0159aa99-f9ef-43f6-a412-89df24b832bb"/> + <skos:Concept rdf:about="http://localhost:8000/c0561406-3cd4-414d-9a64-d75abf6570be"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/09f4f591-5654-4518-931b-7ab382fbc100"> + <skos:Collection rdf:about="http://localhost:8000/f4a87a34-8288-4cec-8e20-b28bd567ce0a"> + <skos:member rdf:resource="http://localhost:8000/5bc20189-e804-45e2-bb65-b8d6c0ceda3b"/> + <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> + <skos:member rdf:resource="http://localhost:8000/b7929847-1bff-4ca6-b3f3-488b4a37db81"/> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> + <skos:member rdf:resource="http://localhost:8000/fbc4dc2f-61f7-4d80-969d-d61fdd71de23"/> + <skos:member rdf:resource="http://localhost:8000/1e4e1d74-2c6b-4a09-adb9-fd1b314584e7"/> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> + <skos:member rdf:resource="http://localhost:8000/45eeaca7-077d-45d2-9a3b-34268ddd9ea6"/> + <skos:prefLabel xml:lang="en">{"id": "0f260524-d3f1-4960-845a-55ac2847d517", "value": "Identifier Types - Physical Thing"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/cde31c5b-8ab2-4fbe-9b55-11eed1d478f7"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/5d471d02-cb7e-48bf-8fba-c367ffde2c07"/> + <skos:Concept rdf:about="http://localhost:8000/dc5fe25b-6499-4b41-9ac8-08db72fcadf4"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/599b2119-6e98-430b-8ae6-61bcdce15a47"/> + <skos:Concept rdf:about="http://localhost:8000/e576485c-36c1-41e0-be6e-67dde3c52d9f"/> </skos:member> + <skos:member rdf:resource="http://localhost:8000/265d5422-709a-4e7b-bc0a-88e4a87608f7"/> + <skos:prefLabel xml:lang="en-us">{"id": "21b2e82b-c495-4661-8e75-a0b94cf93894", "value": "Event Types - Group Formation Events"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b759fb17-8868-45f9-889a-c4550b324e7c"/> + <skos:Concept rdf:about="http://localhost:8000/edcb51e8-6c01-440f-8ace-d707c352148a"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "7ae4edb3-d408-4b7e-9253-e4466b493daa", "value": "Object Types - Place"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/1b18d01e-b99b-48e5-8b7b-3b925659933b"> - <skos:prefLabel xml:lang="en-us">{"id": "c2bb2d80-99e7-4959-afba-94a997e1667c", "value": "Death types"}</skos:prefLabel> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/26d7ce44-20e5-44fb-a3c1-dfbe6bdd521b"> + <skos:Collection rdf:about="http://localhost:8000/b3d6e036-e788-4c85-a1f0-3aa35f0a82f2"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/54d2f763-34aa-4830-bc1d-f9ed627cf164"/> + <skos:Concept rdf:about="http://localhost:8000/5f9d4f70-ca98-4ff1-9c73-52877fbf83c3"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/66ac5ba5-c498-48fc-9a31-e132dce34883"/> + <skos:Concept rdf:about="http://localhost:8000/90cca4e4-b569-48bf-91de-b18a473d2deb"/> </skos:member> - <skos:prefLabel xml:lang="en-us">{"id": "6f96a76a-f8a3-4056-a91c-370583aee902", "value": "Event Types - Project"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/2f3da2d3-1a5e-4603-ae2c-e716319ee226"/> + <skos:Concept rdf:about="http://localhost:8000/b019227c-dcb0-4fa1-a187-b15a5613ffab"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/c2788105-d184-4192-b19f-7d504f43d7b0"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/8362bfe2-eb98-4445-a18d-609f1515879f"/> + <skos:Concept rdf:about="http://localhost:8000/ddac2d30-4d8e-4c37-bb13-a8a32ee7b924"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "93019df1-5bd9-4744-943c-807b8a938edf", "value": "Dimension Types - Digital"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b9721f25-a10c-4b55-85fc-ce03bb85b3a0"/> + <skos:Concept rdf:about="http://localhost:8000/93c026d3-22d5-45a3-847b-4767d49a5bbf"/> + </skos:member> + <skos:prefLabel xml:lang="en">{"id": "3c969683-725c-4b86-b6c0-15abf38b495c", "value": "Event Types - Professional Activity"}</skos:prefLabel> + <skos:member> + <skos:Concept rdf:about="http://localhost:8000/ac747098-0517-45b7-a311-808da9e96da6"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/3a8e8388-0bb9-42f2-bc77-fc5a1c640589"> + <skos:Collection rdf:about="http://localhost:8000/1b066f78-8d4b-4bb7-a83b-db15ae220811"> + <skos:prefLabel xml:lang="en-us">{"id": "7dfd94b9-1f11-497e-9f53-79347f22152f", "value": "Properties"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/324861e0-21c5-4bb4-9702-2ff478038a2e"/> + <skos:Concept rdf:about="http://localhost:8000/6b031c2a-888a-4637-b853-2c01dc38c132"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "f64cc82b-4ae3-4964-baa8-3cb21e62ad28", "value": "Method Types - Observation Technique"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/db261e02-be27-4a99-b9c1-875375103a1d"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/082b3c01-0c6a-43e6-bac5-7ce2bdbcdeec"/> + <skos:Concept rdf:about="http://localhost:8000/55949598-b28f-4e42-a286-1a1e9871fb09"/> </skos:member> - <skos:member rdf:resource="http://localhost:8000/478c39e7-9d07-4f5d-847d-ac887c2c4469"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e3a980ee-faa4-4ac9-b0cd-c567ce0d22ce"/> + <skos:Concept rdf:about="http://localhost:8000/f16e685d-fa8a-4670-8707-99448fe2a791"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e683fc2f-c24f-4cad-9e52-582f960de82e"/> + <skos:Concept rdf:about="http://localhost:8000/210c4d7a-e17a-4f3d-b684-bf8cd803dcfa"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/aec56d59-9292-42d6-b18e-1dd260ff446f"/> + <skos:Concept rdf:about="http://localhost:8000/cf73b0a9-ecca-471c-ade9-e4fbcd404f63"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/80249c96-22e0-4ef5-bc2c-711ef1dbf6ad"> - <skos:prefLabel xml:lang="en">{"id": "e295dce5-c9af-4bdf-a6db-3f53151d973e", "value": "Name Types"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/9830adca-4ef8-4088-8cff-cae89a8af60c"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/0e5d03f3-613c-4e36-9783-e93e317b56a6"/> + <skos:Concept rdf:about="http://localhost:8000/c1684495-03dd-4070-9921-a050e6a7a632"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "fef1379a-adac-4ed3-a7fd-e6ac660989f4", "value": "Object Types - Visual Work"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/14aaf84d-4bd1-40c4-8f6e-6e0e368a49d4"/> + <skos:Concept rdf:about="http://localhost:8000/34eae943-67d8-42f8-abeb-6131b2a95b43"/> </skos:member> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/6e3bd268-68bc-4464-aad0-82eabfd5a78f"> - <skos:prefLabel xml:lang="en">{"id": "7c3d8286-d377-439d-aff3-a5c4c8a15648", "value": "Event Types - Sampling Activity"}</skos:prefLabel> + <skos:prefLabel xml:lang="en-us">{"id": "f76823a6-f9e1-484e-abf4-b78d81b47a55", "value": "Person Types - Profession"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f41ad781-5aa6-46c6-8daf-7598ffcd4aae"> - <skos:member rdf:resource="http://localhost:8000/cd3d2406-1ae5-42f0-98f9-43e965ae5d38"/> - <skos:member rdf:resource="http://localhost:8000/b9cb3ead-ae6d-4f04-9551-e390defc35f2"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/b1bcc89f-22bd-42d3-bfc8-e694d5f8d460"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/e80c9f10-5bb5-45b9-b7c5-daa7f81f7211"> - <skos:member rdf:resource="http://localhost:8000/07591d48-bad3-4fea-972f-584394cefeb1"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/d9c6e689-f74b-4494-b8d4-cd6cc78297c9"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/4a4050e9-00a8-42f5-9c7e-cf754060cd95"> + <skos:Collection rdf:about="http://localhost:8000/696fd77f-0181-4d00-9372-b395b2fde9b3"> + <skos:prefLabel xml:lang="en-us">{"id": "ee51fac5-6b9c-479b-8aed-602926965ac2", "value": "Monetary Amount types (not currencies)"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/5d2357bf-4ac0-407f-ae2a-c8ac35dca0e9"> + <skos:member rdf:resource="http://localhost:8000/e0b23285-bd55-43d8-9cef-f28df2e2a44e"/> + <skos:member rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> + <skos:member rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> + <skos:member rdf:resource="http://localhost:8000/2ddfe0e3-e6de-4d0c-a521-389cbeb24955"/> + <skos:member rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> + <skos:member rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> + <skos:prefLabel xml:lang="en">{"id": "0fc88287-d904-429f-9b88-7f8b6cfe1628", "value": "Statement Types - Digital Resource"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"/> + <skos:member rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/0f8d86b6-d2ae-45c4-927c-c07718fab46e"> + <skos:prefLabel xml:lang="en-us">{"id": "fb3f94af-bcc1-487a-a959-f2c9a2bc48f6", "value": "Dissolution types"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/5f6772d0-149d-42b1-9e76-56fe018d7380"> + <skos:prefLabel xml:lang="en-us">{"id": "90d58766-da83-4e7a-ba0f-7f79e7a30e8a", "value": "Activity Identifier Types"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/603141b9-5dae-462c-9b6a-4e418ec7772b"> + <skos:prefLabel xml:lang="en-us">{"id": "3b277f10-08de-4037-aac4-6026925cf3a7", "value": "Motivation"}</skos:prefLabel> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/f24f177f-9849-48d9-ba67-621d577f71e9"> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> + <skos:prefLabel xml:lang="en">{"id": "759ccd32-4d00-42a7-906d-835efe7419cd", "value": "Identifier Types - Modification Event"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> + <skos:member rdf:resource="http://localhost:8000/4b220b03-17eb-44b8-b3db-3fa46f23697d"/> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/3a8e8388-0bb9-42f2-bc77-fc5a1c640589"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/4b2ed1f9-3b31-47c1-975e-1e114f0fe099"/> + <skos:Concept rdf:about="http://localhost:8000/e683fc2f-c24f-4cad-9e52-582f960de82e"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/32c7ac9c-9ab0-445b-b0c7-e08f65850356"/> + <skos:Concept rdf:about="http://localhost:8000/082b3c01-0c6a-43e6-bac5-7ce2bdbcdeec"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "34dbd6f0-7ecf-4264-96e8-e0cc28901a6e", "value": "Event Types - Move "}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/1230c0d7-ed5b-4f97-b54d-74bda170c7e3"> + <skos:member rdf:resource="http://localhost:8000/478c39e7-9d07-4f5d-847d-ac887c2c4469"/> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f4ea3658-51df-4475-aaf6-9bbdf384ed0c"/> + <skos:Concept rdf:about="http://localhost:8000/e3a980ee-faa4-4ac9-b0cd-c567ce0d22ce"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ce4ffb8a-597e-47c5-8d60-96f17fc92bb3"/> + <skos:Concept rdf:about="http://localhost:8000/aec56d59-9292-42d6-b18e-1dd260ff446f"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "4d42cce9-8169-4d08-86a1-6ec6eed4571f", "value": "Object Types - Digital Object Service"}</skos:prefLabel> - </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/74760cd2-f255-474c-87d5-2e1c5394d11e"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/f3725a5c-4f37-4142-b252-86bdd125988a"/> + <skos:Concept rdf:about="http://localhost:8000/324861e0-21c5-4bb4-9702-2ff478038a2e"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "77b43d4c-bde4-474e-be81-9167ad536d2b", "value": "Curation Types"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "f64cc82b-4ae3-4964-baa8-3cb21e62ad28", "value": "Method Types - Observation Technique"}</skos:prefLabel> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/52fbf9cc-3027-4d5c-9439-1856bb6e68a5"> + <skos:Collection rdf:about="http://localhost:8000/4096365e-4fe7-412d-906c-16f3d356e8be"> + <skos:member rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> + <skos:member rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> + <skos:member rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> + <skos:member rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> + <skos:member rdf:resource="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"/> + <skos:prefLabel xml:lang="en">{"id": "ee42f7ad-b7ab-4eb5-8d3d-91f76f6240e2", "value": "Identifier Types - Generic"}</skos:prefLabel> + <skos:member rdf:resource="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"/> + </skos:Collection> + <skos:Collection rdf:about="http://localhost:8000/26d7ce44-20e5-44fb-a3c1-dfbe6bdd521b"> + <skos:prefLabel xml:lang="en-us">{"id": "6f96a76a-f8a3-4056-a91c-370583aee902", "value": "Event Types - Project"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/b727e4b6-3169-457d-ab05-5991bacb03cd"/> + <skos:Concept rdf:about="http://localhost:8000/54d2f763-34aa-4830-bc1d-f9ed627cf164"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "d59eaf34-8a01-47ad-9ad8-10560d135ebc", "value": "Visual Work Types - Subject"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/d8de88fc-19c6-4129-bcc2-7bb3ff8e841a"/> + <skos:Concept rdf:about="http://localhost:8000/66ac5ba5-c498-48fc-9a31-e132dce34883"/> </skos:member> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/ce7ad2f6-e99e-43b8-be84-98e4272c803f"/> + <skos:Concept rdf:about="http://localhost:8000/2f3da2d3-1a5e-4603-ae2c-e716319ee226"/> </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/73a6d800-669d-48b7-a1fb-2ecdaa0a4827"> - <skos:prefLabel xml:lang="en-us">{"id": "6d4214ef-21e6-491b-af96-49e5745f4c0f", "value": "Object Part Types"}</skos:prefLabel> + <skos:Collection rdf:about="http://localhost:8000/c53d3557-e033-4aa1-b020-0dc2b690025f"> + <skos:prefLabel xml:lang="en-us">{"id": "194b6329-aafe-459a-abd1-bcc9d7d2c981", "value": "TimeSpan types"}</skos:prefLabel> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/e8552ef1-a840-41c0-8653-37ced235c300"> - <skos:prefLabel xml:lang="en-us">{"id": "afeb1876-2e40-47be-984f-aab4f44f2ce3", "value": "Birth types"}</skos:prefLabel> + <skos:Collection rdf:about="http://localhost:8000/1b18d01e-b99b-48e5-8b7b-3b925659933b"> + <skos:prefLabel xml:lang="en-us">{"id": "c2bb2d80-99e7-4959-afba-94a997e1667c", "value": "Death types"}</skos:prefLabel> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/3e46a547-fa4b-418d-bca7-18b2a5a50536"> + <skos:Collection rdf:about="http://localhost:8000/c2788105-d184-4192-b19f-7d504f43d7b0"> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/9d30b6a3-e948-4a87-97a8-f145984694bb"> - <skos:member rdf:resource="http://localhost:8000/96c6ba52-ac8b-4c26-a020-a8199a851e42"/> - <skos:member rdf:resource="http://localhost:8000/cbc2485e-0e8b-4884-9045-e764078bbbb2"/> - <skos:member rdf:resource="http://localhost:8000/5b5b8456-900a-4a9b-8382-ebb9390d5fc8"/> - <skos:member rdf:resource="http://localhost:8000/b1a3bc7a-441a-48c8-9cfa-d37627b021a5"/> - <skos:member rdf:resource="http://localhost:8000/07edfe46-dc43-40ab-aeec-3103e2673bab"/> - <skos:member rdf:resource="http://localhost:8000/94bb858b-3d17-41c7-a145-d70fda1822c5"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/8362bfe2-eb98-4445-a18d-609f1515879f"/> </skos:member> - <skos:prefLabel xml:lang="en">{"id": "efb3c48f-3c15-4399-a220-2140c9474f10", "value": "Visual Work Techniques"}</skos:prefLabel> <skos:member> - <skos:Concept rdf:about="http://localhost:8000/30c6d071-88cf-4778-912b-b04bd4b856cd"> - <skos:member rdf:resource="http://localhost:8000/879c7e4e-2bce-490c-bb05-bf9ac6c3fe28"/> - <skos:member rdf:resource="http://localhost:8000/b2a36d1a-3f90-4b23-a35d-837482891be1"/> - <skos:member rdf:resource="http://localhost:8000/b96656eb-094b-48c3-a491-148df2d5fec0"/> - <skos:member rdf:resource="http://localhost:8000/f74ebcee-1474-423a-98e0-eec4a6f70599"/> - </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/b9721f25-a10c-4b55-85fc-ce03bb85b3a0"/> </skos:member> + <skos:prefLabel xml:lang="en">{"id": "93019df1-5bd9-4744-943c-807b8a938edf", "value": "Dimension Types - Digital"}</skos:prefLabel> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/603141b9-5dae-462c-9b6a-4e418ec7772b"> - <skos:prefLabel xml:lang="en-us">{"id": "3b277f10-08de-4037-aac4-6026925cf3a7", "value": "Motivation"}</skos:prefLabel> + <skos:Collection rdf:about="http://localhost:8000/74760cd2-f255-474c-87d5-2e1c5394d11e"> + <skos:prefLabel xml:lang="en">{"id": "77b43d4c-bde4-474e-be81-9167ad536d2b", "value": "Curation Types"}</skos:prefLabel> + <skos:member> + <skos:Concept rdf:about="http://localhost:8000/f3725a5c-4f37-4142-b252-86bdd125988a"/> + </skos:member> </skos:Collection> - <skos:Collection rdf:about="http://localhost:8000/0f8d86b6-d2ae-45c4-927c-c07718fab46e"> - <skos:prefLabel xml:lang="en-us">{"id": "fb3f94af-bcc1-487a-a959-f2c9a2bc48f6", "value": "Dissolution types"}</skos:prefLabel> + <skos:Collection rdf:about="http://localhost:8000/73a6d800-669d-48b7-a1fb-2ecdaa0a4827"> + <skos:prefLabel xml:lang="en-us">{"id": "6d4214ef-21e6-491b-af96-49e5745f4c0f", "value": "Object Part Types"}</skos:prefLabel> </skos:Collection> - <skos:Concept rdf:about="http://localhost:8000/3044ebe4-8d5f-446a-b618-5f39fbfc2364"/> + <skos:Collection rdf:about="http://localhost:8000/6bdfcec3-0748-4380-befb-b75a4634d87e"> + <skos:prefLabel xml:lang="en-us">{"id": "e09f2ad5-c20d-4678-b478-071675d15ece", "value": "Payment types"}</skos:prefLabel> + </skos:Collection> + <skos:Concept rdf:about="http://localhost:8000/cd3d2406-1ae5-42f0-98f9-43e965ae5d38"/> + <skos:Concept rdf:about="http://localhost:8000/d29562a6-93e2-409e-9bb4-bcc58077113f"/> + <skos:Concept rdf:about="http://localhost:8000/b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982"/> + <skos:Concept rdf:about="http://localhost:8000/977c662f-c1d9-4a35-b556-696517e312ec"/> + <skos:Concept rdf:about="http://localhost:8000/8201eb9f-7936-4220-8403-074ce3e9ea48"/> + <skos:Concept rdf:about="http://localhost:8000/9ef07691-f751-415a-805e-6fc52fbdb5a1"/> + <skos:Concept rdf:about="http://localhost:8000/94bb858b-3d17-41c7-a145-d70fda1822c5"/> + <skos:Concept rdf:about="http://localhost:8000/a7e9a77a-005b-4253-8abc-7f3b944a4c0c"/> + <skos:Concept rdf:about="http://localhost:8000/5b5b8456-900a-4a9b-8382-ebb9390d5fc8"/> + <skos:Concept rdf:about="http://localhost:8000/f74ebcee-1474-423a-98e0-eec4a6f70599"/> + <skos:Concept rdf:about="http://localhost:8000/cb2a1f81-43a9-4c99-be9b-1624501a8c29"/> + <skos:Concept rdf:about="http://localhost:8000/c3bf842e-3c29-48da-9908-b4fc844ba2a6"/> + <skos:Concept rdf:about="http://localhost:8000/eedcb6df-656b-4a3b-b808-be00a7a4daf9"/> + <skos:Concept rdf:about="http://localhost:8000/cf3ccbc1-5524-4c0b-a706-61dd71554742"/> <skos:Concept rdf:about="http://localhost:8000/3c4df3ee-bf83-4b3e-b2d1-0dc42baf6088"> - <skos:member> - <skos:Concept rdf:about="http://localhost:8000/cf3ccbc1-5524-4c0b-a706-61dd71554742"/> - </skos:member> - <skos:member> - <skos:Concept rdf:about="http://localhost:8000/c3bf842e-3c29-48da-9908-b4fc844ba2a6"/> - </skos:member> + <skos:member rdf:resource="http://localhost:8000/c3bf842e-3c29-48da-9908-b4fc844ba2a6"/> + <skos:member rdf:resource="http://localhost:8000/cf3ccbc1-5524-4c0b-a706-61dd71554742"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b8a8e087-6e8f-41db-98ff-202785afddbb"/> - <skos:Concept rdf:about="http://localhost:8000/96c6ba52-ac8b-4c26-a020-a8199a851e42"/> - <skos:Concept rdf:about="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"/> - <skos:Concept rdf:about="http://localhost:8000/fa11cdad-f45d-41f2-bac0-8b8045cff74b"/> - <skos:Concept rdf:about="http://localhost:8000/07edfe46-dc43-40ab-aeec-3103e2673bab"/> - <skos:Concept rdf:about="http://localhost:8000/eedcb6df-656b-4a3b-b808-be00a7a4daf9"/> - <skos:Concept rdf:about="http://localhost:8000/804e24c6-f30b-4675-b4d4-49b0897b589c"/> - <skos:Concept rdf:about="http://localhost:8000/b96a5716-1e25-4697-b5f9-3afad1627ed4"/> + <skos:Concept rdf:about="http://localhost:8000/cbc2485e-0e8b-4884-9045-e764078bbbb2"/> + <skos:Concept rdf:about="http://localhost:8000/b1a3bc7a-441a-48c8-9cfa-d37627b021a5"/> <skos:Concept rdf:about="http://localhost:8000/b9cb3ead-ae6d-4f04-9551-e390defc35f2"/> - <skos:Concept rdf:about="http://localhost:8000/f74ebcee-1474-423a-98e0-eec4a6f70599"/> - <skos:Concept rdf:about="http://localhost:8000/106feb03-935f-49c4-8e15-c30ee42adc66"/> - <skos:Concept rdf:about="http://localhost:8000/07591d48-bad3-4fea-972f-584394cefeb1"/> - <skos:Concept rdf:about="http://localhost:8000/a7e9a77a-005b-4253-8abc-7f3b944a4c0c"/> <skos:Concept rdf:about="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"/> + <skos:Concept rdf:about="http://localhost:8000/fa1d6a48-4e82-4d23-8747-c4fa10f3301a"/> + <skos:Concept rdf:about="http://localhost:8000/b96a5716-1e25-4697-b5f9-3afad1627ed4"/> + <skos:Concept rdf:about="http://localhost:8000/106feb03-935f-49c4-8e15-c30ee42adc66"/> + <skos:Concept rdf:about="http://localhost:8000/3044ebe4-8d5f-446a-b618-5f39fbfc2364"/> + <skos:Concept rdf:about="http://localhost:8000/804e24c6-f30b-4675-b4d4-49b0897b589c"/> + <skos:Concept rdf:about="http://localhost:8000/07edfe46-dc43-40ab-aeec-3103e2673bab"/> + <skos:Concept rdf:about="http://localhost:8000/96c6ba52-ac8b-4c26-a020-a8199a851e42"/> <skos:Concept rdf:about="http://localhost:8000/b2a36d1a-3f90-4b23-a35d-837482891be1"/> - <skos:Concept rdf:about="http://localhost:8000/8201eb9f-7936-4220-8403-074ce3e9ea48"/> - <skos:Concept rdf:about="http://localhost:8000/cd3d2406-1ae5-42f0-98f9-43e965ae5d38"/> + <skos:Concept rdf:about="http://localhost:8000/879c7e4e-2bce-490c-bb05-bf9ac6c3fe28"/> + <skos:Concept rdf:about="http://localhost:8000/091a244e-6532-4fc7-8b70-63364c4a4569"/> + <skos:Concept rdf:about="http://localhost:8000/07591d48-bad3-4fea-972f-584394cefeb1"/> <skos:Concept rdf:about="http://localhost:8000/e3193f72-3a4c-4d54-8294-6a1af433a886"/> - <skos:Concept rdf:about="http://localhost:8000/5b5b8456-900a-4a9b-8382-ebb9390d5fc8"/> - <skos:Concept rdf:about="http://localhost:8000/cbc2485e-0e8b-4884-9045-e764078bbbb2"/> - <skos:Concept rdf:about="http://localhost:8000/b1a3bc7a-441a-48c8-9cfa-d37627b021a5"/> <skos:Concept rdf:about="http://localhost:8000/b96656eb-094b-48c3-a491-148df2d5fec0"/> + <skos:Concept rdf:about="http://localhost:8000/9b1c5d1b-7ff9-400a-acde-c9a081eff7e1"/> <skos:Concept rdf:about="http://localhost:8000/7dfe3f0a-333c-45e6-8751-840841142bb1"/> - <skos:Concept rdf:about="http://localhost:8000/879c7e4e-2bce-490c-bb05-bf9ac6c3fe28"/> - <skos:Concept rdf:about="http://localhost:8000/cb2a1f81-43a9-4c99-be9b-1624501a8c29"/> - <skos:Concept rdf:about="http://localhost:8000/d29562a6-93e2-409e-9bb4-bcc58077113f"/> - <skos:Concept rdf:about="http://localhost:8000/94bb858b-3d17-41c7-a145-d70fda1822c5"/> + <skos:Concept rdf:about="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"/> + <skos:Concept rdf:about="http://localhost:8000/fa11cdad-f45d-41f2-bac0-8b8045cff74b"/> <skos:Concept rdf:about="http://localhost:8000/afbf17a2-4e83-4de6-963a-b985dc0f7c35"/> <skos:Concept rdf:about="http://localhost:8000/1bd9f61f-fbc6-4b0d-9107-0e5b1ed9b277"/> + <skos:Concept rdf:about="http://localhost:8000/d5c7a90b-fd87-4d2c-86f8-01909795e73e"/> + <skos:Concept rdf:about="http://localhost:8000/b8a8e087-6e8f-41db-98ff-202785afddbb"/> + <skos:Concept rdf:about="http://localhost:8000/2e3e64b3-c802-4bbc-b284-5dbcd50ee4da"/> </rdf:RDF> diff --git a/arches_for_science/pkg/reference_data/concepts/disco_aat_thesaurus.xml b/arches_for_science/pkg/reference_data/concepts/disco_aat_thesaurus.xml index 693667ae6..cbf19af2a 100644 --- a/arches_for_science/pkg/reference_data/concepts/disco_aat_thesaurus.xml +++ b/arches_for_science/pkg/reference_data/concepts/disco_aat_thesaurus.xml @@ -1,6133 +1,6144 @@ <?xml version="1.0" encoding="utf-8"?> <rdf:RDF xmlns:skos="http://www.w3.org/2004/02/skos/core#" + xmlns:arches="http://localhost:8000/" xmlns:dcterms="http://purl.org/dc/terms/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:arches="http://localhost:8000/" > - <skos:Concept rdf:about="http://localhost:8000/d7562d63-8f82-4c88-8b43-f5d81044721d"> + <skos:Concept rdf:about="http://localhost:8000/21121df1-9699-469d-924c-50f575c1ba83"> + <skos:scopeNote xml:lang="de">{"id": "4d6d75c9-f626-4ba2-b5d2-10333d701179", "value": "Hypertextdokument mit Text oder Bildern, das \u00fcber das World Wide Web abrufbar ist und auf einer Website gehostet wird."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "174573b6-6ebf-4c68-907e-8cc8fa6e23bd", "value": "Web pages (documents)"}</skos:prefLabel> <skos:inScheme> <skos:ConceptScheme rdf:about="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"> - <skos:hasTopConcept rdf:resource="http://localhost:8000/25b3ec4f-9e1f-43d1-82fb-c6cc9325c2e4"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/61699f66-0d46-4452-b168-ba989809e77e"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/9761c5b7-5d6e-4dd0-9845-2a53d1456091"/> <skos:hasTopConcept rdf:resource="http://localhost:8000/4ca81629-eea8-4c65-a963-0012a9a33d7a"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/e5909f90-de56-40ed-8262-2b0b9ed629f2"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/43201e0e-3be9-445b-9b95-337b0a76094c"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/04823117-0f18-42b6-b42e-f9f51bde4c16"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/86678b32-84f0-4506-8161-a2c49fae74ee"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/fd958d6c-1ad9-4e51-b6f0-33d23d04fbe0"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/0c67ce57-dcd1-4cac-8e4c-899acacfe7d9"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/0f3d6d10-5daf-45af-ba4d-c1543ba83374"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/e4ff9005-d58f-45b4-8dd0-6178fe8f4da9"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/42f66db6-b76f-416a-8fd8-5dc3f5d3c171"/> <skos:hasTopConcept rdf:resource="http://localhost:8000/7764512c-494b-46e5-ad33-223836c8518b"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/04823117-0f18-42b6-b42e-f9f51bde4c16"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/43201e0e-3be9-445b-9b95-337b0a76094c"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/1fc2970f-60b4-46fe-82e8-a874a978e6a3"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/ecb492a0-ece2-44cc-be2f-2773ba314d0d"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/c19aa471-036d-4828-8ae8-1a9c8c7792c6"/> <skos:hasTopConcept rdf:resource="http://localhost:8000/f1e7c733-a149-4ffe-8f8e-620c852f4131"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/4157e908-660c-45cc-a20f-06a3841b1543"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/e4ff9005-d58f-45b4-8dd0-6178fe8f4da9"/> + <dcterms:identifier xml:lang="en">{"id": "ddbd5d3a-ef87-41cb-84ba-5877bd1b596e", "value": "http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"}</dcterms:identifier> + <skos:hasTopConcept rdf:resource="http://localhost:8000/ebbc6d1b-20b1-4f39-b2b0-1881c1187e1b"/> <skos:hasTopConcept rdf:resource="http://localhost:8000/12a85b63-5210-4300-ac46-bb8d03bc98ec"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/67d2e2c0-4a05-41fa-8e22-c8fda35ea76e"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/999692fa-3c5f-4d4a-8efa-44e792c45592"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/ecb492a0-ece2-44cc-be2f-2773ba314d0d"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/1fc2970f-60b4-46fe-82e8-a874a978e6a3"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/955f7d60-f1d7-4077-8765-1eb423fe7dcc"/> <skos:hasTopConcept rdf:resource="http://localhost:8000/75de259d-80da-4593-b175-fea47bad942c"/> - <dcterms:title xml:lang="en-us">{"id": "2298bb79-cb40-4d6f-be92-89de824e15b3", "value": "AAT Entries"}</dcterms:title> - <dcterms:identifier xml:lang="en">{"id": "ddbd5d3a-ef87-41cb-84ba-5877bd1b596e", "value": "http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"}</dcterms:identifier> - <skos:hasTopConcept rdf:resource="http://localhost:8000/42f66db6-b76f-416a-8fd8-5dc3f5d3c171"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/0f3d6d10-5daf-45af-ba4d-c1543ba83374"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/fd958d6c-1ad9-4e51-b6f0-33d23d04fbe0"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/5bd3fd11-b460-42d1-ac1e-46eb1f86e9f4"/> <skos:hasTopConcept rdf:resource="http://localhost:8000/81c81e47-be9c-493e-915f-8e5a2338d7c9"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/fb9397d4-06fa-4f60-8493-b36198f6bceb"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/ebbc6d1b-20b1-4f39-b2b0-1881c1187e1b"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/999692fa-3c5f-4d4a-8efa-44e792c45592"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/67d2e2c0-4a05-41fa-8e22-c8fda35ea76e"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/86678b32-84f0-4506-8161-a2c49fae74ee"/> <skos:hasTopConcept rdf:resource="http://localhost:8000/0d8ce64c-f83c-4994-bac5-21b33ae4055e"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/47e23fb9-a593-433e-a1b4-32fa1f5576d1"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/9266b424-a051-47ce-8743-1b5ae9a20ed7"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/c19aa471-036d-4828-8ae8-1a9c8c7792c6"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/9a0fb1f3-0d1b-480a-ae3d-382d5bc4256c"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/5bd3fd11-b460-42d1-ac1e-46eb1f86e9f4"/> - <skos:hasTopConcept rdf:resource="http://localhost:8000/84a1db8c-eb26-445f-be42-48ed6dc5b3fd"/> <skos:hasTopConcept rdf:resource="http://localhost:8000/c9457185-7085-4ea2-a152-122d1bb28f12"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/84a1db8c-eb26-445f-be42-48ed6dc5b3fd"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/0c67ce57-dcd1-4cac-8e4c-899acacfe7d9"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/25b3ec4f-9e1f-43d1-82fb-c6cc9325c2e4"/> <skos:hasTopConcept rdf:resource="http://localhost:8000/87da0b3d-f6b7-4e40-aea3-15a0d7dc7878"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/fb9397d4-06fa-4f60-8493-b36198f6bceb"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/61699f66-0d46-4452-b168-ba989809e77e"/> + <dcterms:title xml:lang="en-us">{"id": "2298bb79-cb40-4d6f-be92-89de824e15b3", "value": "AAT Entries"}</dcterms:title> + <skos:hasTopConcept rdf:resource="http://localhost:8000/9266b424-a051-47ce-8743-1b5ae9a20ed7"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/4157e908-660c-45cc-a20f-06a3841b1543"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/9a0fb1f3-0d1b-480a-ae3d-382d5bc4256c"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/9761c5b7-5d6e-4dd0-9845-2a53d1456091"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/e5909f90-de56-40ed-8262-2b0b9ed629f2"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/47e23fb9-a593-433e-a1b4-32fa1f5576d1"/> + <skos:hasTopConcept rdf:resource="http://localhost:8000/955f7d60-f1d7-4077-8765-1eb423fe7dcc"/> </skos:ConceptScheme> </skos:inScheme> - <skos:scopeNote xml:lang="en">{"id": "9509ffba-4a7f-4204-ab7e-723769d6e973", "value": "Refers to the culture of the modern nation of Poland, or in general to the cultures that have occupied the same area in central Europe south of the Baltic Sea."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "c74c933f-628b-483d-b0f2-74bfe14ce9ef", "value": "Polish (culture)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "9ae55fd3-8a53-4063-84af-e00646316f9e", "value": "http://vocab.getty.edu/aat/300111204"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c1684495-03dd-4070-9921-a050e6a7a632"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "e46cb62d-dab5-48c8-986a-70633777099b", "value": "project managers"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "23e153a5-6481-472c-8822-885c2cf211d8", "value": "People who oversee, coordinate, and otherwise projects, generally as a professional position."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "0d3233ce-04f4-46a6-b9e8-204ef0368677", "value": "http://vocab.getty.edu/aat/300417573"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/9038c161-43ac-4567-abae-9bb546e7898a"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d4120aaa-1e50-48f1-999e-54f4d0806d4c", "value": "The activity of cutting with a quick and heavy blow with a hewing, hacking instrument, such as an ax, cleaver, sword, or the like."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "5419d36e-77e6-4827-be7e-5accd29e8570", "value": "http://vocab.getty.edu/aat/300379799"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "7f1e80ed-055d-49f3-aba7-a2084c3e0df2", "value": "chopping"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e1e98abd-d69c-4323-a01f-697c28dcecab"> - <skos:prefLabel xml:lang="en">{"id": "62fd6575-2a34-4f36-9b64-3026156cc0c8", "value": "acrylic (fiber)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "c16271a2-6424-484e-9f03-0f89c683c506", "value": "Synthetic fiber in which the fiber forming substance is composed of at least 85% acrylic resin."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "50693633-ad29-43d8-a0c4-0aa62f1fb323", "value": "http://vocab.getty.edu/aat/300386559"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c7954ef2-0053-400b-997c-d56a9f64940b"> - <skos:prefLabel xml:lang="fr">{"id": "911bc483-3eba-44b9-92d3-4119bf7db0d7", "value": "chinois"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "8f84f7e5-9606-4cc6-b73a-7aee7c8abbd9", "value": "http://vocab.getty.edu/aat/300388113"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "02a71d90-26a4-4271-bf83-43a570eab49f", "value": "Chinese (language)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "8ad1af57-1f3d-43d4-9f91-641dcf974ee6", "value": "Chinesisch"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4bb2e7b9-54aa-481e-abbe-a25381edef0e"> - <dcterms:identifier xml:lang="en">{"id": "b7efdfe7-978a-43b1-8667-90fedc198fee", "value": "http://vocab.getty.edu/aat/300010439"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "3c6e3c54-4041-4418-99c3-e9dff9f3e1fe", "value": "argile"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "abfec798-acd8-46d4-9077-9fe03365a6a5", "value": "clay"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "a7124ab5-f138-4e05-807c-074c6c5e1074", "value": "Naturally occurring sediments that are produced by chemical actions resulting during the weathering of rocks. It is often the term applied to all earths that form a paste with water and harden when heated."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/d8de88fc-19c6-4129-bcc2-7bb3ff8e841a"> - <skos:scopeNote xml:lang="en">{"id": "7475b719-d1b3-4a7b-9c14-d4ef1b249d0a", "value": "Literary genre based on the Biblical New Testament, comprising the stories and body of religious doctrine described as having been taught by Jesus and apostles."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "ea271143-e319-4b6f-b6b4-0d7d33bf0b9e", "value": "http://vocab.getty.edu/aat/300404696"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "11762e7f-9797-44bd-b64f-8b2b1d6cabe7", "value": "gospels"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/43a271b6-28f3-4524-b497-2d3e0902b6ca"> - <dcterms:identifier xml:lang="en">{"id": "81f9141d-a52f-40a9-a50a-fdd3bd448857", "value": "http://vocab.getty.edu/aat/300252414"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "86254734-81d4-47d9-9e36-ac0b8db41165", "value": "blanching (clouding condition)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "ce9449b6-1d66-4c6e-a127-5f9919c6b4fc", "value": "A lightened or whitish area in layer of paint or varnish layer due to microscopic defects (voids, granules, etc.) that develop within a film layer as it ages. The defects can scatter light making the affected area appear lighter than the surrounding areas. It is distinguished from bloom, which is a surface phenomenon."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "c5ab7c38-3bd4-4967-b80f-3cee29619e7a", "value": "Hypertext documents of text or images that are accessible via the World Wide Web, hosted on a web site."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "699496ba-f839-4994-805e-ac97a474b536", "value": "http://vocab.getty.edu/aat/300264578"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "83021bad-6ca3-43a3-a39a-c47c9534abcc", "value": "Webseite"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/a3ddd46c-0aba-4ba0-a943-c9d793e1a9bc"> - <skos:prefLabel xml:lang="en">{"id": "8eaed662-c397-430d-b3e1-f7ff3c885e9f", "value": "postcodes"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "68722445-85c1-45ff-ae1e-46b59d2fbd42", "value": "http://vocab.getty.edu/aat/300419274"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/f147d843-7622-4109-bd73-c7fb05f1adea"> + <skos:prefLabel xml:lang="en">{"id": "9886efe9-c323-49d5-8d32-5c2a214e5630", "value": "sample description"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "b16803bd-dc20-4dc3-a357-b30fdcaf0de1", "value": "Numeric or alphanumeric codes included in mailing addresses to facilitate the sorting and delivery of mail."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "3294e9c2-cbe7-4354-8f61-f3cf55986017", "value": "http://localhost:8000/f147d843-7622-4109-bd73-c7fb05f1adea"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/d0705d15-91a1-4ac3-b298-94a554b5ef77"> - <dcterms:identifier xml:lang="en">{"id": "e8c0f803-0d29-4529-831b-a7ad959db16e", "value": "http://localhost:8000/d0705d15-91a1-4ac3-b298-94a554b5ef77"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/7860b0f4-b777-40e9-a320-6dde997fe2d6"> + <skos:prefLabel xml:lang="en">{"id": "f9cbb63f-ea9c-4e1d-a971-348480a75e96", "value": "kilobytes"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "4bd2ada0-068e-45b0-a6b0-193e7d96d347", "value": "http://vocab.getty.edu/aat/300265870"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "7d53bdf8-13f7-4808-8b51-34c54518b775", "value": "ULAN"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "54b99725-2fa1-4fd7-864b-a14fa661c0e2", "value": "A unit of measure for information or computer storage representing 1024 or 1000 bytes. The most commonly referred to unit of computer file size."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"> - <skos:prefLabel xml:lang="en">{"id": "768b2f11-26e4-4ada-a699-7a8d3fe9fe5a", "value": "internal identifier"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "388b65d2-28c1-45e4-bad8-e0fdc071af0f", "value": "Numeric, alphanumeric, or other identifying codes of various types assigned to an art object, book, other item, or group of works by the repository that holds that item or group. Any item or group in a repository may have multiple types of repository numbers. For numbers specifically assigned at the time of accession by a repository, prefer \"accession numbers.\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "86e0a121-43eb-4346-b1b8-c8c9bd502b7c", "value": "http://vocab.getty.edu/aat/300404621"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/5f400d39-3b6b-4b8a-939b-4e49787c7444"> + <skos:prefLabel xml:lang="en">{"id": "8f40c740-3c02-4839-b1a4-f1460823a9fe", "value": "preferred terms"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "63f56784-1b98-4b52-b4a4-ac640fae533c", "value": "Terms or names that are designated among all synonyms or lexical variants for a concept, to be used as the default term or name in displays and other situations; distinguished from \"nonpreferred terms.\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "f961772a-1216-4f1a-8fb5-a268ee0c3310", "value": "http://vocab.getty.edu/aat/300404670"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7dfe3f0a-333c-45e6-8751-840841142bb1"> - <skos:scopeNote xml:lang="en">{"id": "d7a902df-30b9-4aae-b680-501316166870", "value": "The art or practice of taking and/or processing photographs whose images are composed of gray tones, black, and white, and sometimes one hue, which may result from toning or aging."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "c54b7f40-f71c-426c-afb7-373241bc918a", "value": "black-and-white photography"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/219c15b1-a525-4833-aeeb-ec3c3bffc665"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "097d34c2-d006-41eb-ac7e-8256fdce68d7", "value": "http://vocab.getty.edu/aat/300162056"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "19f6e0e6-f45e-49ae-be95-3fb37b8d641d", "value": "Alloy of copper and zinc, usually with copper as the major alloying element and zinc up to 40% by weight."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "e28d7b1d-4bfc-44d4-a21e-bf3bb09ca08e", "value": "brass (alloy)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "772f685c-2701-44bf-b5f8-a60ea3145bbf", "value": "laiton"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "8164fd5e-85c3-47fc-b4e1-5ceb96cd02ca", "value": "http://vocab.getty.edu/aat/300010946"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/599b2119-6e98-430b-8ae6-61bcdce15a47"> + <skos:Concept rdf:about="http://localhost:8000/67ee8af0-c9a0-4e1d-8f2b-19b35fcb57e6"> + <skos:scopeNote xml:lang="de">{"id": "887c2f18-f41c-4516-92bb-571b6c23a491", "value": "Sammlung, die in einer Bibliothek vom allgemeinen Bestand gesondert aufbewahrt wird, weil es sich entweder um seltenes und besonders wertvolles Material wie beispielsweise Drucke und Zeichnungen oder um ein spezielles Sammelgebiet (Thema, Periode, Medienform etc.) handelt."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "c00099fd-33c6-42b0-98b0-ca97b95478b4", "value": "special collections"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "afab06ac-b68d-42c1-84ff-4830937dbb7c", "value": "Collections of library materials separated from the general collection because they are rare and valuable materials, such as prints and drawings, or they are of a certain form, subject, period, etc."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "2a517d84-5c34-4f15-a49e-19f4a2408ad9", "value": "Sondersammlung (Sammlung)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "087e7294-6117-4a2c-bf20-c42dfce89e0a", "value": "The constituent political and administrative units of various nations under a federal system of government, such as Australia and the United States of America."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "777c9bbd-dd5c-44b7-829c-f492f3473693", "value": "http://vocab.getty.edu/aat/300000776"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "aa58778d-f270-4e74-bcf1-b28da7aa87fd", "value": "etats"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "b0efd575-d2e3-4c5c-8a5b-9b6b39bc9330", "value": "states (political divisions)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6076718b-7827-4511-a2e9-9dc2057ba223", "value": "http://vocab.getty.edu/aat/300311990"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/3edc9a03-36c6-4b6a-8c19-3a626f5a0b7d"> + <skos:Concept rdf:about="http://localhost:8000/d2d7ac19-a9b6-436c-936a-3c6f314b2742"> + <skos:scopeNote xml:lang="en">{"id": "fcfb1534-0c7f-4f9c-bbc0-560569d65206", "value": "Numbers that firms such as commercial art dealers or galleries may assign to objects when taking them in to stock. These are typically written or affixed on the objects themselves, and can be used to associate particular objects with entries in a stock or sales book. These numbers are not necessarily unique, and objects may have multiple stock numbers."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "fe97af97-8b62-4186-bc8a-aeb51b5337c3", "value": "http://vocab.getty.edu/aat/300412177"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "832e150c-e180-4a12-8bae-3b4c16085dc4", "value": "Object Stock Number"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "2f2590a9-a83a-4cfb-b519-d6ae8f33d8e3", "value": "The process of removing an outer layer of material."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "08d971e5-9ed7-41c5-896f-07b9c795d775", "value": "http://vocab.getty.edu/aat/300053712"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "1cec7026-e3c5-4de4-9bd4-10957f4bb9ec", "value": "stripping"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/d3a32755-c1ab-4e04-9a3b-9bc1b20583b1"> - <skos:prefLabel xml:lang="en-us">{"id": "a8985417-e18c-4491-8f11-748a4f100d79", "value": "auction catalogs"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/2b6c07dd-5edf-406b-9a01-ed6753f111e0"> + <skos:prefLabel xml:lang="en">{"id": "aa10d956-fb2e-405b-b2e7-c7710c67f969", "value": "donation (method of acquisition)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e0e1b9b5-72cc-4f8a-b563-1ee5b0680987", "value": "http://vocab.getty.edu/aat/300417638"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "00fd89ff-74b8-4eba-b4d3-ad866fc54e49", "value": "Method of acquiring funds or property through transference of ownership from one party to another as a free gift."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d78df7cb-a017-4bf9-a9b7-79ffaba4a935", "value": "A listing of items, including works of art, manuscripts, books, or other items, that are for sale by auction."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "14efcb68-3643-487e-ba65-b710cc628381", "value": "http://vocab.getty.edu/aat/300026068"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0b569d5e-5cb9-4f10-8995-9acfea31b63a"> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/763b6d6d-d745-4dc8-9605-122d7c15a2d8"> - <skos:prefLabel xml:lang="en-us">{"id": "8f9ca198-cd32-4c3e-9ab8-afa0625a6a57", "value": "foreign language title"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "3b114c8e-a686-4b19-abcf-90b6a30df4bb", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/titles/foreign-language-title"}</dcterms:identifier> - </skos:Concept> - </skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/4617ed4f-e1ff-4a2d-90e1-c22cac2a1436"> + <skos:prefLabel xml:lang="en-us">{"id": "53e24b1c-a07c-49bb-89be-ae2b508692f3", "value": "Techniques"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6dd419c8-178e-4144-b107-da5aaf329529"> - <dcterms:identifier xml:lang="en">{"id": "924c7766-3878-477c-91fc-d769d51ca03a", "value": "http://vocab.getty.edu/aat/300417194"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "dbde1edb-9ae2-4b1d-97b4-107f452991b5", "value": "Titles or names that have been translated into a language other than the original language, or expressed in a writing system other than the original."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/77e3d54b-b98d-43da-9049-1725645308d6"> + <dcterms:identifier xml:lang="en">{"id": "92280997-010f-440f-815b-1fdc5c4a7a46", "value": "http://vocab.getty.edu/aat/300054277"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "5313e5d5-201e-4051-946d-ba70a1064f24", "value": "Superintending or managing the collections, exhibitions, research activities, and personnel of a museum, art gallery, zoo, or other place of exhibit; also, the superintending or managing of a single collection or subject of study in such an institution."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "50a74d12-94f1-4dc8-96e1-ee881603a991", "value": "translated titles"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "4431d911-f094-4231-92f5-7ec3ccb67151", "value": "curating"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "9a5d8d6e-bfdd-46cc-a4d5-a529a3af783b", "value": "titles (general, names)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "ea42e755-6e03-422e-8292-e20ee0bad7ad", "value": "http://vocab.getty.edu/aat/300417193"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c000d8be-cc35-430b-b250-5105395204d0"> + <skos:Concept rdf:about="http://localhost:8000/1bef9076-8fcc-421f-9ac9-7efd152570ef"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "8cea1f15-3b1f-40e4-b741-94640f198989", "value": "Titles applied to archival groups, which are aggregates of items that share a common provenance."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "f6aa667c-e79d-4750-a407-85e46c62fa57", "value": "http://vocab.getty.edu/aat/300417216"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "9a6ed3ee-9ebf-47c1-8617-e2bd6212470d", "value": "group titles"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "986ce9b9-c552-447b-9aaf-00b3eb84fa2f", "value": "http://localhost:8000/1bef9076-8fcc-421f-9ac9-7efd152570ef"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "04f04710-7d0e-4221-b0fc-fdc6a7904081", "value": "fundamental methods research"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e1888665-101f-4307-9906-6d9df78bd88c"> - <skos:scopeNote xml:lang="en">{"id": "754ad5f7-abd3-4a33-b923-ac086f054e7e", "value": "Titles or names that have been used to refer to the work in publications. For works of art and architecture, examples are titles or names in catalogs or journal articles that are not necessarily a title by which the work is normally known. For books, the term may be used to distinguish the final published title from an original unpublished or working title."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/cfb4f5fa-6291-4642-be9b-0c76cece2ae1"> + <dcterms:identifier xml:lang="en">{"id": "9752dd85-24c1-4362-83f7-3b5eed1258eb", "value": "http://vocab.getty.edu/aat/300053932"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "049acb87-2532-4bef-9fb8-243b674d17be", "value": "http://vocab.getty.edu/aat/300417206"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "a567e52a-2e33-40da-abcc-212bbd2413f2", "value": "published titles"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "cb66224c-1bc7-4335-b9d8-43d3e1135b84", "value": "The process of shaping glass by blowing air through a blowpipe into a glob of molten glass and forming it with tongs and shears or by rolling it against a hard surface."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "d6649015-54ba-4452-8b09-8b268f33af06", "value": "glassblowing"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/15599306-151c-4508-8e9c-ba0f10a709b0"> - <dcterms:identifier xml:lang="en">{"id": "c64834cb-1263-413a-9059-e89c85ceae8d", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/titles/scholarly-title-(5/5/2011)"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "d9ca8f76-5cc2-4d88-a5d5-2aea468512fc", "value": "scholarly title "}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/d6a36ca5-c661-4dfd-9903-6a502eb52bbb"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "974d010d-5c39-414d-bba2-938da5f78f69", "value": "http://localhost:8000/d6a36ca5-c661-4dfd-9903-6a502eb52bbb"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "a506d47d-e403-4bf8-9757-68155df43107", "value": "treatment study"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0f0f9727-0dee-4ff5-bc8d-201aaf6ab338"> - <dcterms:identifier xml:lang="en">{"id": "a9a7eb4b-690d-421c-b325-95069177f1f8", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/titles/catalogue-title"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "37c3fdc5-5a8b-438a-8c6d-c82d450520c7", "value": "catalogue title"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/60a64ca0-b6db-40da-b18c-6310515d22da"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "977f69dd-1665-4008-9fb8-1e2b66785af6", "value": "http://localhost:8000/60a64ca0-b6db-40da-b18c-6310515d22da"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "2573d862-7d6a-4970-83f9-340c5f864c58", "value": "applied research"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/480abea1-f508-4129-af86-52a4358b0e8a"> - <skos:prefLabel xml:lang="en">{"id": "a4214e72-a6d5-4b17-ae40-f1fac63635ef", "value": "Getty Guide Title"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "273f5923-8291-4d8d-999b-7c4c37122e4c", "value": "http://localhost:8000/480abea1-f508-4129-af86-52a4358b0e8a"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/478c39e7-9d07-4f5d-847d-ac887c2c4469"> + <skos:scopeNote xml:lang="en">{"id": "f5be46ff-b05a-4010-b898-81aef0d1868a", "value": "The application of testing methods to materials or objects in order to analyze their composition and manufacture. In a conservation science context, this may refer to movable art works and artifactual objects in a conservation lab. For a broader range of testing methods, prefer \"scientific analysis.\" "}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "635706ab-5a36-4564-b27e-bb0bec046205", "value": "technical analysis"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "1995d811-8920-4bf7-9bf3-e844ea73a2e8", "value": "http://vocab.getty.edu/aat/300379518"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"> - <dcterms:identifier xml:lang="en">{"id": "943fe0b0-64d9-4117-a8ad-cbfefaf9df38", "value": "http://vocab.getty.edu/aat/300404450"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "1ef5372e-f375-4ab6-b8a4-e3336bf55898", "value": "Designation indicating something, someone, a characteristic, or an activity is the most important or fundamental, is occurring or existing first in a sequence, belonging to the beginning or earliest stage,is the original, or not subordinate to or derived from anything else."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "ae7f2811-3fee-4624-bc74-9451bd05be2d", "value": "primary (general designation)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/97c77b61-26be-4e34-8b03-0938feb915a3"> + <dcterms:identifier xml:lang="en">{"id": "8847239b-65a7-44d2-a75e-d85d537dae0c", "value": "http://vocab.getty.edu/aat/300054681"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "2d2e0858-1822-4165-97e0-8d1dd36e827a", "value": "Teaching methodology using cases as a pedagogical tool in fields such as law, business, medicine, and education. Cases may include real and imagined scenarios, critical incident analysis, case studies, vignettes, and anecdotal accounts."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en-us">{"id": "e51dae2a-575c-4fe8-b197-69ddd73f95c3", "value": "case study"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f4643b7d-2710-4aca-8892-c0eeed02dfe9"> - <skos:scopeNote xml:lang="en">{"id": "16ed2801-da79-4f9f-91bf-0e65563ff274", "value": "Titles that vary from the primary title. Distinguished from \"alternative titles.\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "a8dec727-4fec-4288-a78f-4a3abd7f3894", "value": "http://vocab.getty.edu/aat/300417227"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "0798bf2c-ab07-43d7-81f4-f1e2d20251a1", "value": "alternate titles"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/63a18937-5a9a-4660-a26a-149121b35048"> + <skos:scopeNote xml:lang="en">{"id": "6adeb349-5860-439d-8427-030d1fe99c68", "value": "Scrutinizing a situation or object, usually in order to determine its nature, qualities, or current condition."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "f03d1d93-c2ee-4ef0-ae4a-e7d2090d7d1d", "value": "examination (function)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "60f834bb-8b0a-43f7-9f29-ac87a147b447", "value": "http://vocab.getty.edu/aat/300226216"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:scopeNote xml:lang="en">{"id": "ad11bfdc-737c-4eab-8d2e-f67ad8236ae8", "value": "Words or phrases, often descriptive or evocative, used to identify or provide reference to a work, including physical works, performances, literary works, and conceptual works. May apply to individual items or works, or to groups or series of items, in any medium. Titles may also be initials, numbers, or symbols. Examples are titles or names of works of art and architecture. For numeric or alphanumeric IDs or codes for uniquely identifying a work, prefer \"identification numbers.\" To refer specifically to titles printed or inscribed on a book or other object, such as on the title page, prefer \"titles (partial documents).\""}</skos:scopeNote> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fde9f103-4536-4d8d-8882-9efb5084362c"> + <skos:Concept rdf:about="http://localhost:8000/11378278-d14a-49c7-afe6-3a7fbb60f347"> + <dcterms:identifier xml:lang="en">{"id": "3d301dea-fe8c-413f-aad0-8bc6f99923c5", "value": "http://vocab.getty.edu/aat/300054216"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "31c84a98-e4d4-4a44-b891-219f894307ef", "value": "The art and practice of applying pigments suspended in water, oil, egg yolk, molten wax, or other liquid to a surface to create an expressive or communicative image. Paint is usually, but not always, applied with a brush. For the application of paint primarily to protect a surface or add a general color, use \"painting (coating).\""}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "cb7880d5-637c-4bf7-8258-106e2a173314", "value": "painting (image-making)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "ec635afd-beb1-426e-a21c-09866ea94d25", "value": "display title"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "1fa618a0-70d9-465f-a69a-f7a5e0b3cee2", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/titles/display-title"}</dcterms:identifier> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7baa8baa-38a4-4f83-a96a-1a18bd751c36"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "507cd856-809b-446b-9686-b593b810e971", "value": "total payment"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "15b943a3-b838-4baa-89d7-f8d501680cf8", "value": "http://localhost:8000/7baa8baa-38a4-4f83-a96a-1a18bd751c36"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/3c86859c-7cb7-4595-9c88-1c4780c19ee0"> - <skos:scopeNote xml:lang="en">{"id": "5f663f6e-8b0b-4b26-a180-0049219e21d1", "value": "Images created using a binary numerical system electronically stored in the form of encoded picture elements, or pixels."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "47b16aec-53bd-46ff-a8c3-91c6aec34acd", "value": "http://vocab.getty.edu/aat/300215302"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "d472136d-a3da-4d6e-b386-ee13aff400d3", "value": "digital images"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "a3781ed2-b24a-467c-80bb-564d8c5b11e9", "value": "images num\u00e9ris\u00e9es"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4f4cf6d3-c30a-4f08-a733-c8bd1276067b"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "c056a705-584c-4521-848e-cdbb585d1994", "value": "Physical works, such as drawings and written documents, that were used in the planning or execution of a definable physical work or set of works; also includes the finished works. Alternatively, a project may be planned, but unexecuted. For the conceptual activities of planning or carrying out of proposed undertakings or creations, use projects (artistic concepts)."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "bb557567-3830-4784-aa07-2dbb09dde65f", "value": "http://vocab.getty.edu/aat/300404832"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "0776c7d8-aed8-4ffb-a8f4-eb2f3e90e0fe", "value": "projects (object groupings)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/581d3c26-5265-4979-aa1a-8a0409583c48"> - <skos:prefLabel xml:lang="en">{"id": "dbc4590c-88dc-428b-9997-5e4e2b03e165", "value": "corporations"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "5cd641f5-b7d5-46db-8180-5d22ed32fe50", "value": "Groups of persons, commonly formed as business enterprises, considered in law as legal persons having an existence and rights and duties distinct from those of the individuals who form them. For unincorporated groups of persons contractually associated as joint principals in business, use \"partnerships.\""}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "e9b742f2-6b58-4354-8df7-dacb40493958", "value": "http://vocab.getty.edu/aat/300025969"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/89462b0b-71a7-4872-a6ca-18ded17f7568"> - <dcterms:identifier xml:lang="en">{"id": "f502634e-635d-4499-88a8-09601c30e1c2", "value": "http://vocab.getty.edu/aat/300080091"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "a9070cb7-3697-4451-b912-b4025b5768e8", "value": "The activity or function of representing in spoken, written, or signed language the attributes or qualities of something or someone."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "81c21388-7769-488b-b0d8-5304b51e1807", "value": "description (activity)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/995fb2eb-e02b-4953-a90d-c7ad5573fdd4"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e518447a-c5a2-485f-926d-c854f65e88ec"> - <skos:scopeNote xml:lang="en">{"id": "72710de1-344f-4abf-884f-0ce26bc18a7b", "value": "The standard unit of currency of the United States of America, containing 100 cents."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "8ab7498c-4bd2-4cda-bf74-7ba32e199574", "value": "United States dollar (system of money)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/17324c42-eb04-4527-8ea4-fe6b37ba03d2"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b73e3464-adf5-4325-b5e9-50c82d29013f", "value": "http://vocab.getty.edu/aat/300411994"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "8b0172f9-620d-4658-9b2e-f143d654293a", "value": "pilot project"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "4709f1c7-ae0b-4419-b51a-6324f35febcd", "value": "http://localhost:8000/17324c42-eb04-4527-8ea4-fe6b37ba03d2"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/775271df-a7dc-4158-9eea-425ed089728d"> + <skos:Concept rdf:about="http://localhost:8000/6444d3a3-f9bd-42e4-9c62-ea3fb2cd4f90"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "42d745b3-1cd3-4425-85b1-f10ecbc9df3a", "value": "French franc (system of money)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "dc9d9d09-cdf4-4108-a664-4581b668e55e", "value": "http://vocab.getty.edu/aat/300412016"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "ceee6ca2-2869-479d-9bff-e95befcef22a", "value": "The standard unit of currency of France prior to adoption of the Euro."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "c96fe943-2751-41e7-850e-db98ce31274c", "value": "collections management"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "93920192-4bde-4399-b4d1-01e5f8acf611", "value": "General term for the gathering, organization, description, provision of access, storage, and overall maintenance of a collection of objects, documents, or other materials."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "6a26a154-c967-413b-9411-ff92de80980c", "value": "gestion des collections"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c9d59b83-6ac5-43ac-b489-5d285d6145b1", "value": "http://vocab.getty.edu/aat/300137819"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "07539834-a9e5-4248-a1f8-7a18f35abcc0", "value": "Sammlungsverwaltung"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/98cffed5-2102-45fb-ba12-7b287fd2e8f3"> - <skos:scopeNote xml:lang="en">{"id": "703d0557-4507-42e3-a974-c00f72c6e0ae", "value": "The standard unit of currency of the United Kingdom."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/fa5108b1-0643-4605-ad0d-e7a3c22e7fd6"> + <dcterms:identifier xml:lang="en">{"id": "bc6c9f9c-832b-4f11-8b4b-b68e2996b096", "value": "http://localhost:8000/fa5108b1-0643-4605-ad0d-e7a3c22e7fd6"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "c43f69f8-a2dd-480a-b560-9f66981a1d56", "value": "http://vocab.getty.edu/aat/300411998"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "4dff5d9f-7fa3-4077-a26c-c287cd5e0ea1", "value": "pound sterling (system of money)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en-us">{"id": "2f129e27-c895-45c5-8666-3e74774d53f6", "value": "crowdsourcing"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "7734f0ef-ce1a-49f9-b847-69197f7e1ada", "value": "http://localhost:8001/4617ed4f-e1ff-4a2d-90e1-c22cac2a1436"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e6c99d74-08b7-42c3-b663-978873bb3865"> - <skos:prefLabel xml:lang="de">{"id": "c62fce61-65bf-452a-a28f-50bf5cf530f7", "value": "\u00d6sterreichischer Schilling"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "48801691-3261-4f72-ac0c-1706013ebbb9", "value": "Austrian unit of currency 1925-2002, with a lapse during WWII. It was replaced by the Euro as the country\u2019s sole currency in 2002. "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/ce042b1c-f512-4933-9aeb-0552974d51ca"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "4f9a37c0-2a4b-47c8-bcbc-e7af443ea7e0", "value": "Austrian Shilling (system of money)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "ddcc387e-27f1-4e6f-aeef-1d7e00a2f69a", "value": "http://vocab.getty.edu/aat/300412158"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "8a9191d7-2d1f-4857-9b65-910ddf76160d", "value": "method development"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "77437b00-2190-4ea3-8aef-e9e3bf2d5937", "value": "http://localhost:8000/ce042b1c-f512-4933-9aeb-0552974d51ca"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fa563901-745f-4edf-b1d4-26b24508e362"> - <skos:scopeNote xml:lang="en">{"id": "de763642-718d-4d7c-9ea1-b593282b9922", "value": "General term for units of currency based on gold coins of France issued in the reign of Louis XIII and subsequently till the time of Louis XVI."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/db62dc19-f356-410b-a309-474f5b59c767"> + <dcterms:identifier xml:lang="en">{"id": "12a57766-f357-486e-927b-b2a8f659ec7c", "value": "http://vocab.getty.edu/aat/300264383"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "15317074-775d-42cd-86ee-79a19c93b0b5", "value": "Refers to the process or branch of fine art concerned with creating sculpture, which are three-dimensional works. It refers particularly to carving or engraving a hard material, or with molding or casting a malleable material, so as to produce designs or figures in relief, in intaglio, or in the round. It is typically used to refer to the production of large or medium-sized objects in stone, clay, or bronze. The production of small objects in bronze or stone is typically referred to by a specific term, such as \"stone carving\" or \"die sinking.\" The production of sculpture in wood or ivory is typically referred to as \"carving,\" even though the finished work in these materials may be called \"sculpture (visual work).\""}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "2906dd8e-891a-40b7-83d1-2790f3c8e91d", "value": "http://vocab.getty.edu/aat/300412166"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "8786ab8d-4d9f-48a0-9ea5-a3848dd494f1", "value": "louis (unit of currency)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "73397400-ddb9-49bc-b8ed-3dce670dd2ab", "value": "sculpting"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/115aff8f-f29f-4536-9e83-973cbf18623c"> + <skos:Concept rdf:about="http://localhost:8000/c6d0fd93-ac62-4927-b15b-5388af12d956"> + <skos:scopeNote xml:lang="en">{"id": "95be6f40-c4e6-4864-9dde-f67a4ee40d95", "value": "Systematic assessments of the condition of a group, collection, or system, for example, the contents of a library or archive. For reports on individual items, use \"condition reports.\""}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "c2fac67d-f2f0-41ad-92a7-31b10a4a9e73", "value": "condition surveys"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "8c880ec1-688e-4412-bd70-480601aeb8d9", "value": "http://vocab.getty.edu/aat/300379543"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "3183b11b-3e25-4ac4-a378-207d0a85c111", "value": "Reichsthaler (unit of currency)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "2e7b8567-5ccd-40b7-aff4-1c22016e3662", "value": "General term for unit of currency of various values, used from the late 16th to the mid-19th centuries in various European countries, particularly in the Netherlands, the Holy Roman Empire, the Austrian Empire, Sweden, Denmark, and Scotland."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "bdf24995-107f-4c67-bc59-4061942e20d8", "value": "http://vocab.getty.edu/aat/300412170"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/93a715ef-5c16-4852-98c6-5d73d42633b6"> - <skos:prefLabel xml:lang="en">{"id": "63e149a5-609c-4303-bcc2-d28a21a44898", "value": "Dutch guilder (system of money)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/fdb282ff-4e71-4334-9993-46956fc2b64d"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "37738fca-2ec1-461a-8250-6b81c2d50b2b", "value": "The standard unit of currency of the Netherlands prior to adoption of the Euro."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "25ea598e-7bf1-4ab4-b654-c38f70795e61", "value": "http://vocab.getty.edu/aat/300412019"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "a187761a-1a94-4656-aa1f-939a55ccd43f", "value": "http://vocab.getty.edu/aat/300137801"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "605e17d9-5b0b-467a-b60e-12e3b0e2e73e", "value": "Testing a hypothesis or model. In science and related fields, refers to testing systematically under controlled conditions in order to discover the qualities, behavior, or effects of the subject of the experiment."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "28699349-18fe-409e-86da-8ba34eae7776", "value": "experimentation"}</skos:prefLabel> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/bdb42273-5581-4554-956f-c8f41c67798d"> + <dcterms:identifier xml:lang="en">{"id": "adb3492a-4a95-4147-a308-a7af305882bf", "value": "http://vocab.getty.edu/aat/300388474"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "813e4a54-08d3-4f36-bcd7-37eda038991a", "value": "Italian (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "53416d9d-9e47-4a41-9b6b-10eaeab5d710", "value": "italien"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "9f9f51b4-7f77-4bd2-af9e-652ff16c9adc", "value": "Italienisch"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"> + <skos:prefLabel xml:lang="en">{"id": "5f54a27c-111e-470f-a888-f18bfef32f25", "value": "acknowledgments"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a78a7aa7-471a-40ec-815f-5dbc4c89e2ae", "value": "Written recognitions of acts or achievements."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "723b9b69-1f3f-4d10-94a9-b4cfac8ae983", "value": "Danksagung"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "d1983693-fd41-4c7c-98ed-c62e9c9fbfff", "value": "http://vocab.getty.edu/aat/300026687"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "29ca80c4-b2f6-4bd3-a0cb-dd5d04d79363", "value": "Schriftliche Anerkennung f\u00fcr Handlungen oder Leistungen."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "d269e53f-b41d-4b43-afe2-571340c26a81", "value": "Written, digital, spoken, or signed representations of the attributes or qualities of something or someone."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "6155c419-191f-456c-b31e-8edfba711d56", "value": "http://vocab.getty.edu/aat/300411780"}</dcterms:identifier> + <arches:sortorder xml:lang="en-us">{"id": "4258a2d0-3da6-4518-b32e-c098fc4d9946", "value": "2"}</arches:sortorder> + <skos:prefLabel xml:lang="en">{"id": "df8e4cf6-9b0b-472f-8986-83d5b2ca28a0", "value": "description"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/ac2a0b23-c92f-482e-8f55-292386f66b86"> + <dcterms:identifier xml:lang="en">{"id": "fb2f87ee-e305-42c6-91df-83738522a05f", "value": "http://vocab.getty.edu/aat/300027323"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "3dc76a81-b432-4ea2-99db-d62a65e5459c", "value": "Reports giving details and results of a specific investigation of a scientific or technical problem."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "d47d75da-2fc9-4ca3-a875-240fdc661ebf", "value": "Bericht mit den Details und Ergebnissen einer Untersuchung \u00fcber ein wissenschaftliches oder technisches Problem."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "87145d78-6aa0-438f-a2f1-e23a7d01c5a3", "value": "technical reports"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "764354de-090c-4f35-bf96-1ccc27e6ae08", "value": "Technischer Bericht"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/c9457185-7085-4ea2-a152-122d1bb28f12"> + <skos:prefLabel xml:lang="en-us">{"id": "e72534a7-20f8-4bbd-bc05-6509f3073e51", "value": "Name Types"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "61e20c5f-8a71-4843-b0dc-cdbdd9e26d18", "value": "http://localhost:8000/c9457185-7085-4ea2-a152-122d1bb28f12"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5dc2c5f1-bccd-44e2-be0e-f34f3d1ac8db"> - <skos:prefLabel xml:lang="en">{"id": "c58ac326-9432-48d9-8c4c-f14e7f987cb5", "value": "\u00e9cu (system of money)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "03efc4af-cb4f-4569-9ee1-5f250c461def", "value": "\u00e9cu"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "1113a8e7-f5dd-40e1-bde1-b83aa574e196", "value": "http://vocab.getty.edu/aat/300412159"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/f8dcc963-bc7e-41f1-9449-0a96a27432e5"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "92336ee0-b5dc-4cb3-845f-9ee0a55ed02f", "value": "Unit of French currency of varying value, known from the Middle Ages until the French Revolution. "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "882fe6d8-4519-462f-91ed-11071314544b", "value": "http://localhost:8000/f8dcc963-bc7e-41f1-9449-0a96a27432e5"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/c5f909c8-d870-4752-b62d-d18f945f1ddf"/> + <skos:narrower rdf:resource="http://localhost:8000/9dd99086-3a90-4102-8335-33986fe797e3"/> + <skos:narrower rdf:resource="http://localhost:8000/1421293e-ad4d-4166-a199-d076622b2596"/> + <skos:prefLabel xml:lang="en-us">{"id": "7af7bc06-9e61-4ef0-8af5-585e0d1e67f0", "value": "Personal Name Part Types"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/1ffe97e4-1822-4a6e-b170-861330764bbd"/> + <skos:narrower rdf:resource="http://localhost:8000/48ded04e-6487-4640-b5e1-37818ce87ade"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/598ce9bd-a5d6-4fd8-886f-7f45d99f1d57"> + <skos:Concept rdf:about="http://localhost:8000/5f238aa7-f57b-4092-876e-3c5cb87461ed"> + <skos:narrower rdf:resource="http://localhost:8000/c0561406-3cd4-414d-9a64-d75abf6570be"/> + <dcterms:identifier xml:lang="en">{"id": "035f8b4f-225a-4c5d-bf36-d2a16e6318a5", "value": "http://localhost:8000/5f238aa7-f57b-4092-876e-3c5cb87461ed"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/6a0a4e8b-dfc5-4b38-9c26-98cb05592621"/> + <skos:prefLabel xml:lang="en-us">{"id": "a7729abb-2079-4db3-bedc-fa22d8783951", "value": "Contact Point types"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "dfd91951-c5e4-47c9-abca-f4dc6116b063", "value": "Reichsmark (system of money)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "6afb0125-4650-45a1-863d-baba0f7d960d", "value": "http://vocab.getty.edu/aat/300412169"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "7b3191e4-397a-4a41-af69-e55188e9f46a", "value": "From 1924 to 1948, used as the official designation of the German currency. Later historical use chiefly refers to this official designation during this period."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/58e0487d-3421-41ef-ab8e-4a635eb40e9d"> - <skos:prefLabel xml:lang="en">{"id": "003ce537-5b58-4a02-9ae4-dc0f075416eb", "value": "Danish rigsdaler (system of money)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/0b569d5e-5cb9-4f10-8995-9acfea31b63a"> + <skos:narrower rdf:resource="http://localhost:8000/f4643b7d-2710-4aca-8892-c0eeed02dfe9"/> + <skos:narrower rdf:resource="http://localhost:8000/763b6d6d-d745-4dc8-9605-122d7c15a2d8"/> + <skos:narrower rdf:resource="http://localhost:8000/e1888665-101f-4307-9906-6d9df78bd88c"/> + <skos:narrower rdf:resource="http://localhost:8000/6dd419c8-178e-4144-b107-da5aaf329529"/> + <skos:prefLabel xml:lang="en">{"id": "9a5d8d6e-bfdd-46cc-a4d5-a529a3af783b", "value": "titles (general, names)"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"/> + <skos:narrower rdf:resource="http://localhost:8000/15599306-151c-4508-8e9c-ba0f10a709b0"/> + <skos:scopeNote xml:lang="en">{"id": "ad11bfdc-737c-4eab-8d2e-f67ad8236ae8", "value": "Words or phrases, often descriptive or evocative, used to identify or provide reference to a work, including physical works, performances, literary works, and conceptual works. May apply to individual items or works, or to groups or series of items, in any medium. Titles may also be initials, numbers, or symbols. Examples are titles or names of works of art and architecture. For numeric or alphanumeric IDs or codes for uniquely identifying a work, prefer \"identification numbers.\" To refer specifically to titles printed or inscribed on a book or other object, such as on the title page, prefer \"titles (partial documents).\""}</skos:scopeNote> + <skos:narrower rdf:resource="http://localhost:8000/0f0f9727-0dee-4ff5-bc8d-201aaf6ab338"/> + <skos:narrower rdf:resource="http://localhost:8000/480abea1-f508-4129-af86-52a4358b0e8a"/> + <skos:narrower rdf:resource="http://localhost:8000/c000d8be-cc35-430b-b250-5105395204d0"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "2eb82f5a-7110-43d2-921c-7eeeabb6df2e", "value": "http://vocab.getty.edu/aat/300412190"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "3ed791af-221a-4a16-a803-49fc694f270d", "value": "General term for several currencies used in Denmark until 1875."}</skos:scopeNote> + <skos:narrower rdf:resource="http://localhost:8000/fde9f103-4536-4d8d-8882-9efb5084362c"/> + <dcterms:identifier xml:lang="en">{"id": "ea42e755-6e03-422e-8292-e20ee0bad7ad", "value": "http://vocab.getty.edu/aat/300417193"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/903c4a8b-4051-4791-9ee9-9fd96e222117"> + <skos:Concept rdf:about="http://localhost:8000/deebb113-05f9-4a53-b0ad-9d9a8dac9317"> + <skos:prefLabel xml:lang="en-us">{"id": "19c15278-aba2-4017-9b1e-8b45f0bc38be", "value": "Personal Name Types"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "402f5839-8c99-4271-a5f9-2be25506e7b4", "value": "General term for units of currency based on various large silver coins of Central Europe minted from the late 15th to the mid-19th century."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "e2b4d86f-6f37-4817-8a35-b94272300c7c", "value": "thaler (unit of currency)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "87da8b58-a75d-4784-98b8-e87784c8236d", "value": "http://vocab.getty.edu/aat/300412168"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/fa579432-0d81-4d5e-a721-01015f8fbfe5"/> + <skos:narrower rdf:resource="http://localhost:8000/ac05986c-ffe8-4910-a73e-6efe0d451eda"/> + <skos:narrower rdf:resource="http://localhost:8000/5b2324ed-1afc-4e69-8edc-4547fe2166bc"/> + <dcterms:identifier xml:lang="en">{"id": "a7f57328-776a-4a72-a3e2-73d5fcf54155", "value": "http://localhost:8000/deebb113-05f9-4a53-b0ad-9d9a8dac9317"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/d435267f-7de2-4321-9b02-f495386866b3"/> + <skos:narrower rdf:resource="http://localhost:8000/02040456-2800-4934-9a95-70b2af7e8966"/> + <skos:narrower rdf:resource="http://localhost:8000/c54f3642-9f8d-475d-8c6d-b82fc4b5b853"/> + <skos:narrower rdf:resource="http://localhost:8000/0c9c8887-e4fb-480a-9cf0-9506b9650d40"/> + <skos:narrower rdf:resource="http://localhost:8000/1635bf19-34b2-4f52-b2dd-f67116830f05"/> + <skos:narrower rdf:resource="http://localhost:8000/b9c2b0a7-88b8-40d5-b605-0f74e4e0da61"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d2ecdb4f-eca9-4407-953e-50fdf9f711b0"> - <skos:scopeNote xml:lang="en">{"id": "6ed9487d-db56-45a1-8689-f5bc15707133", "value": "Currency issued by the French revolutionary government between 1789 and 1796, in the form of paper money and based on the security of the state lands."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "19fffcff-0448-4074-8981-4c26846a8b49", "value": "assignat (system of money)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c1f25ad5-664e-4a0e-9101-c7a869bac34c", "value": "http://vocab.getty.edu/aat/300412157"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/c418eb94-c435-4f87-b7fc-122dd776bec7"> + <skos:narrower rdf:resource="http://localhost:8000/05a7e094-5bd7-4b2a-9cf2-98d43866e8f7"/> + <skos:narrower rdf:resource="http://localhost:8000/ba5bbea8-8984-41ff-9b29-f4069003edbf"/> + <skos:prefLabel xml:lang="en-us">{"id": "79500bd3-940c-4781-bd39-6a94537868a6", "value": "Object Name Types"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/75e09bc6-2208-41c0-bcb1-a740c58782e6"/> + <dcterms:identifier xml:lang="en">{"id": "7aaa3ac7-3d1c-49da-90a2-395cc4913350", "value": "http://localhost:8001/c418eb94-c435-4f87-b7fc-122dd776bec7"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/09c5997e-86f4-4689-bc6e-169e299acb9b"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/48b2dd36-2148-4ce6-a00a-40be229da73d"/> + <skos:narrower rdf:resource="http://localhost:8000/934467ee-a5a4-4bdf-b377-0ffa5e51c009"/> + <skos:narrower rdf:resource="http://localhost:8000/41d71deb-c14b-46b2-b174-074c9abd5e3f"/> </skos:Concept> </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/249e9e0e-0af1-457e-b33e-ccb6824e5a2a"> - <dcterms:identifier xml:lang="en">{"id": "9af03343-bb5c-49f7-91f8-866e31f00437", "value": "http://vocab.getty.edu/aat/300412160"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "697ace15-9de7-49e8-a770-927535a8a5dc", "value": "German florin (system of money)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/1022a93a-1860-4b56-9e85-e4ad416b9098"> + <dcterms:identifier xml:lang="en">{"id": "481c8076-c398-4e3b-94f0-19813ade8957", "value": "http://localhost:8000/1022a93a-1860-4b56-9e85-e4ad416b9098"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/48e08437-a15d-4f0f-adfc-77c1587f17b9"/> + <skos:narrower rdf:resource="http://localhost:8000/62f83f13-058e-4c73-a0b0-4f1816780f52"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "ae95e8be-3dc2-4d04-ae5a-1f8edfa2ab62", "value": "Unit of German currency of varying value minted as gold coins by several German states from 1354."}</skos:scopeNote> + <skos:narrower rdf:resource="http://localhost:8000/a3ddd46c-0aba-4ba0-a943-c9d793e1a9bc"/> + <skos:prefLabel xml:lang="en-us">{"id": "12d76365-c695-4203-a787-cce42c724f3e", "value": "Contact Point Part Types"}</skos:prefLabel> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/115aff8f-f29f-4536-9e83-973cbf18623c"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "3183b11b-3e25-4ac4-a378-207d0a85c111", "value": "Reichsthaler (unit of currency)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "2e7b8567-5ccd-40b7-aff4-1c22016e3662", "value": "General term for unit of currency of various values, used from the late 16th to the mid-19th centuries in various European countries, particularly in the Netherlands, the Holy Roman Empire, the Austrian Empire, Sweden, Denmark, and Scotland."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "bdf24995-107f-4c67-bc59-4061942e20d8", "value": "http://vocab.getty.edu/aat/300412170"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/a17a13c9-58f0-4e66-8a73-bfae8f6247fa"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "cbd6be06-787b-4b6c-8b3f-e579b6a6d2f3", "value": "Separation between layers, as between a paint or varnish film and other film layers, or between a film layer and its support, or separation along planes of weakness in crystalline materials."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "017b658b-e27f-4663-9368-1d04ebcfef4d", "value": "http://vocab.getty.edu/aat/300220007"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ecb30ff6-c3d2-4c1b-abed-5f9030e47963", "value": "cleavage"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e8a9a948-1cc2-452f-bd4b-33b1d84e899d"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "ada39e8f-467b-4d70-999a-a02623a09649", "value": "Designates the state of a person or persons that do not identify as belonging to any particular gender."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "69533d50-dd6d-4d5b-9819-7d7bfeda93a8", "value": "agender"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "1abd2190-72a3-4728-9862-f5c6beecdd79", "value": "http://vocab.getty.edu/aat/300438735"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/027ce46c-9428-4606-8352-af48ff5bd1bb"> + <skos:scopeNote xml:lang="en">{"id": "513e827e-1689-46de-9de4-ec6d7155975a", "value": "Painting of images in monochrome, usually gray tones; employed in paintings, stained glass, enamels, and on pottery and other objects."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "bf62d458-7f0d-44c0-a61c-d847957db93e", "value": "Grisaillemalerei"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "a17100cd-d3ee-4953-aca8-0b12d7385179", "value": "Gemaltes Bild in Schwarz-Wei\u00df, in der Regel mit Graut\u00f6nen; etabliert in der Malerei, Glasmalerei, Emaillekunst, auf Keramik und anderen Objekten."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "fcb252b4-6d5a-4813-97dd-f663367ad8ca", "value": "http://vocab.getty.edu/aat/300053386"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "f69c244d-38a2-48df-8f90-f5b90f945960", "value": "grisaille"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/479bf620-ff68-405f-9a85-975439fad879"> + <dcterms:identifier xml:lang="en">{"id": "30ac0df8-9313-47d7-b917-22baf36d5cbb", "value": "http://vocab.getty.edu/aat/300410335"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "f3635b3f-4552-4af9-ae79-ce8e13a339a8", "value": "pencil (marking material)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "b42ab741-5bc3-49d3-a4ca-ea03d4b83144", "value": "General term for a solid marking substance in the form of a slender rod, which is then enclosed in a cylinder of wood, metal, or plastic to form a \"pencil (drawing and writing equipment).\" Common examples of materials used in \"pencils (drawing and writing equipment)\" are graphite, lead, and pigmented wax."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/825d0d98-cdd9-461e-8e96-609159286bd9"> + <skos:prefLabel xml:lang="fr">{"id": "ad44d361-f800-4d79-963c-06bca5a845a1", "value": "latin (language)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "05a6948f-1333-4726-a94f-fae6ba571b86", "value": "http://vocab.getty.edu/aat/300388693"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "c2e23a00-1b15-4450-8b3d-c6d938b22f13", "value": "Latin (language)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "e49c071f-3c7a-404b-ad84-eb971bff2801", "value": "The Indo-European language in the Italic group that was originally spoken by small groups of people living along the lower Tiber River, and later spread around the world with the increase of Roman political power The oldest existing example of Latin dates to the 7th century BCE."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "e994bead-771f-432e-9d4f-7dadd83f57a1", "value": "Latein"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/c19aa471-036d-4828-8ae8-1a9c8c7792c6"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/44230e61-1c33-47a2-a425-8089e09c060c"> - <skos:scopeNote xml:lang="en">{"id": "e4609ad7-e8a8-441e-abce-407e2b053725", "value": "General term for the principal monetary unit of Denmark and of Norway."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "8cbf8b82-c376-48b0-b9e6-24f46b81783d", "value": "krone (unit of currency)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/5e4b95e8-70ff-41d4-8926-31182e4a5e56"> + <skos:prefLabel xml:lang="en">{"id": "2b66de6c-b43d-45bd-ad63-0ceb7b49c964", "value": "shaving (process)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "3f9b387c-aca8-4410-ba7b-14fe3645b055", "value": "Generally, the process of cutting or scraping the surface of something with a sharp-edged tool so as to remove a thin layer or unwanted extra material. In the context of skin and hide preparation, denotes the beamhouse operation of removing hair or excess dermal material to create an even thickness. In the context of bookbinding, for the removal of a small amount of material from the edges of a book, use \"trimming.\""}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "3091c4eb-b7e5-4524-b1f1-43526f041542", "value": "http://vocab.getty.edu/aat/300412164"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "10c09be8-75de-4c19-ba7a-76bc577675a6", "value": "http://vocab.getty.edu/aat/300263010"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/299a2526-ed43-4578-ab31-aca6ab0b4a2f"> - <skos:scopeNote xml:lang="en">{"id": "1bdb0c5b-be28-4f65-8b3a-c538a9323cb6", "value": "General term for units of currency based on English silver or cupronickel coins valued at twelve pence and minted from the mid-16th century until 1970."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "dd19218a-3861-4486-8f15-9f82ce9aa66c", "value": "shilling (unit of currency)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/6e76d272-7f20-469b-a294-193a91612874"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "f4400e35-6810-49d3-807d-10f5540cbdca", "value": "http://vocab.getty.edu/aat/300412167"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "db2f534d-d99b-4a03-8d66-c8744c794da5", "value": "perforating"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "954e8d52-43a2-453a-aec9-fb5495da521f", "value": "The making of holes through an object; may be done purposefully, either when the object is made or later, or may be the result of natural processes."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "540a7f45-664f-41ee-82d3-d2c4650e10c8", "value": "http://vocab.getty.edu/aat/300192586"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:prefLabel xml:lang="en">{"id": "6d2a3383-9057-4b32-aade-ded8b0d0f9b9", "value": "Part Removal"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f3e8cc93-09ea-448d-9bae-d33a1c396919"> - <skos:scopeNote xml:lang="en">{"id": "6993d3b3-7730-4e04-bb23-178582fa13b9", "value": "The standard unit of currency of the Eurozone, comprising member states of the European Union."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "774a98b7-5ee5-4d9d-8acc-51be549e7361", "value": "http://vocab.getty.edu/aat/300411996"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "44e17e1f-acf9-4aa7-8acf-7e7afa0fd0a3", "value": "Euro (system of money)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/7d8aa2f8-f8a0-4d0d-a2a8-2fa8d64ae16b"> + <dcterms:identifier xml:lang="en">{"id": "18408e4e-52a1-4d83-a5e9-0230e40a625e", "value": "http://vocab.getty.edu/aat/300053073"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "acde7941-0f60-4ca7-add9-1def1c125db1", "value": "The action of cutting, clipping, or dividing something with scissors or a similar tool."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "ed49b40e-7104-45c2-8832-1988cd3a9510", "value": "snipping"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "78ec6418-ed95-4848-8cf0-b3164cceac2f", "value": "http://localhost:8000/995fb2eb-e02b-4953-a90d-c7ad5573fdd4"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "c2f2e890-c9dc-4204-9682-726bbfd9c978", "value": "Currencies"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/411b634d-3ead-498c-9b30-29f0512e9771"> - <dcterms:identifier xml:lang="en">{"id": "df24f660-6c9f-48a3-9a41-adb0639d08a9", "value": "http://vocab.getty.edu/aat/300412001"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "812f1242-f78f-44c7-b2f9-966dbd30ec0f", "value": "Swiss franc (system of money)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "4fe8369a-d0d2-4089-adb1-db2e935eb24c", "value": "The standard unit of currency of Switzerland."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/3edc9a03-36c6-4b6a-8c19-3a626f5a0b7d"> + <skos:prefLabel xml:lang="en">{"id": "1cec7026-e3c5-4de4-9bd4-10957f4bb9ec", "value": "stripping"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "08d971e5-9ed7-41c5-896f-07b9c795d775", "value": "http://vocab.getty.edu/aat/300053712"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "2f2590a9-a83a-4cfb-b519-d6ae8f33d8e3", "value": "The process of removing an outer layer of material."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "6b228de6-ace8-4212-b382-0485bc4f061d", "value": "http://localhost:8000/c19aa471-036d-4828-8ae8-1a9c8c7792c6"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/eda33b72-4404-49fc-8cff-98383ff47234"> - <dcterms:identifier xml:lang="en">{"id": "0deb376a-bfc9-4382-a83d-62b13645116e", "value": "http://vocab.getty.edu/aat/300412165"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "3c16286f-b808-4eb0-9a65-3268c3899636", "value": "livre (unit of currency)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/e7c365a4-aa13-41ea-870a-64780dfb3d39"> + <dcterms:identifier xml:lang="en">{"id": "c8d9c9cb-019b-4819-85d9-03b64f7a0f7e", "value": "http://vocab.getty.edu/aat/300379769"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "698796c9-785c-4e81-be0d-773945d073dd", "value": "Signifies the act of drawing forth a material from that which holds it."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "0345eea6-f11e-4bc4-9002-291796cdbc6d", "value": "extracting (subtractive process)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "6a903a8b-977e-47a7-917f-4455be816f23", "value": "General term for any of a number of monetary in use in France between the 8th and 18th centuries."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5e49ee59-6580-4fcb-a57c-be102f72bccd"> - <dcterms:identifier xml:lang="en">{"id": "beedae6a-f6df-4b3d-9b5c-8b2fb293c7d8", "value": "http://vocab.getty.edu/aat/300412163"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "cdd06878-3a75-4c08-b86b-ec7c4c0197dc", "value": "Unit of English currency, issued as a gold coin first struck in 1663."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "3677f9af-19f9-4124-a7c6-10072cb9d583", "value": "guinea (unit of currency)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/87d354fd-8284-444e-a5ee-0718d4c84f56"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "eae01c4d-e708-4536-bce2-f5854359d6b2", "value": "Taking away or getting rid of something."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "9782cbff-dda1-4910-bc9c-da93a80b3fe6", "value": "http://vocab.getty.edu/aat/300224146"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "de038d5e-f803-4c03-bc56-a7fb23510c0a", "value": "removing"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c304b5d9-5d48-4fab-bfa0-84b96440c009"> + <skos:narrower rdf:resource="http://localhost:8000/a17a13c9-58f0-4e66-8a73-bfae8f6247fa"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/20d21d50-3650-44ed-8451-edee26ddc3f2"> + <skos:Concept rdf:about="http://localhost:8000/9038c161-43ac-4567-abae-9bb546e7898a"> + <skos:scopeNote xml:lang="en">{"id": "d4120aaa-1e50-48f1-999e-54f4d0806d4c", "value": "The activity of cutting with a quick and heavy blow with a hewing, hacking instrument, such as an ax, cleaver, sword, or the like."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "5419d36e-77e6-4827-be7e-5accd29e8570", "value": "http://vocab.getty.edu/aat/300379799"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7f1e80ed-055d-49f3-aba7-a2084c3e0df2", "value": "chopping"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "ff714ffe-792f-4b7d-ac16-1ea14d305048", "value": "http://vocab.getty.edu/aat/300379244"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "37083d27-bcdf-4451-86c1-65bd188c0b31", "value": "Units of time equivalent to nearly 365.25 days, 12 months, or the period of one full circuit of the Earth around the Sun. "}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "496c3361-6792-4457-89ae-2f93803c9daa", "value": "years"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/493e8f0d-2e89-439a-9e8d-f1e813388f3b"> - <dcterms:identifier xml:lang="en">{"id": "6b836666-78ce-42a6-8ee3-d234ab4f36e1", "value": "http://vocab.getty.edu/aat/300379242"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "2a819a0e-7e22-439e-ba6d-0490bf53788f", "value": "days (units of time)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/49add32c-3045-47aa-b1c7-9cf3307a2754"> + <skos:scopeNote xml:lang="en">{"id": "e2d52727-036f-4fb7-a1a7-0cb0a49fada0", "value": "Taking apart or removing significant pieces, especially to reduce or disable the function."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "36588eea-ab65-45d8-867b-6fbb79d357dc", "value": "dismantling"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b00ff40b-7014-4c1e-a28e-1d56ba9e3e70", "value": "http://vocab.getty.edu/aat/300061163"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "17ccb184-0283-40d7-96e6-390d1bf83183", "value": "Units of time equivalent to the 24-hour time interval between midnights, or the period of one full rotation of the Earth on its axis. "}</skos:scopeNote> </skos:Concept> </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0f572454-3e77-4d9e-8ea2-774e28469f3a"> - <dcterms:identifier xml:lang="en">{"id": "cc906544-edb2-4bcb-9ee0-d7a38843e53a", "value": "http://vocab.getty.edu/aat/300379239"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "0cd86f12-4ff7-46d1-823d-a07ff0d7bc54", "value": "seconds (units for duration)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/1bcdf300-a595-43e5-b17e-fdb8abc37a3f"> + <dcterms:identifier xml:lang="en">{"id": "e071910b-3978-49ad-b4a3-bc18bf029d8c", "value": "http://vocab.getty.edu/aat/300053088"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "b66429d5-dbef-4208-8a34-fa4e4661e428", "value": "erasing"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "816be7f2-bcb5-4b12-8121-ee5d7678d749", "value": "Refers to the action of effacing, rubbing out, or removing something written, drawn, engraved, or recorded on any media."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "47b6d2a0-3419-43cc-a0b8-f029c70a6b7c", "value": "Measurements of time equal to 1/60 part of a minute or 1/3600 part of an hour."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f89a0022-ac64-45fd-aa77-5aab89eb77d3"> - <skos:prefLabel xml:lang="en">{"id": "a55adb4b-f47d-402e-9cc9-a9ee9959841d", "value": "hours (units of time)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "7baf566e-642c-4854-b594-da53a338f80d", "value": "Measurements of time equal to 60 minutes, 3600 seconds, or 1/24th of a solar day. "}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "a7427500-d1ff-4862-b96c-7179177f6589", "value": "http://vocab.getty.edu/aat/300379241"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/d5b6cfce-f3b4-4ff1-acf1-3b9353a87953"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "d9ade436-9f24-49a7-a360-89a6b591a59a", "value": "The process of taking apart, whether by damage or intentionally; examples are when folios of manuscripts are cut out of the volume for redistribution separately."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a74bc315-309d-4151-a3e1-a620950d8d33", "value": "disassembling"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "14c10d31-a880-4ca6-896d-d36121baf74d", "value": "http://vocab.getty.edu/aat/300404064"}</dcterms:identifier> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f2bd260c-a4ba-4b27-ba3b-961f37ca8016"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c85793a7-86d1-45ae-92f9-913652c5b4c8"> + <skos:Concept rdf:about="http://localhost:8000/7dfe3f0a-333c-45e6-8751-840841142bb1"> + <skos:scopeNote xml:lang="en">{"id": "d7a902df-30b9-4aae-b680-501316166870", "value": "The art or practice of taking and/or processing photographs whose images are composed of gray tones, black, and white, and sometimes one hue, which may result from toning or aging."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "097d34c2-d006-41eb-ac7e-8256fdce68d7", "value": "http://vocab.getty.edu/aat/300162056"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "e3507a33-faf2-4336-b9d1-81bf22e482f8", "value": "minutes (units for duration)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e8eb14a0-dcfa-4b53-8660-96ece1a302d1", "value": "http://vocab.getty.edu/aat/300379240"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "05406b1a-42bf-4a04-8cc7-813c5d515636", "value": "Units of time equal to 60 seconds or 1/60 of an hour. "}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "c54b7f40-f71c-426c-afb7-373241bc918a", "value": "black-and-white photography"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "a4811d71-925c-4762-99e3-21d7eed2ca78", "value": "http://localhost:8000/c304b5d9-5d48-4fab-bfa0-84b96440c009"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/62e7809a-d1d3-4b1b-b242-e5c217503c77"> + <skos:Concept rdf:about="http://localhost:8000/b96a5716-1e25-4697-b5f9-3afad1627ed4"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "62ad5518-6b00-43e0-af81-667f4ce753f7", "value": "months"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "c038b0d0-f25a-45d6-8bf0-cf42f87a89d7", "value": "Units of time equal to approximately 1/12th of a year or the 4-week time period of one full circuit of the Moon around the Earth."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "fe0edade-d755-4c75-a820-549c99509571", "value": "http://vocab.getty.edu/aat/300379245"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "beef438f-d04c-4023-a620-6ca42a20905e", "value": "http://vocab.getty.edu/aat/300134530"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "3444e2b6-ba6d-4642-9427-09c39f525abd", "value": "Generally, the art or practice of taking and/or processing photographs that reproduce hues perceptible to the human eye. Extended to include imagery in which colors have been artificially enhanced or altered. "}</skos:scopeNote> + <skos:prefLabel xml:lang="en-us">{"id": "9aa3c808-26e7-4274-a521-3507ea49c90b", "value": "color photography"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "fb1c94e1-7a23-4b5f-82a8-9fb2121a232a", "value": "Temporal Units"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/a1aba246-0843-4329-a12b-1c3dd0731900"> - <dcterms:identifier xml:lang="en">{"id": "9bed5007-ed6e-441b-b4b4-a0c5e1e0810e", "value": "http://vocab.getty.edu/aat/300162056"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "4d79aceb-201f-4682-bd72-5183bdb4b6f2", "value": "black-and-white photography"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "d70fa3c4-bbde-4bfc-8e4e-d43b6a8f3dc3", "value": "The art or practice of taking and/or processing photographs whose images are composed of gray tones, black, and white, and sometimes one hue, which may result from toning or aging."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e2b3f9c2-cb94-4dcd-9fa1-5b4d10363adb"> - <skos:prefLabel xml:lang="fr">{"id": "25140f8c-f573-4526-9615-5fac4795355b", "value": "nitrocellulose"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "aa58522d-508c-4c44-9f02-ddbff585b74d", "value": "Zellulosenitrat"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "da790531-ce7e-4d36-a24c-841bd3e2e88c", "value": "Substance comprising a mixture of nitric esters of cellulose and a highly flammable compound containing more than approximately 12.5 percent nitrogen. Nitrocellulose is a fluffy white substance that retains some of the fibrous structure of untreated cellulose. It is not stable to heat and will ignite easily. It was first introduced in the 19th century as an explosive. It was used to produce animation cels for 80 years until acetate was introduced as a safer medium in the 1950s. Cellulose nitrate was often used for clear lacquers, fabric dopes, adhesives, high-gloss paints, and mixed with natural resins (dammar, shellac, copal, etc) to create a waterproof varnish. Cellulose nitrate is inherently unstable and slowly decomposes at room temperature."}</skos:scopeNote> - <skos:prefLabel xml:lang="pt">{"id": "55bc7e29-75b4-4c5e-9831-0e190685c582", "value": "nitrocelulose"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "f0943de1-79cf-4263-a32a-8dafd9ad7175", "value": "http://vocab.getty.edu/aat/300014444"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "547a78f0-e75e-46af-86a4-c29c738a3d25", "value": "nitrocellulose"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/970f32df-c784-49e7-a83c-93174fd63cb3"> - <skos:scopeNote xml:lang="en">{"id": "a9ae9a05-0830-4381-872e-8a15696342c5", "value": "General term for rock that has been cut, shaped, crushed, or otherwise formed for use in construction or other purposes. Includes the specific archaeological and anthropological sense of individual stones which may be decorated or ornamented and which may be used in ritual contexts. These are usually not carved or dressed, and so differ from sculptures made from stone."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "53795773-03c7-4338-9b7b-bb8de78a4a65", "value": "Stein (Objekt)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "4dd0860f-0ebd-4a0d-b060-5871039b8b27", "value": "http://vocab.getty.edu/aat/300011176"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "4123c1aa-ffa1-4970-9d6a-609ca0dda2bd", "value": "Allgemeine Bezeichnung f\u00fcr ein Steinobjekt, das abgeschnitten, geformt, zerkleinert oder anderweitig zur Verwendung in der Architektur oder f\u00fcr andere Zwecke zugearbeitet wurde. Der Begriff schlie\u00dft auch die arch\u00e4ologischen und anthropologischen Steinobjekte ein, die verziert oder dekoriert wurden und bei rituellen Zeremonien Verwendung fanden. Diese Steine sind Regel nicht behauen oder bearbeitet und unterschieden sich daher von Steinskulpturen."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "e7ae7f79-59af-4b2a-b27e-a4514452cbe9", "value": "pierre (rock)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "5e11519f-57e6-48c0-8cdd-1a7cd3ebc7d8", "value": "stone (worked rock)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/56f1db33-4d80-4871-bcb5-63ed73c67fec"> - <skos:scopeNote xml:lang="en">{"id": "951320b9-9d10-4f5d-9f1a-1dd0c7f5c982", "value": "The art or process of providing drawings or other pictures intended to elucidate a description, story, or other written material, usually in a book or periodical."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "4e2d165b-48ff-47a5-a68d-9ba2b1e8e473", "value": "http://vocab.getty.edu/aat/300054200"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "e2794667-31c5-4a41-ac69-95313e05d033", "value": "illustration (process)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/6ad4a9e8-b48e-4338-9fc4-fa7509dec88e"> - <skos:scopeNote xml:lang="en">{"id": "da7e7737-99bb-4569-87d7-421ff3301373", "value": "General name for textile woven from the spun fiber of the flax plant."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "4dd55bde-992c-48d6-80c4-62913ca34d6b", "value": "http://vocab.getty.edu/aat/300014069"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "8ee2d3ba-6d94-4a01-a256-895b28244bd1", "value": "toile (linen)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "48b51453-949f-4971-9f85-a92414c99414", "value": "linen (material)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7764512c-494b-46e5-ad33-223836c8518b"> + <dcterms:identifier xml:lang="en">{"id": "80416162-e6da-4ebd-a9f9-8a5fa53f50b8", "value": "http://localhost:8000/f2bd260c-a4ba-4b27-ba3b-961f37ca8016"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/3737266f-33a8-454e-98cb-34734756ec9c"> - <skos:prefLabel xml:lang="en">{"id": "541e3892-e8e1-4626-ae88-f45ead8eedaf", "value": "terracotta (clay material)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/804e24c6-f30b-4675-b4d4-49b0897b589c"> + <skos:scopeNote xml:lang="en">{"id": "f754119c-a014-4a1f-93d7-c8e9afa70a35", "value": "Refers to the practice of making photographs with a pinhole camera. Light-sensitive film or paper is exposed through a tiny, lensless aperture: the resulting images have very great depth of field, but lack critical sharpness."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "72eeb195-6865-4481-bdf2-c4d909fb701f", "value": "pinhole photography"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "b6c285c5-3d11-42a4-895c-e04493a30bf8", "value": "A baked or semi-fired material that is usually a mixture of clay, grog, and water; it has been used for pottery, statuettes, lamps, roof tiles, and cornices since ancient times. It may be glazed prior to firing. To produce an item, terracotta is molded or shaped, dried for several days then fired to at least 600 C. It is fireproof, lighter in weight than stone, and usually brownish red in color."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "49bb0236-01b1-45ce-9bf2-18499edc2359", "value": "http://vocab.getty.edu/aat/300010669"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "9eca253b-4167-4d7d-aa79-037bc8ef64d2", "value": "http://vocab.getty.edu/aat/300265124"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/26a58b62-1396-48f0-838f-9773a9a2c5e0"> - <dcterms:identifier xml:lang="en">{"id": "cabfb7a3-3e8a-4129-8fdb-037bccd31a03", "value": "http://vocab.getty.edu/aat/300011845"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/cb2a1f81-43a9-4c99-be9b-1624501a8c29"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "70e143c7-cfd7-49d0-8dd8-e39268921806", "value": "leather"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "c8c72ab1-d116-4565-a4f3-cff5ca3be36c", "value": "cuir"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "d9e49be2-fd70-43a0-9866-6919a8f9eaac", "value": "The skin or hide of an animal that has been tanned to render it resistant to putrefication and relatively soft and flexible when dry. For composite material made from scrap leather pieces, use \"maril.\""}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "0704a847-be58-4829-8fa9-7d561a96d439", "value": "high-speed photography (still photography)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "8dd29f2c-ae82-4eb7-add8-6bfaeb709848", "value": "Still photography in which the camera shutter operates at a speed much higher than normal."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "eb218899-9f1a-4a19-aa6f-82acfdbb2e69", "value": "http://vocab.getty.edu/aat/300053462"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:prefLabel xml:lang="en">{"id": "000aa66c-3785-4461-b8ef-6932876dd710", "value": "photography techniques"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/832eacc2-f7c9-449c-a6d0-8d938ab74bd8"> + <dcterms:identifier xml:lang="en">{"id": "606e6c7e-f2f5-4698-ab26-e0a73e9882d8", "value": "http://localhost:8001/832eacc2-f7c9-449c-a6d0-8d938ab74bd8"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en-us">{"id": "ccb0eaee-a4de-4d0a-8be8-a387799f55df", "value": "Personal Activity Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1914c881-21d4-4de3-8637-301b2178ebec"> - <skos:prefLabel xml:lang="fr">{"id": "377c2345-7746-4ec7-b732-d71ed9f4635c", "value": "aquarelle (peinture)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en-us">{"id": "81574d23-b3f7-4eb1-9cef-652cc98c9211", "value": "watercolor (paint)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "0857ab28-fe06-4bd4-84b4-198531ccd176", "value": "Aquarell"}</skos:prefLabel> - <skos:prefLabel xml:lang="pt">{"id": "63480b0a-bbe8-4949-889d-5796d01bc18b", "value": "aguarela"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/d4518c68-1a63-49fc-b515-a251cbdb76e9"> + <dcterms:identifier xml:lang="en">{"id": "e85c380c-4c8c-4743-8341-cb473fa2737e", "value": "http://vocab.getty.edu/aat/300393177"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "b9ce07a4-3480-4521-9893-e04c72368d09", "value": "active (professional function)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b185df50-754c-46ba-8329-f3f7b99373a0", "value": "Of people and corporate bodies, the state of being professionally active. A common example is in reference to dates associated with people or corporate bodies, where the specific dates, and sometimes loci, of birth and death are unknown; the term is commonly so-used in the discipline of art history for estimated life dates based on the oeuvre or other documentation of the artist. It may refer to the time of the artist's apprenticeship through old age, regardless of whether this was his or her most prolific period. For people other than artists and architects, prefer \"flourished,\" which has the connotation of demarking that time when the person has achieved full development or success. However, usage overlaps."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "7fc97ae6-3761-4f0c-a23c-be71c032506e", "value": "Transparent aqueous based paint produced by mixing ground pigments with water and, generally, gum arabic; paints made with vegetable gum binders were used by Egyptian, Greek, and Roman artists for wall paintings. Japanese and Chinese painters extensively used watercolor paints on silk panels and delicate paper scrolls. In the 16th through18th century, watercolor paints were used for miniature illustrations on porcelain, ivory, cards, books and manuscripts. By the 18th and early 19th centuries, watercolors rapidly increased in popularity due to the availability of small cakes of watercolor paints in metal pans, usually applied to a paper support by using a brush."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "412869de-e0b4-4763-b315-d454f59312ba", "value": "http://vocab.getty.edu/aat/300015045"}</dcterms:identifier> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/09c5997e-86f4-4689-bc6e-169e299acb9b"> + <dcterms:identifier xml:lang="en">{"id": "f3fc2d80-0d0f-4123-a211-b8aec724db80", "value": "http://localhost:8000/09c5997e-86f4-4689-bc6e-169e299acb9b"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "e7d4b0bf-f37a-4af3-aa0b-4f63152ef9f6", "value": "primary name"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/c5382a52-2102-4105-b96d-ddf6217d1a02"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ff9c8200-4c32-41c3-903a-8f0e92f3d013"> + <skos:Concept rdf:about="http://localhost:8000/0cb8fa21-80b6-4afe-aeca-c9863ed725d6"> + <dcterms:identifier xml:lang="en">{"id": "ff0c5c3f-ac71-4596-9303-606f0038ea29", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/place/found"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b8a952ed-2c65-4aa1-b172-bcf669bf4187", "value": "http://localhost:8000/ff9c8200-4c32-41c3-903a-8f0e92f3d013"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "c34def94-771a-47f8-a3cd-18aed38e1bdd", "value": "ink, iron gall"}</skos:prefLabel> + <skos:prefLabel xml:lang="en-us">{"id": "0c2addf5-880b-4c52-8aed-d1ef1cf97902", "value": "place found"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5f4346f1-126a-47fe-bd67-57a30353ef8b"> - <skos:scopeNote xml:lang="en">{"id": "7dd5312a-8258-4e8e-b89e-d6a266ac6b7e", "value": "Refers to sheets of gold that have been hammered or rolled very thin (typically around 0.1 micrometer, or 4 millionths of an inch, thick). In art, gold leaf has been applied to paintings, sculptures, manuscripts, and decorative arts since around 1500 BCE. In the 1920s, the process of creating gold leaf was successfully automated."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "b1a92a35-7f81-46c7-bcee-f9fa9e428a76", "value": "gold leaf"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/02899026-debc-4b08-8f8a-5750362ff27e"> + <skos:prefLabel xml:lang="en">{"id": "1314e0cf-88c1-44b6-93e2-d49d92119730", "value": "culture (concept)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "de6c5fd5-2639-4737-8256-858acb4e9551", "value": "The sum total of ways of living, artifacts, customs, and so on, built up by a group of people and transmitted from one generation to another."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "fd7066e1-5030-47dc-8942-f0707f686735", "value": "http://vocab.getty.edu/aat/300055768"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "70c73c1b-259c-496c-a544-0fb61a46e682", "value": "http://vocab.getty.edu/aat/300264831"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fcc0fc07-8d5c-4ab2-b77c-e48c56ff800b"> - <skos:prefLabel xml:lang="fr">{"id": "48c3f535-83d0-4b58-b440-4319cd31cdca", "value": "jade (pierre)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "d1e7d75c-7168-4459-9cb5-1956284a3164", "value": "General term for several varieties of hard and soft, fine-grained rock composed of jadeite, nephrite, serpentine, or other mineralogically related materials; usually having a color ranging from dark green to green-white. Jade takes a high polish and has been used since prehistoric times for jewelry, small utensils, carvings, vases, and other ornamental objects. Some processing techniques have been used to enhance the color of inferior stones: B-jade has been bleached to remove brown stains, while C-jade has been impregnated with resins to increase its translucency; A-jade is untreated. "}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "4f2bb375-c38f-44f5-a06b-af17997e2708", "value": "jade (rock)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/8907399d-9e31-4026-8ce9-7be964908a91"> + <skos:prefLabel xml:lang="en">{"id": "c422bf90-21ef-4626-9c5c-d259d01a6474", "value": "creation place description"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "e2c806fa-f5bc-49c7-b5af-83f0802d0640", "value": "http://vocab.getty.edu/aat/300011119"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "40efa4bc-7062-4b29-88bb-a2862b79b1ae", "value": "http://vocab.getty.edu/aat/300435448"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "2d1e0f16-097a-4eae-9b4f-893dc34946d0", "value": "A concise description of the location where the creation, design, or production of the work or its components took place, or the original location of the work. "}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b544f43a-f685-4091-bf79-f50191c0c32a"> - <dcterms:identifier xml:lang="en">{"id": "3c317761-edfd-4632-87b1-9ae4d9f6ea18", "value": "http://vocab.getty.edu/aat/300011101"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "8405d7f7-f903-4ec8-a876-aaed0d9a0f08", "value": "alabaster (mineral)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/0fff64d5-7aa5-4986-ae75-a684adec2dc6"> + <dcterms:identifier xml:lang="en">{"id": "05f64cb6-e718-45ac-b980-d66fcd4cd62d", "value": "http://vocab.getty.edu/aat/300055547"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "29f33c4c-cf20-4d8d-84ac-292bbe10264c", "value": "Alabaster (mineral)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "512be118-d51f-417a-b581-b0a53ef61cab", "value": "alb\u00e2tre"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "8f3a3426-9fbc-433c-a8cf-ec04412830e9", "value": "Fine-grained marblelike variety of gypsum that is easy to carve but is rather fragile; it has been used as a sculpture material, ornamental building work, vases, small decorative carvings, and powdered for use as a paper filler and paint pigment called mineral white or terra alba. Alabaster is usually a translucent white or pink but may also be a muted red, yellow or gray. It is soft and can be scratched slightly with a fingernail. It also dissolves slowly in wet environments."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "d65bfe4f-0ed2-4d34-9288-cf912ce0e8de", "value": "Social science concepts related to law."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "64231f36-8d5d-427b-b0c2-297ad6ecab93", "value": "rights statement"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6b389a46-6dcf-4ea0-af15-f11bae6fa6e2"> - <dcterms:identifier xml:lang="en">{"id": "0eee688e-6983-4ed4-96bd-15a4c8a545a2", "value": "http://vocab.getty.edu/aat/300012264"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "6fa4b002-a3ea-43a2-ba2e-0f2ab83a6509", "value": "oak (wood)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "1657f3ef-d6a3-490e-a622-93bfe8a31048", "value": "Eichen (Holz)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "6496ae20-1c8a-4e5b-94d0-9f794d7a0030", "value": "Wood of trees belonging to the genus Quercus, of the beech family. It is a durable wood that has a distinctive coarse grain, used in cabinetry, flooring, paneling, musical instruments, ship interiors and moldings, panel painting, and sculptures. "}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "08acfd32-f6c1-4542-83b1-aea1670a761a", "value": "ch\u00eane (bois)"}</skos:prefLabel> - <skos:prefLabel xml:lang="pt">{"id": "e293dc07-c326-4718-b922-7e250a8d369e", "value": "carvalho roble (madiera)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/e7971cff-8252-4ff7-bb18-58962dd92be2"> + <skos:prefLabel xml:lang="en">{"id": "6a9848d4-646c-44a3-bf83-543fcda8529d", "value": "editions"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "c641bbdc-1e54-45e5-9d3c-4e772bbce9cd", "value": "Auflage (editions)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "fbd0504e-2917-4304-88d3-df105287a851", "value": "Groups of multiples of one work issued together, such as of a book, print, photograph, or cast sculpture. All copies of a book, print, etc., produced from substantially the same master, and issued at one time are part of the same edition."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "acfcf04a-ef9c-4bcb-bc81-7a47634d6400", "value": "http://vocab.getty.edu/aat/300121294"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "6a95eb20-4f29-4ba6-b6bb-cac789dfc6c3", "value": "Gesamtheit der Reproduktionen eines einzigen Werks, beispielsweise eines Buches, Drucks, einer Fotografie oder einer gegossenen Skulptur. Alle Kopien eines Buches, Drucks etc. werden im Wesentlichen von der gleichen Vorlage erstellt und zur gleichen Zeit als Teil der gleichen Auflage ver\u00f6ffentlicht."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/80da44f6-5e55-4763-95d0-8e7cb2bf402c"> - <skos:scopeNote xml:lang="en">{"id": "2eed11a1-85e7-4d98-aa6a-f2371c7946a8", "value": "The modified form of dentin derived from animal teeth. The most common example is from the tusks of mature elephants; similar material is obtained from any tusked or large-toothed mammal such as a walrus or narwhal."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "1073af5b-7e28-4fd8-a423-eef562d5bf6f", "value": "ivoire"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "cba22495-8c68-4dab-9b05-1c9082eaa70c", "value": "http://vocab.getty.edu/aat/300011857"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/427a808f-e289-46e0-986c-58eeb697d884"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "9f83d3f1-9e27-44eb-9f36-c4424189747b", "value": "Ver\u00e4nderte Form des Dentin, das auf den Sto\u00dfz\u00e4hne von ausgewachsenen Elefanten, wie auch auf Sto\u00dfz\u00e4hnen oder gro\u00dfen Z\u00e4hnen von Walr\u00f6ssern oder Narwalen gefunden wird."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "092b6019-2cbf-4a84-a46c-d45120a0ac54", "value": "Elfenbein"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "b1fe97dd-eabc-436e-8650-87202773c445", "value": "ivory (material)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "67cb38ce-351c-4d25-8deb-432744ee122f", "value": "marques (symbols)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "b1145d42-bc90-40f3-bcd4-009cec1ef3c5", "value": "marks (identifying markings)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "86886187-5cbb-4b4e-88c0-f06ad533af1e", "value": "http://vocab.getty.edu/aat/300028744"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "470400ae-ef84-495a-806c-fcb078e2de77", "value": "Standardized symbols, notations, or other markings applied to objects during or after creation, conveying information such as the object's origin or maker, its authenticity, or a change in its official status. For lettering marked on something for documentation or commemoration, use \"inscriptions.\" For marks inherent in the paper support, not applied as part of the image or work, use \"watermarks.\""}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/63c1e2a4-da7f-41a1-b6d1-57b92a7ced66"> - <skos:altLabel xml:lang="fr">{"id": "a5cae432-6511-4ae2-9efb-359ecd8ac501", "value": "peinture \u00e0 l'huile (oil paint)"}</skos:altLabel> + <skos:Concept rdf:about="http://localhost:8000/5b1a15d7-f4ce-48ec-871f-d09b330feeb1"> + <dcterms:identifier xml:lang="en">{"id": "d1649443-ee3f-4c78-aad6-dfb77f33bc4d", "value": "http://vocab.getty.edu/aat/300055863"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "677f1d5a-23dc-41cd-83d2-79c22cac8c61", "value": "provenance statement"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "2803cf20-d208-4606-ae4c-c34170bedbc7", "value": "http://vocab.getty.edu/aat/300015050"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "6d4c42b0-5e09-431b-8227-4d34b674c54c", "value": "A paint made by grinding pigments with a drying oil such as linseed oil. After 1940 alkyd binders were often added to oil paint to provide faster drying times."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "0104fe1c-a2b1-4217-b6f2-b3b70e011e3e", "value": "oil paint (paint)"}</skos:prefLabel> + <skos:altLabel xml:lang="de">{"id": "8d018d67-9d42-4c5a-a7ee-98c10b1d49d2", "value": "Provenienz"}</skos:altLabel> + <skos:altLabel xml:lang="fr">{"id": "92ab4db3-9efe-4485-889f-36ed3ae6a5e3", "value": "provenance"}</skos:altLabel> + <skos:scopeNote xml:lang="en">{"id": "73d8c808-51bb-451c-9a4f-e52bd725fb85", "value": "The history of the ownership and transmission of an object, including previous locations of a work. "}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/54a65679-78fc-483a-81ef-0f760ab2c467"> + <skos:Concept rdf:about="http://localhost:8000/d12c085c-fa9a-4cc6-83b7-15031ce63c19"> + <dcterms:identifier xml:lang="en">{"id": "41f7dc61-5941-4ca4-9276-896b05a7be0e", "value": "http://localhost:8000/d12c085c-fa9a-4cc6-83b7-15031ce63c19"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "48fef225-2295-4cbc-a540-34bb25a2371f", "value": "chalk"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e67d08ec-faa1-415f-8c22-eec8ef1d6156", "value": "http://vocab.getty.edu/aat/300011727"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "fb241ebc-ae23-4172-abdb-32bb2f5769d6", "value": "A fine-grained limestone, or soft, earthy form of calcium carbonate; used chiefly in putty, crayons, paint, rubber products, linoleum, and as a pigment and abrasive."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "7060892c-4d91-4ab3-b3de-a95e19931a61", "value": "sampling motivation"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/219c15b1-a525-4833-aeeb-ec3c3bffc665"> - <skos:prefLabel xml:lang="en">{"id": "e28d7b1d-4bfc-44d4-a21e-bf3bb09ca08e", "value": "brass (alloy)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "8164fd5e-85c3-47fc-b4e1-5ceb96cd02ca", "value": "http://vocab.getty.edu/aat/300010946"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "772f685c-2701-44bf-b5f8-a60ea3145bbf", "value": "laiton"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/1b162cc8-1f31-4fb3-81f9-2479b21d01aa"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "19f6e0e6-f45e-49ae-be95-3fb37b8d641d", "value": "Alloy of copper and zinc, usually with copper as the major alloying element and zinc up to 40% by weight."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "ddaab46b-72e1-444d-9668-4e23e05bfeb8", "value": "http://vocab.getty.edu/aat/300435434"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "47e5072a-b6aa-44d5-b561-a8ec190e3f42", "value": "copyright/licensing statement"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "432b214f-7ea4-43d8-b599-611c53b181e6", "value": "A formal statement of the copyright or licensing of a work, and/or any restrictions placed on it. "}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/07dbe013-7dcf-4dd7-9df1-e72a9a855da5"> - <skos:prefLabel xml:lang="fr">{"id": "762460cc-8513-4229-ac85-2d45ee5e9fcf", "value": "bois"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "5362648d-ec0e-431e-9d72-22cc1aa7d5cc", "value": "http://vocab.getty.edu/aat/300011914"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/b4b5a0c9-edce-41a5-8df0-94b7e0e9631c"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "c0bea73c-b28a-4fcf-85de-6e5ff792ee48", "value": "The principal tissue of trees and other plants that provides both strength and a means of conducting nutrients. Wood is one of the most versatile materials known."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "c89a159f-d5b1-4f65-b2ef-755d70346c8c", "value": "wood (plant material)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "9c3cc9f8-6e75-4bc6-a167-26a7ccc82c2f", "value": "Zusammenfassung (Dokumentversion)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "2c6e825e-74bf-4121-865e-b2772c518243", "value": "Brief summaries that provide the essential points of written works, such as the content of a publication or of a journal."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "6ef879fe-c68f-4b96-b29f-0857c77f68ba", "value": "http://vocab.getty.edu/aat/300026032"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "d49c521c-8785-49bd-b849-0acd2b28be70", "value": "abstract / summary"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "57ad31f0-ca7c-46e2-9f34-25b2a02d6b35", "value": "Kurze Zusammenfassung, die die wesentlichen Punkte einer schriftlichen Arbeit angibt, wie beispielsweise den Inhalt einer Publikation oder einer Zeitschrift. "}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/3f3a9f75-25f2-4480-9a07-e84fd63712b8"> - <dcterms:identifier xml:lang="en">{"id": "5844fb2a-d7f3-4a5f-9440-96a44328f051", "value": "http://vocab.getty.edu/aat/300011222"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "82c674ce-4709-48d6-b743-2cf696a3cdf8", "value": "basalt (basic igneous rock)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "119a9d96-d2ce-4d51-a881-6c5a9f96c907", "value": "basalte (basic igneous rock)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "77748f9a-3081-4bbf-b023-366751c02e3b", "value": "A dense, hard, dark brown-to-black volcanic igneous rock, consisting of feldspar and mafic minerals such as augite or olivine."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"> + <skos:prefLabel xml:lang="en">{"id": "72202a9f-1551-4cbc-9c7a-73c02321f3ea", "value": "brief text"}</skos:prefLabel> + <arches:sortorder xml:lang="en-us">{"id": "eb83103e-1eb4-4724-a00e-34ec70d5e4f5", "value": "6"}</arches:sortorder> + <dcterms:identifier xml:lang="en">{"id": "0cd39704-9d55-4576-8652-f2c45e4d0828", "value": "http://vocab.getty.edu/aat/300418049"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "78e2eb4d-af8c-4310-905e-77869e8ea9ce", "value": "Documents comprising texts that are relatively short in length, sometimes but not always abbreviated versions of longer texts."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b5366c4d-3d1f-4643-982f-9aadf4ff17a7"> + <skos:Concept rdf:about="http://localhost:8000/8d1180e7-b308-4402-b2a4-ed5322c2a90c"> + <skos:prefLabel xml:lang="en">{"id": "762d2754-9b32-4300-913b-203caddbb43a", "value": "materials / media"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "2336cee1-fbf2-46a1-a02e-4f2851055525", "value": "http://vocab.getty.edu/aat/300010358"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "f6525a55-e933-4b0b-a095-f125ad580bde", "value": "The matter or substance from which a thing is or may be made; the tangible substance that goes into the makeup of an art work or other physical object. Physical substances, either naturally or synthetically derived, range from specific materials to types of material. Materials may be designated by their properties, or by function or form. Included are raw materials and processed materials."}</skos:scopeNote> + <skos:altLabel xml:lang="fr">{"id": "a0d7123c-e9ab-4668-9ff9-c17e05f45fc2", "value": "mat\u00e9riaux (materials concept)"}</skos:altLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "1d6dc014-56e7-4295-9db0-f503ad1590dc", "value": "pastel (material)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "74843224-cece-46c1-83a9-f65684396cdf", "value": "http://vocab.getty.edu/aat/300404632"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "932ef404-a1f2-452e-9270-1f4ed9e5b394", "value": "General term for various combinations of ground, powdery pigment and aqueous binder that are used in drawing and dry painting, delivered via a crayon or stick. Pastel as a material is soft and blendable. For the crayons or sticks containing the pigment and binder, use \"pastels (crayons).\""}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ec551d7f-31d6-49ad-b812-38e5fc2a6436"> - <skos:scopeNote xml:lang="en">{"id": "4093b608-7bc8-4dd9-a5e4-ab3efccd6725", "value": "Calcium sulfate hemihydrate, a white powder, which sets rapidly upon the addition of water; used for molds, sculpture, casts."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "beb99da6-0c2c-4517-9f70-f22e071712d6", "value": "plaster of Paris"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "969365cd-0993-49ae-bdb6-4304a92caa5a", "value": "http://vocab.getty.edu/aat/300014927"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "57aff715-772a-4f61-bf69-b214bd4b8466", "value": "pl\u00e2tre de Paris"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/e0b23285-bd55-43d8-9cef-f28df2e2a44e"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "9042e16b-59eb-40d3-a3e6-e55c43f24456", "value": "instrument settings"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "3aac6a49-d888-4f39-90ba-9fcb80554b3f", "value": "http://localhost:8000/e0b23285-bd55-43d8-9cef-f28df2e2a44e"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/120c64e0-3f4a-4f2a-accb-8b9e1a6d6f37"> - <dcterms:identifier xml:lang="en">{"id": "09b45dce-c9c7-4811-b482-996ac2218ece", "value": "http://vocab.getty.edu/aat/300011020"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "a675b272-00e1-4961-ad9a-dbc904808986", "value": "cuivre (metal)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "9c84476d-8134-44ec-8d87-393138e233c1", "value": "Kupfer"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "cec0161e-0be5-46ad-a8c0-7a8a0e1ee398", "value": "Pure metallic element having the symbol Cu and atomic number 29; a reddish brown, ductile metal that is present in the earth's crust, occurring as a native metal and as ores of sulfide, sulfate and carbonate (azurite, malachite, etc.). It was the first metal used by humans, probably from about 8000 BCE, in the regions of Mesopotamia and India. By about 3800 BCE copper was made into bronze for weapons and knives. Today, copper is one of the most widely used metals because it has high electrical and thermal conductivity, can be easily fabricated, is ductile and polishes well. In moist air, copper forms a protective green film of basic carbonate. Metallic copper combines well with other metals to form alloys, most commonly brass and bronze. Copper and its alloys are used for wire, electrical devices, pipes, cooking vessels, ammunition, ornamental trim, roofing, grillwork, coins, musical instruments, jewelry, and sculptures."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "79de49c2-5fd7-4c0e-9687-8940b5f05c5f", "value": "copper (metal)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/e49fda8f-fc61-47e3-9d66-127323d9aadb"> + <skos:scopeNote xml:lang="en">{"id": "7c44ab4a-ea26-408d-8aa4-d7dec66a5530", "value": "Proper names of geographic locations, such as a nations, empires, towns, villages, hills, or lakes."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="pt">{"id": "7973582f-da65-4eda-a7da-23048b97528d", "value": "cobre"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0ce9c124-76d2-443a-9745-088a3063bf44", "value": "http://vocab.getty.edu/aat/300404655"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "e67dccd9-5deb-4b23-81da-65c68b5ba18e", "value": "place names"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/24b976c1-14c5-4606-a686-08f7d5fb8e7c"> + <skos:Concept rdf:about="http://localhost:8000/a23a8cda-73a8-4a44-922b-f05882fa797b"> + <skos:prefLabel xml:lang="en">{"id": "2dbfecd3-1f08-4912-9742-050243c50eff", "value": "procedure"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e02da96d-6ca3-4fc3-bb1a-220a9fadd661", "value": "http://localhost:8000/a23a8cda-73a8-4a44-922b-f05882fa797b"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "b0e0c72f-72d9-4b78-976f-43ccfc52975e", "value": "Paint made from oil, resin, varnish, or a combination of these, mixed with finely ground pigment; usually giving a glossy finish, but sometimes giving a semigloss or flat finish."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "f617372a-c5c6-44c5-8088-76ee703c5658", "value": "peinture-\u00e9mail"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "bc6fca9f-54f8-4cb8-8f9a-cb85adfd0215", "value": "http://vocab.getty.edu/aat/300147678"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "e1fd8e3c-117e-458b-8c64-fe9588591d12", "value": "enamel paint"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e04f3be0-f4e4-49c6-9330-00e4401d7c0e"> + <skos:Concept rdf:about="http://localhost:8000/bb798e77-861d-47d8-a19b-5e9b25b6633d"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "0dce9a5f-e53b-4ee8-8334-561c030e2b29", "value": "glass (material)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c275b876-1f8a-4173-8747-d4ae49333edc", "value": "http://vocab.getty.edu/aat/300010797"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "e33df998-8645-4e6a-9ebc-5641f7b60905", "value": "An amorphous, inorganic substance made by fusing silica (silicon dioxide) with a basic oxide; generally transparent but often translucent or opaque. Its characteristic properties are its hardness and rigidity at ordinary temperatures, its capacity for plastic working at elevated temperatures, and its resistance to weathering and to most chemicals except hydrofluoric acid. Used for both utilitarian and decorative purposes, it can be formed into various shapes, colored or decorated. Glass originated as a glaze in Mesopotamia in about 3500 BCE and the first objects made wholly of glass date to about 2500 BCE."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "5af9f3fb-212c-4b49-8789-9ae4612450ce", "value": "verre (material)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "cd454817-22de-410a-b982-965a53b189b4", "value": "signatures (names)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "562b64a7-796b-4507-9071-218ae32da275", "value": "Der eigenh\u00e4ndig geschriebene Name einer Person."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "d9b156ed-c7e8-4cfc-a884-e41e64a593c0", "value": "Unterschrift"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "96b5cf60-1e4a-47bc-ad84-009c2c6941b2", "value": "http://vocab.getty.edu/aat/300028705"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "167b0735-6cfd-435e-8c9a-f63881cd58a1", "value": "Persons' names written in their own hand."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/48865afd-d693-4781-9e20-9bc423b310f2"> - <dcterms:identifier xml:lang="en">{"id": "f93f2101-2805-4a1a-b8b9-3c378994db28", "value": "http://localhost:8000/48865afd-d693-4781-9e20-9bc423b310f2"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/77617e19-4102-4f2c-9a8c-4bb118d0d61d"> + <skos:altLabel xml:lang="de">{"id": "fb978259-378d-4f20-89d2-4edf6a1c4ec0", "value": "Biografie (Dokument)"}</skos:altLabel> + <skos:scopeNote xml:lang="de">{"id": "3805ae60-c0b2-4925-9bab-5006b600b4df", "value": "Schriftlicher Bericht \u00fcber das Leben einer Person."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "ac90d741-4d88-4d3b-b1eb-140f6f77aa56", "value": "ink, modern"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "2074eaca-85bd-42fa-b5f2-88cdb858fa26", "value": "Written accounts of the lives of individuals. For the genre regardless of medium, prefer \"biography (general genre).\""}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "8f86681e-cbdd-4cc5-9569-28b2171aebd7", "value": "biography"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "757838b1-6d8e-490e-9898-b1440c1b9f14", "value": "http://vocab.getty.edu/aat/300080102"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7efca7ef-8ab1-4bb6-8b72-d93f4b9f46be"> - <dcterms:identifier xml:lang="en">{"id": "e1fd900a-f9a6-4be1-9809-c46e0ae84076", "value": "http://vocab.getty.edu/aat/300235507"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/d835a4c9-22a2-4200-aa9e-50a7f09ce915"> + <skos:scopeNote xml:lang="en">{"id": "04171cc4-6a9f-46d5-baec-83a864626be1", "value": "Condition is the overall state of an object, being, or environment, including physical characteristics such as appearance, pristineness, level of damage, completeness, working order, or quality."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "56983cde-0b6f-4589-987b-953b928c6326", "value": "Refers to any of various hard, brittle, heat-resistant and corrosion-resistant materials made by shaping and then firing a nonmetallic mineral, such as clay, at a high temperature."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "aa6d1a64-748b-45ae-8a01-8a1010f2c04c", "value": "ceramic (material)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "6db0bd9a-c7e9-487a-9869-934ee03c07a3", "value": "c\u00e9ramique (material)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "72c01bf3-60a3-4a09-bc33-ddbd508c145f", "value": "condition"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "ae0fa4e7-4714-4134-99ba-acb46d2ee5e7", "value": "http://vocab.getty.edu/aat/300389724"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/de996050-7ddc-406d-8310-aee48759bce8"> - <dcterms:identifier xml:lang="en">{"id": "960a5e89-dfe6-4198-8495-2867df4809a1", "value": "http://vocab.getty.edu/aat/300183750"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "507907f9-16f5-4128-8bf1-16e1a282cac1", "value": "Paint created by mixing dry pigments with molten wax, usually beeswax. Sometimes small amounts of natural resins, such as dammar or Venice turpentine, are added for hardness. Oils, such as linseed oil, are added for increased workability. Encaustic paint was used as early as the 4th and 5th centuries BCE in Greece. The paint was applied warm with a spatula or brush. It hardened quickly and fused to the surface. "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/fb0a9c3f-02e5-44ac-8e39-266ac9460dcb"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "eb3a43da-118b-4d20-9c56-c3dfcd318b64", "value": "encaustique"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "2c3e7f8d-f3a9-4806-8620-149312134d41", "value": "encaustic paint"}</skos:prefLabel> - <skos:prefLabel xml:lang="pt">{"id": "c3e17fad-cd6c-48f1-88be-990a4cd063d5", "value": "pintura a enc\u00e1ustica"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "39fa0ce3-e27f-4515-ba15-c37850f58483", "value": "http://localhost:8000/fb0a9c3f-02e5-44ac-8e39-266ac9460dcb"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "fae35770-39bb-4883-ac73-2275d06f05af", "value": "manufacturer information"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f772e177-dd72-4808-bdfe-0bbd404fd101"> - <skos:scopeNote xml:lang="en">{"id": "8313afbd-f8eb-41bf-ba3d-7fb769c983a8", "value": "A hard, strong construction material comprising a mixture of sand, gravel, crushed rock, or other aggregate, held together, typically by a hardened paste of cement and/or lime. Several types of aggregate are used such as crushed stone, slag, cinders or gravel. Ancient Romans developed pozzolan cement about the 3rd century BCE. Modern concretes use various cements such as portland or hydraulic. Concrete is durable and relatively inexpensive, used for foundations, bridges, dams, walls, and highways. Concrete is strong in compression but weak in tension so it is often reinforced with steel bars or wire netting. Once a concrete mixture is stirred with water and poured into a mold, it is allowed to cure slowly over about a week. Stresses, such as vibration, freezing, and rapid drying, will diminish the strength and durability of the concrete. As it ages, concrete is subject to erosion, spalling, and pollution. Poor mixing can cause erosion. Spalling can be due to freeze-thaw cycles of moisture and ice, salt crystallization, or corrosion of steel reinforcements. Acid rain can deplete the natural alkaline reserve of fresh concrete."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/4359e806-8987-48fc-ae44-5695dac48fcf"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "62545fe8-a3ce-40fd-b5e9-69ffde5d9c2b", "value": "http://vocab.getty.edu/aat/300010737"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "eeee5e68-9942-479a-8e52-ea0cfbc2dff2", "value": "b\u00e9ton (concrete)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "49dcff2e-2711-4af8-a3a3-5eff499d1532", "value": "concrete"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "4f0d696a-bce0-4cd3-9bba-26419ee336a8", "value": "Standards, codes, laws, rules, and principles that are considered proper, correct, or consonant with justice, and related uses regarding what is permitted and forbidden in a particular country, society, or community."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "802107f1-d5e3-44fb-8a99-9b98dc44b072", "value": "rights (legal concept)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "ab682351-39ce-4d84-827d-a23a403d6d3c", "value": "http://vocab.getty.edu/aat/300417696"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:prefLabel xml:lang="en-us">{"id": "38706f59-ca8d-4ea2-882d-7c74b56e6050", "value": "Statement Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/632c865f-3eba-43a6-9b2f-a7b9c4bf7970"> - <skos:scopeNote xml:lang="en">{"id": "8b4beac5-2beb-4367-a9d5-2cfa9b866a9a", "value": "A dark purplish-red rock, first quarried in ancient Egypt, containing relatively large crystals in a fine-grained igneous matrix. One of the hardest rocks, it takes a high polish and is valued as a durable sculptor's material and as a decorative architectural material. It is considered the best material for the muller and slab used for grinding artists' colors."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/a5538b87-8a0b-43a2-b4cf-e3fda813d888"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "6b953b8b-a786-42bd-8d3a-20572175d6cd", "value": "porphyry"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "38c3d3ea-6537-460e-8647-d19f03bef6f4", "value": "http://vocab.getty.edu/aat/300011232"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "09dc6e87-683b-48bc-9826-8b666409911d", "value": "configuration"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "ccf273e6-24fc-4a9c-8db5-39e6422347ca", "value": "http://localhost:8000/a5538b87-8a0b-43a2-b4cf-e3fda813d888"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/27a55f27-4725-4440-bfd3-725cdebbf2ed"> - <skos:scopeNote xml:lang="en">{"id": "b64355cf-019b-411d-8f03-80fe682d24f1", "value": "Any solid or semi-solid substance that is slightly greasy to touch, usually solid, translucent, and has a low melting point; waxes are not a chemically homogeneous group. Waxes are composed of long chain hydrocarbon compounds, and may contain esters of fatty acids and alcohols, are thermoplastic and melt at low temperatures of between 40 and 100 C. In general, waxes are water-repellent, smooth, soluble in organic solvents, and classified as animal (e.g., beeswax), vegetable (e.g., bayberry), mineral (e.g., paraffin), or synthetic (e.g., polyethylene). Waxes are used for polishes, candles, crayons, sealants, coatings, adhesives, waterproofing, carbon paper, media in encaustic and wax emulsion paintings, and as repellents in wax-resist watercolor paintings."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "06460f46-75f1-4356-a142-b064ca31fd84", "value": "wax"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "486ef8db-55d3-414e-b31b-14e3c436ac60", "value": "http://vocab.getty.edu/aat/300014585"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "0b5ab7cc-0d7d-4f24-be20-d5893c3cc5ab", "value": "cire (wax)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/c13e1882-c0c8-4044-8fff-1268ea9c721f"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "7a63ea15-4ca9-4aa6-8d52-0f847366e45a", "value": "http://vocab.getty.edu/aat/300435418"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "1717441f-2b94-4ade-91cb-d6460eac9855", "value": "credit line"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "3dfe6645-582c-4190-9fcc-96682a8b970b", "value": "For art information, a brief statement indicating how the work came into the current or an earlier collection or how it came to be on view at the repository. "}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/6ad4a9e8-b48e-4338-9fc4-fa7509dec88e"/> - <skos:prefLabel xml:lang="en-us">{"id": "23c5f3c6-b135-49e9-9f12-10e7c74491d9", "value": "Materials"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8ba2b3a6-c41e-4509-95f6-e2e2fcec3901"> - <skos:prefLabel xml:lang="pt">{"id": "f3f85691-d8c8-417d-972d-8e9782de488f", "value": "resina metarilica"}</skos:prefLabel> - <skos:scopeNote xml:lang="pt">{"id": "18134eaa-67e9-4664-892a-fab505668279", "value": "Resina sint\u00e9tica termopl\u00e1stica incolor, transparente, produzida pela polimeriza\u00e7\u00e3o de derivados do \u00e1cido acr\u00edlico; usado para adesivos, fibras, consolidantes, revestimentos de prote\u00e7\u00e3o, acabamentos e como meio de pintura."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/5bd94b1d-b8b0-44fb-8e1a-fab715b2e8d0"> + <skos:scopeNote xml:lang="en">{"id": "04cf2a40-7238-41f5-98fb-7e89f887af99", "value": "Information about the dimensions, size, or scale of the work, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. It may include the scale of the work. It may also include the number of the parts of a complex work, series, or collection. "}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "63c0fa68-2cbf-4433-a880-086eca528d9c", "value": "dimensions description"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "56710c6a-132b-45ce-8a38-f0660e768ee8", "value": "acrylic (resin)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "0fa3ee27-2e4a-4c67-b438-a1bb56b4f77f", "value": "acrylique"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a708a5f6-cbff-4fb4-bdf3-3fd23d474292", "value": "http://vocab.getty.edu/aat/300014426"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "53487a69-a7df-459c-bfd6-5ec7e5e0a992", "value": "Colorless, transparent, thermoplastic synthetic resin made by the polymerization of acrylic acid derivatives; used for adhesives, fibers, consolidants, protective coatings, finishes, and as a paint medium."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "dd648f8a-3d9e-46cf-8812-066e95e85d44", "value": "http://vocab.getty.edu/aat/300435430"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"/> + <skos:narrower rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/58a9665f-e444-445a-8736-b76641edccbe"> - <skos:prefLabel xml:lang="fr">{"id": "0dc09970-ba15-457f-bb15-e746b82748eb", "value": "carton (papier)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/2ddfe0e3-e6de-4d0c-a521-389cbeb24955"> + <skos:prefLabel xml:lang="en">{"id": "2eef4771-830c-494d-9283-3348a383dfd6", "value": "interpretation"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c2fbefa8-02fd-4e38-b8b3-14b4fca915db", "value": "http://vocab.getty.edu/aat/300226183"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "ac4b4cd0-9f43-48d0-8c08-5156410d31da", "value": "Karton (Papier)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "f35b6e69-e107-41ed-ae57-c690cf0c8cdb", "value": "cardboard"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "bd786dac-f2d9-45a9-9c9e-782b83f99280", "value": "A type of stiff pasteboard that is thicker than 0.006 inches, typically consisting of good-quality chemical pulp or rag pasteboard, and varying greatly in type and stability. High quality archival cardboard is made from rag pulp and has a low acid content, used for mounting prints, drawings and watercolors. Other grades of cardboard is used for cards, signs, printed materials, and high-quality boxes. Inferior grades of cardboard, such as corrugated board, are made from coarsely ground sulfite treated wood pulp; for this board, use \"corrugated board.\" The first carboard box was produced in England in 1817. Corrugated cardboard was patented in 1871."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "5dc5a9f5-45da-4046-972b-d2189dc4dbca", "value": "http://vocab.getty.edu/aat/300014224"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "6d9b3873-7749-4209-9baf-23d355aa1ff6", "value": "Explanation of what is not immediately plain or explicit, as in suggesting what meaning is to be found in a set of data or in a visual work."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e59715c4-875b-4b50-8bb9-9f0597a6d6fe"> - <skos:prefLabel xml:lang="en">{"id": "1be33bdb-2b0a-48a5-a7a1-714d3bbe5f4f", "value": "charcoal (material)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "281eed25-2063-4c6d-b85c-fda091246202", "value": "http://vocab.getty.edu/aat/300012862"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "4aaf0d86-8fca-4c55-8b92-d8c17d0cfd13", "value": "charbon (charcoal)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "b5f0e695-3614-4353-a4f8-0ff1a00145eb", "value": "A black, porous carbonaceous material comprising the carbon-containing residue from burned wood (e.g., willow, maple, beech, linden or plum) or other organic containing materials such as bone, plants or animals. It is used as a drawing material, for filtering liquids or air, and for other purposes."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/bbe4af0a-867a-407f-8531-3ec4f6240090"> + <skos:scopeNote xml:lang="en">{"id": "7a7ca2dc-54be-4a30-b205-e19137dd945c", "value": "Generally, the overall configuration of the numbering in the book. The ordering of pages of a book, microimages on a microfilm, etc., by placing placing of consecutive numbers, one on each page."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "75a0bbb3-f3b0-46e0-8ca6-74ce1a9d8fdd", "value": "http://vocab.getty.edu/aat/300200294"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "5a71d448-e0aa-4064-b6ab-9ddaa78d8f07", "value": "pagination"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "6060b4e3-a735-4cdf-bb21-15364158faf4", "value": "pagination"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "0ee34330-5135-47b9-b19f-d164e2d94837", "value": "Paginierung"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1a3258bc-2083-41b0-aff6-705ba1b2fe03"> - <dcterms:identifier xml:lang="en">{"id": "ad1f9b0d-db43-49d3-974f-88a4b8b0bd68", "value": "http://vocab.getty.edu/aat/300070114"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/79f44e59-670d-408d-9439-0c6810523d5e"> + <skos:scopeNote xml:lang="en">{"id": "81adcfaa-5c15-462b-8653-4f25d54bf1b9", "value": "Measurable or spatial extent of any kind, such as length, breadth, thickness, area, volume, measure, magnitude, or size."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "d86c2aa3-0f74-4e17-bcea-3d74dc4fd95c", "value": "http://vocab.getty.edu/aat/300266036"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "92f066e9-e38e-4eda-82f0-3a1f0dce4ec3", "value": "dimensions"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "53b5b856-d3d6-47b4-9735-df7ac4b12ffc", "value": "gouache (paint)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "1f957513-3b2e-4c45-a9d5-f09f84fad45d", "value": "A matte, opaque watercolor paint typically having gum arabic, gum senegal, or dextrin as a binder. Gouache paints differ from watercolor paints, which use transparent pigments. Chalk and other white fillers may be added to some colors. Gouache was used for miniature paintings in the 16th-18th centuries, for decorative paintings on interior walls, and for printing wall paper patterns. Poster paints are an inexpensive version of gouache. The term originally had a different meaning, referring to oil applied on top of tempera painting."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "4f046732-21d4-4b9c-aee4-61d21ed0193d", "value": "gouache (pientre)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/df4f12d3-48ca-49af-8e96-edc6d52af481"> - <dcterms:identifier xml:lang="en">{"id": "9908f73e-64ce-46c7-b5a4-996c9c3eb22e", "value": "http://vocab.getty.edu/aat/300015062"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "f8a3d50d-1701-4fd6-ad39-c6f0eec47708", "value": "tempera"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"> + <dcterms:identifier xml:lang="en">{"id": "db91fa18-9667-49dd-a491-3c73998b4b79", "value": "http://vocab.getty.edu/aat/300404764"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "a36657d3-39b3-4e0c-9864-c474eabcebb6", "value": "Paint formed of an emulsion of fatty and watery constituents. The standard emulsion is usually created with egg yolk and water, with variants of man-made emulsions created with whole egg, linseed oil, casein glue, gum, or wax."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "4e6e94c1-3bb1-4465-83af-f3967b54bb62", "value": "sources (general concept)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "8a30704d-317b-4f38-bc5a-913ccdf07962", "value": "The originating cause or substance of some material thing or physical agency, or the conceptual inspiration for a conceptual thing."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/49b09fc6-d1e1-46a7-a500-9089a68027eb"> - <skos:scopeNote xml:lang="en">{"id": "fb6751e8-7e46-4923-8c84-0809d11229ef", "value": "Refers to a broad range of alloys of copper, specifically any non-ferrous alloy of copper, tin, and zinc or other trace metals. Bronze was made before 3,000 BCE -- possibly as early as 10,000 BCE, although its common use in tools and decorative items is dated only in later artifacts. The proportions of copper and tin vary widely, from 70 to 95 percent copper in surviving ancient artifacts. Because of the copper base, bronze may be very malleable and easy to work. By the Middle Ages in Europe, it was recognized that using the metals in certain proportions could yield specific properties. Some modern bronzes contain no tin at all, substituting other metals such as aluminum, manganese, and even zinc. Historically, the term was used interchangeably with \"latten.\" U.S. standard bronze is composed of 90% copper, 7% tin and 3% zinc. Ancient bronze alloys sometimes contained up to 14% tin."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "323c36bb-ce70-4b80-acd5-1b97458f3363", "value": "bronze (metal)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "1b848a90-6844-4b86-82c3-ed3f9e303725", "value": "bronze (metal)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c53be465-945e-42df-a7b0-b6f8c1ab1e72", "value": "http://vocab.getty.edu/aat/300010957"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/dff974ca-a3eb-479f-bbc3-15cba25c7136"> + <skos:prefLabel xml:lang="en">{"id": "fec5d442-5712-4cb8-ac2b-9ca03522f4a4", "value": "signatures (names)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "2bc20a91-fe91-45ac-a9b2-f89551bffb38", "value": "Der eigenh\u00e4ndig geschriebene Name einer Person."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "51a60723-4f00-42d5-8438-3edf6b36a02f", "value": "Unterschrift"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "97711cb3-fd01-4648-9552-23df358099d9", "value": "Persons' names written in their own hand."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "5f4ee6f9-422e-4edd-8a59-95e1359b4a5d", "value": "http://vocab.getty.edu/aat/300028705"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/36c303a8-d7fb-4030-93a4-3a874cf70034"> - <skos:prefLabel xml:lang="pt">{"id": "3adb7ce5-8161-462c-9a01-e86bd76465fe", "value": "ouro"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/94326469-5f79-4830-96be-0beb2d3cfc6f"> + <dcterms:identifier xml:lang="en">{"id": "59ad89bd-a36d-4809-8b4e-5ee14fee17fa", "value": "http://localhost:8000/94326469-5f79-4830-96be-0beb2d3cfc6f"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "24f53bfd-2c69-4cbb-a66a-812c14af854e", "value": "or (metal)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "fa50f246-440c-438d-a89a-cc2b8c62bf07", "value": "gold (metal)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "3e855e4a-4782-47ae-aea7-a63167b4825e", "value": "http://vocab.getty.edu/aat/300011021"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "cab0def7-abc1-4dd8-8c92-e8ea42df6dcd", "value": "Gold (metal)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "7453ac05-053b-44cb-b8a9-8754b00f06a9", "value": "Pure metallic element having symbol Au and atomic number 79; a soft, inert, shiny reddish yellow metal that is very malleable and ductile. Gold has been highly valued and found in artifacts dating to before 5000 BCE. Native gold, found in quartz veins (vein gold) and alluvial deposits (placer gold), generally contains some silver and copper. Gold is purified by dissolution in mercury or cyanide solutions, by melting, or by electrodeposition. The purity of commercial gold is expressed in karats which is the number of parts of gold in 24 parts of the alloy. Today gold is primarily used for monetary systems and for jewelry."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "12c0c89e-6c49-44c6-89f7-6a83ce529f35", "value": "hypothesis"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/970f32df-c784-49e7-a83c-93174fd63cb3"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/4013bc24-e4cf-479d-9ed9-775843ff259b"> - <skos:prefLabel xml:lang="fr">{"id": "18f16d1e-188e-4c9f-a24d-d78ff9303076", "value": "fer"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/4cd39562-1f73-4b78-9021-0b3a0e0be0e3"> + <skos:scopeNote xml:lang="de">{"id": "3a13b1c9-64b3-4cfa-b99f-902014dd899a", "value": "Aufzeichnung \u00fcber die etablierten Formen und Methoden der Gesch\u00e4ftsf\u00fchrung eines Unternehmens, eines gesetzgebenden Organs oder eines Gerichtshofes."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "60d1e09c-0f14-4348-ae14-57fdb9ef87c4", "value": "procedures (documents)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "1e21b581-7599-4e56-ac9f-397f31919721", "value": "Eisen"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "b670133a-e1e0-47f7-a5f8-2c163f822d66", "value": "Pure metallic element having symbol Fe and atomic number 26; metallic iron is silvery in color, lustrous, soft, ductile, malleable, and slightly magnetic; it rusts when exposed to moist air. It is rarely found as a native metal (telluric iron) except in meteorites (meteoric iron). Iron is most often found throughout the world as iron oxides (hematite, magnetite, limonite, and siderite) mixed with other ores."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "9a0a4933-3cb4-447b-aa7e-4ea85e69a5bb", "value": "http://vocab.getty.edu/aat/300011002"}</dcterms:identifier> - <skos:prefLabel xml:lang="pt">{"id": "73d913eb-c3e2-432c-82dd-309714828d06", "value": "ferro"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "772e4c13-03ea-4723-9903-20ae54d396e9", "value": "iron (metal)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "40dc7e48-5dd4-4553-b7d8-3230ff487473", "value": "http://vocab.getty.edu/aat/300109733"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "d1eacc57-5f4f-41d2-9315-d40ef496555f", "value": "Verfahrensweise (Lehrmaterial)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "449503eb-e571-4eb9-8e05-ab9308668e5f", "value": "Records of established forms or methods for conducting the affairs of a business, legislative body, or court of law."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "e15ff061-1381-4c2d-9d5b-94f270124874", "value": "http://localhost:8000/c5382a52-2102-4105-b96d-ddf6217d1a02"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/f147d843-7622-4109-bd73-c7fb05f1adea"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/34b081cd-6fcc-4e00-9a43-0a8a73745b45"> - <skos:scopeNote xml:lang="en">{"id": "9d269e55-92b7-4aa7-baee-8cba8b35e64e", "value": "Fine-quality calf or lamb parchment used for writing, illuminations, or binding books. The terms \"vellum\" and \"parchment\" are sometimes confused and used interchangeably."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "7ea85398-8b0e-4a42-a86d-809f3e8abe53", "value": "Schreibpergament"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "281dabad-97a0-4290-a7e2-f158c5f1b3fb", "value": "http://vocab.getty.edu/aat/300011852"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "a83a8389-607f-4fbc-8f4a-df73bd0561be", "value": "v\u00e9lin"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"> + <skos:altLabel xml:lang="de">{"id": "7b2be39c-a566-47fa-9da0-fbdc6b6595c9", "value": "Notiz (Dokumentengattung)"}</skos:altLabel> + <skos:scopeNote xml:lang="en">{"id": "84657b06-b204-46c0-b603-2672fb9ece97", "value": "Brief statements of a fact or experience, written down for review, or as an aid to memory, or to inform someone else; also includes short, informal letters."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "48e87a99-7db5-44a0-addd-e7937bb7890a", "value": "vellum (parchment)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "5e89d4e0-392c-4ad4-bd02-e5254e8a4740", "value": "note"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "5bc68a4a-6e25-49e4-9e41-7aee5406311d", "value": "Kurze Angabe \u00fcber eine Tatsache oder ein Erlebnis, niedergeschrieben zur \u00dcberpr\u00fcfung oder als Erinnerungshilfe, oder um jemand anderen zu informieren; schlie\u00dft auch kurze, formlose Briefe mit ein."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "92b2b3c9-3a8f-41ed-bc78-6536cecadf5e", "value": "http://vocab.getty.edu/aat/300027200"}</dcterms:identifier> + <arches:sortorder xml:lang="en-us">{"id": "82321f00-84db-4855-87b5-af64c6dd1a2d", "value": "1"}</arches:sortorder> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/74ecdce5-765d-4de1-9a62-a24bd47f5b79"> - <skos:scopeNote xml:lang="en">{"id": "17acd818-9717-4744-833f-e7de4003f7b0", "value": "Closely woven textile made in various weights, usually of flax, hemp, jute, or cotton, used especially for sails, tarpaulins, awnings, upholstery, bags, and as a support for oil painting. "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/d9de4418-386a-4563-a212-ed3994ef8fbe"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "b5537ca3-b1dd-4ebc-833f-8e85b2a94882", "value": "canvas (textile material)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "239a5129-c2a2-4ea5-b458-f77e16bccb54", "value": "Leinwand"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "af07451a-fd47-4fe6-b5de-edf21da00b29", "value": "http://vocab.getty.edu/aat/300014078"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "646232ff-56e4-41e1-998f-8f58eb731cd8", "value": "toile (mat\u00e9riau textile)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "92ed2ca2-3fdd-464f-894c-157601d17267", "value": "http://vocab.getty.edu/aat/300200662"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "1773b715-8ed8-4793-92b1-a8b1b3b069e4", "value": "The placing of consecutive numbers one on each folio of a book; may also refer to the overall configuration of the numbering in the book."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "ba21a6bd-7c51-45bb-b8b9-1555ec4d5eb3", "value": "foliation"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2023db9b-d735-4ecf-91be-ef1fcf7110bc"> + <skos:Concept rdf:about="http://localhost:8000/7be0d823-b871-4006-9eed-e0351c604f05"> + <skos:prefLabel xml:lang="en">{"id": "7100d304-bc56-4e4c-bc3a-fa3ec539d979", "value": "materials/technique description"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "f8a04f0f-b202-42ea-923c-8353fb2b824f", "value": "An indication of the substances or materials used in the creation of a work, as well as any implements, production or manufacturing techniques, processes, or methods incorporated in its fabrication, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. For works on paper, descriptions of watermarks may also be included."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "bed43d5a-4e57-42d5-bfdf-cadf996631e2", "value": "Papier"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "0c45ab0b-35f2-4c17-b400-85fe8b2442ba", "value": "Refers generally to all types of thin matted or felted sheets or webs of fiber formed and dried on a fine screen from a pulpy water suspension. The fibers may be animal, such as hair, silk or wool, or mineral, such as asbestos, or synthetic. However most paper is made from cellulosic plant fiber, such as from wood pulp, grass, cotton, linen, and straw."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "11998f4e-ee70-4fe9-8db4-3fc4fc3492d5", "value": "http://vocab.getty.edu/aat/300014109"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "f3ad9810-db8b-4a3b-ad77-3cabdf1ac5d4", "value": "papier"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "6b5c7701-ad16-4915-ade9-049204d0ca5e", "value": "paper (fiber product)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "89396c44-8467-4dc0-92f6-9d867f3621f2", "value": "http://vocab.getty.edu/aat/300435429"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d4ed934d-ed5f-491f-bb64-2061e7251e21"> + <skos:Concept rdf:about="http://localhost:8000/a842d507-d64c-482d-95d7-18d6e02d0ca6"> + <skos:prefLabel xml:lang="en">{"id": "7b32c4ef-a359-4181-8e66-5a9f18e2e776", "value": "inscriptions"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "1b302337-91da-47e0-bb5e-af8cf7d7401b", "value": "Inschrift"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "5164139e-6224-4db6-9d9f-f0b5e88adae1", "value": "argent"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "55266f25-a154-439c-bc1c-89237bb9c5db", "value": "Pure metallic element having symbol Ag and atomic number 47; a malleable, ductile, white metal with characteristic sheen, considered a precious metal. Silver is widely distributed throughout the world, occurring rarely as metallic silver (in Peru, Norway) but more often as silver-gold alloys and silver ore. Today silver is obtained as a byproduct in the refinement of gold, lead, copper, or zinc ores. Silver was smelted from the ore galena as early as 3800 BCE. As a pure metal, silver is second to gold in malleability and ductility, can be polished to a highly reflective surface, and used -- typically in an alloy -- in jewelry, coinage, photography, mirrors, electrical contacts, and tableware."}</skos:scopeNote> - <skos:prefLabel xml:lang="pt">{"id": "e6d9636e-dd30-4286-a305-6a90e849928d", "value": "prata"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "5dd623cb-fbce-4b63-938a-f95c6a4404f3", "value": "Silber"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e5ad32b9-9fc9-4bdb-8a08-383fde0d72ff", "value": "http://vocab.getty.edu/aat/300011029"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "ad900fa3-bcad-4d13-8307-121488804374", "value": "silver (metal)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "f763b451-a4b9-4541-9fa7-486fe193eb79", "value": "Beschriftung, mit der etwas markiert wird, insbesondere zur Dokumentation oder zum Gedenken. Bei einer Drucksache ist dies eine spezielle, in Buchstaben aufgedruckte Information, die f\u00fcr gew\u00f6hnlich nicht Teil eines gr\u00f6\u00dferen Textes ist. Bez\u00fcglich antiker Texte werden damit die meisten erhaltenen schriftlichen \u00c4u\u00dferungen jeder L\u00e4nge, au\u00dfer Papyri, bezeichnet. F\u00fcr standardisierte Symbole oder Bezeichnungen auf Objekten, die wichtige Informationen enthalten, siehe \"Zeichen (Symbol)\"."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "03d7edd9-841c-4565-96f0-7fe4fb036e47", "value": "http://vocab.getty.edu/aat/300028702"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "536e50aa-ade0-4c02-bd47-942ff7f0520e", "value": "Words, texts, lettering, or symbols marked on a work, including texts, legends, documentation notes, or commemoration. For standardized symbols or notations on objects that convey official information, use \"marks (symbols).\""}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f8ba2d38-fd38-4130-91cd-543686b61003"> - <skos:scopeNote xml:lang="en">{"id": "69ad1cb9-06ce-4917-b398-2af942d90478", "value": "A metamorphic, hard, dense, crystalline stone primarily composed of calcium carbonate; it is limestone or dolomite that has been metamorphosed with heat and pressure. Pure calcite marble is white, but impurities produce a wide variety of coloring and patterns. It is finely grained and polishes to a smooth, high gloss. It is used primarily for statuary and buildings. Marble has been quarried from sites around the world since at least the 7th century BCE. The term can also refer more broadly to any crystallized carbonate rock, including true marble and certain types of limestone, that will take a polish and can be used for architectural and ornamental purposes."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "521644e7-1ea3-47b4-8741-5e02d45874df", "value": "marbre (roche)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "008b63d9-ca2d-4d2b-8769-9500851642e5", "value": "Marmor"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "951b1f38-082f-451e-90a3-e8e69214e011", "value": "marble (rock)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/8a8ee459-ed32-4bd5-9235-518529188060"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "a8be4db4-f5e3-40c7-854d-33f7310ea151", "value": "http://vocab.getty.edu/aat/300011443"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "5bbfafbd-ccea-4968-b4c5-d14acc4fb20f", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/producer-description"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "3ecf81da-9f76-4714-a4d6-30209ad25291", "value": "producer description"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "9027aa65-ebb1-4784-a8df-6ae0877a53fc", "value": "http://localhost:8001/7764512c-494b-46e5-ad33-223836c8518b"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/477438d2-c018-456e-8513-ae7f563a66c5"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "760bc618-6454-4f33-bbbe-cca05833a39b", "value": "http://vocab.getty.edu/aat/300424602"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "741a8a51-4ecc-4f5e-a9e2-5eedec2344e0", "value": "document num\u00e9rique"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/1421293e-ad4d-4166-a199-d076622b2596"> + <dcterms:identifier xml:lang="en">{"id": "c1421cce-f90b-4d6c-90d4-45a8e683e3f2", "value": "http://vocab.getty.edu/aat/300404651"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "fa5eeca3-1869-4a18-943b-7a9d9fce7bd8", "value": "first names"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "cc28beca-4882-4760-adc1-89f0db122020", "value": "In the context of personal names, particularly in western culture, a first name is the name given to a person at birth or an early period of life, historically at baptism and historically chosen to signify or honor a saint, an earlier family member, or a personal characteristic. In modern western usage, a first name is combined with a family name or other names to distinguish between multiple people having the same first name. In other traditions, such as Islamic tradition, the first name may be a religious name or another sort of name."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/d435267f-7de2-4321-9b02-f495386866b3"> + <skos:prefLabel xml:lang="en">{"id": "4f6d0330-57ab-4e68-9f00-26f437f11e1c", "value": "married names"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "e9d239d3-90cb-49c1-9d8f-d7935a71bfbb", "value": "Regarding personal names, last names acquired by a person, usually a woman, through marriage; distinguished from \"maiden names.\""}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "843989ec-9a53-49e7-9120-c48d4c230815", "value": "http://vocab.getty.edu/aat/300404683"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/b759fb17-8868-45f9-889a-c4550b324e7c"> + <skos:prefLabel xml:lang="en">{"id": "5dcf04b3-5776-4d0a-967d-fefea1b8dfd4", "value": "cities"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "ba9c2259-708b-4096-9ef9-4390acc57ca4", "value": "Die Unterscheidung zwischen Dorf, Kleinstadt und Stadt ist relativ und variiert je nach dem individuellen, regionalen Kontext. In der Regel bezeichnet man als \"Stadt\" ein Gemeinwesen von erheblicher Bedeutung im Hinblick auf Einwohnerzahl, rechtlichen Status und innerer Komplexit\u00e4t, wenn diese Siedlung mit den meisten \"Kleinst\u00e4dten\" in ihrer unmittelbaren Umgebung verglichen wird."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "a3506e05-4f38-43a9-b149-9f14dd36557a", "value": "Stadt (Siedlung)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "f3100d5e-7acc-48f8-90c5-37cd58c28bea", "value": "Distinctions among villages, towns, and cities are relative and vary according to their individual regional contexts. Generally, cities designate large or important communities with population, status, and internal complexity greater than most towns in the region."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "c65a9a0d-a66d-4234-a61d-dc1fa741334d", "value": "http://vocab.getty.edu/aat/300008389"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/9624bcad-0f1a-4c78-a919-f9eb6c532da2"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "01c13c0f-5095-4524-8da4-1b5f73547b33", "value": "height"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "afd88ead-4ba3-4076-b1ce-ad9d93b07cc2", "value": "http://vocab.getty.edu/aat/300055644"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "288dd2a4-08e5-4837-923f-a8abf5bdb1ae", "value": "The length of a straight vertical line extending from the bottom to the top of a form."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/fcc0fc07-8d5c-4ab2-b77c-e48c56ff800b"> + <skos:prefLabel xml:lang="fr">{"id": "48c3f535-83d0-4b58-b440-4319cd31cdca", "value": "jade (pierre)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e2c806fa-f5bc-49c7-b5af-83f0802d0640", "value": "http://vocab.getty.edu/aat/300011119"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "d1e7d75c-7168-4459-9cb5-1956284a3164", "value": "General term for several varieties of hard and soft, fine-grained rock composed of jadeite, nephrite, serpentine, or other mineralogically related materials; usually having a color ranging from dark green to green-white. Jade takes a high polish and has been used since prehistoric times for jewelry, small utensils, carvings, vases, and other ornamental objects. Some processing techniques have been used to enhance the color of inferior stones: B-jade has been bleached to remove brown stains, while C-jade has been impregnated with resins to increase its translucency; A-jade is untreated. "}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "4f2bb375-c38f-44f5-a06b-af17997e2708", "value": "jade (rock)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/12a85b63-5210-4300-ac46-bb8d03bc98ec"> + <dcterms:identifier xml:lang="en">{"id": "c803d1b0-4840-4b98-99a7-f56ad5b67106", "value": "http://localhost:8000/12a85b63-5210-4300-ac46-bb8d03bc98ec"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/302954cf-d715-47a8-8c67-bf58adb890fc"> - <skos:narrower rdf:resource="http://localhost:8000/1c655462-b04c-4f44-a236-151e6625f37f"/> - <dcterms:identifier xml:lang="en">{"id": "af0ab975-f53a-4bdd-b401-077f6ff45978", "value": "http://localhost:8000/302954cf-d715-47a8-8c67-bf58adb890fc"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/7bbbf8e3-76f9-4798-82aa-babfdacb6cd8"/> - <skos:narrower rdf:resource="http://localhost:8000/9caeac56-1aa3-4dff-96cd-05403a5c4a1e"/> - <skos:narrower rdf:resource="http://localhost:8000/e1e98abd-d69c-4323-a01f-697c28dcecab"/> - <skos:narrower rdf:resource="http://localhost:8000/bf8dc0ec-a78c-45f0-8cc2-0a578b6a3f38"/> - <skos:narrower rdf:resource="http://localhost:8000/e2b3f9c2-cb94-4dcd-9fa1-5b4d10363adb"/> - <skos:narrower rdf:resource="http://localhost:8000/c016495d-3351-43a9-8b8e-064ea662a3b9"/> - <skos:narrower rdf:resource="http://localhost:8000/4781f26f-0f6e-44db-ac23-4ab3cb28d57f"/> - <skos:narrower rdf:resource="http://localhost:8000/0a3bd811-0b26-4d12-89fa-76ae3bc1a254"/> - <skos:narrower rdf:resource="http://localhost:8000/0b564536-35cf-4c35-9468-7e7ae25e913c"/> - <skos:narrower rdf:resource="http://localhost:8000/b2f88a00-97c6-4530-87e3-54cdc65ce7e6"/> - <skos:narrower rdf:resource="http://localhost:8000/f857e104-6587-4b32-8149-8caaac01b8ea"/> - <skos:prefLabel xml:lang="en">{"id": "c5c5dc28-6adc-4a28-a503-ed88ca8bfdef", "value": "plastics"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/995fb2eb-e02b-4953-a90d-c7ad5573fdd4"> + <skos:narrower rdf:resource="http://localhost:8000/e6c99d74-08b7-42c3-b663-978873bb3865"/> + <skos:narrower rdf:resource="http://localhost:8000/598ce9bd-a5d6-4fd8-886f-7f45d99f1d57"/> + <skos:narrower rdf:resource="http://localhost:8000/903c4a8b-4051-4791-9ee9-9fd96e222117"/> + <skos:narrower rdf:resource="http://localhost:8000/411b634d-3ead-498c-9b30-29f0512e9771"/> + <skos:narrower rdf:resource="http://localhost:8000/eda33b72-4404-49fc-8cff-98383ff47234"/> + <skos:narrower rdf:resource="http://localhost:8000/e518447a-c5a2-485f-926d-c854f65e88ec"/> + <skos:narrower rdf:resource="http://localhost:8000/44230e61-1c33-47a2-a425-8089e09c060c"/> + <skos:narrower rdf:resource="http://localhost:8000/f3e8cc93-09ea-448d-9bae-d33a1c396919"/> + <dcterms:identifier xml:lang="en">{"id": "78ec6418-ed95-4848-8cf0-b3164cceac2f", "value": "http://localhost:8000/995fb2eb-e02b-4953-a90d-c7ad5573fdd4"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/fa563901-745f-4edf-b1d4-26b24508e362"/> + <skos:narrower rdf:resource="http://localhost:8000/249e9e0e-0af1-457e-b33e-ccb6824e5a2a"/> + <skos:narrower rdf:resource="http://localhost:8000/98cffed5-2102-45fb-ba12-7b287fd2e8f3"/> + <skos:narrower rdf:resource="http://localhost:8000/d2ecdb4f-eca9-4407-953e-50fdf9f711b0"/> + <skos:narrower rdf:resource="http://localhost:8000/93a715ef-5c16-4852-98c6-5d73d42633b6"/> + <skos:prefLabel xml:lang="en-us">{"id": "c2f2e890-c9dc-4204-9682-726bbfd9c978", "value": "Currencies"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/5dc2c5f1-bccd-44e2-be0e-f34f3d1ac8db"/> + <skos:narrower rdf:resource="http://localhost:8000/299a2526-ed43-4578-ab31-aca6ab0b4a2f"/> + <skos:narrower rdf:resource="http://localhost:8000/5e49ee59-6580-4fcb-a57c-be102f72bccd"/> + <skos:narrower rdf:resource="http://localhost:8000/775271df-a7dc-4158-9eea-425ed089728d"/> + <skos:narrower rdf:resource="http://localhost:8000/58e0487d-3421-41ef-ab8e-4a635eb40e9d"/> + <skos:narrower rdf:resource="http://localhost:8000/115aff8f-f29f-4536-9e83-973cbf18623c"/> + </skos:Concept> + </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/c304b5d9-5d48-4fab-bfa0-84b96440c009"> + <skos:prefLabel xml:lang="en-us">{"id": "fb1c94e1-7a23-4b5f-82a8-9fb2121a232a", "value": "Temporal Units"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/c85793a7-86d1-45ae-92f9-913652c5b4c8"/> + <skos:narrower rdf:resource="http://localhost:8000/f89a0022-ac64-45fd-aa77-5aab89eb77d3"/> + <skos:narrower rdf:resource="http://localhost:8000/20d21d50-3650-44ed-8451-edee26ddc3f2"/> + <skos:narrower rdf:resource="http://localhost:8000/493e8f0d-2e89-439a-9e8d-f1e813388f3b"/> + <dcterms:identifier xml:lang="en">{"id": "a4811d71-925c-4762-99e3-21d7eed2ca78", "value": "http://localhost:8000/c304b5d9-5d48-4fab-bfa0-84b96440c009"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/0f572454-3e77-4d9e-8ea2-774e28469f3a"/> + <skos:narrower rdf:resource="http://localhost:8000/62e7809a-d1d3-4b1b-b242-e5c217503c77"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/1afc6b14-2401-49f1-b2b1-33290fcbccfa"/> </skos:Concept> </skos:narrower> + <skos:prefLabel xml:lang="en-us">{"id": "d2912fee-06a7-4a2a-8ede-e69ba445d73d", "value": "Units"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1f2a382b-d892-4a20-a128-5604e972079e"> + <skos:Concept rdf:about="http://localhost:8000/b24e324b-f0f1-4ad3-a8ee-00ce51a6f30a"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "f23ba176-c043-4111-b675-63dd617cd565", "value": "http://vocab.getty.edu/aat/300015012"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "4f011331-958c-46d2-8cb7-5f5bbfaf5d57", "value": "encre"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "086a04dc-fd7a-4439-966b-024540753da3", "value": "A fluid medium used for drawings or tracings. An opaque, usually black, pigment is mixed with a vehicle such as water to produce a fluid which can be applied with a pen or brush. Through the end of the 19th century, ink was supplied dried in stick or block form which was ground and mixed with water as needed. At the beginning of this century prepared ink became popular."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "40fbb24a-c4f6-4e13-bee9-78a04d9902d5", "value": "ink"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/1c55bd47-1895-4c3e-ba40-3dc0084cad2d"/> + <skos:narrower rdf:resource="http://localhost:8000/076513dd-d250-40dd-8d5c-e79b55a282d0"/> + <skos:narrower rdf:resource="http://localhost:8000/4583a363-ad2d-4dd9-8c7c-b1a433f53079"/> + <skos:narrower rdf:resource="http://localhost:8000/71f2308c-6d7e-423d-8d23-17a0df059a75"/> + <skos:narrower rdf:resource="http://localhost:8000/e49f5b60-0a84-4004-980d-a6635b2f7b0b"/> + <skos:narrower rdf:resource="http://localhost:8000/96151ca8-8e58-4e07-a490-c6152e2c5048"/> + <skos:narrower rdf:resource="http://localhost:8000/48e06dbc-c0ea-4cc7-9588-f1ac2b53b46e"/> + <skos:narrower rdf:resource="http://localhost:8000/2c276821-6d7b-421d-bea4-814669f7aa7f"/> + <skos:narrower rdf:resource="http://localhost:8000/56c052f1-df82-432b-a915-99a6a42e5c94"/> + <skos:prefLabel xml:lang="en-us">{"id": "9e112e39-78d2-4eea-9299-c178fda7a2e3", "value": "Weights and Lengths"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/ca88ef39-c76c-412a-bf9b-e9c8e3e89e08"/> + <dcterms:identifier xml:lang="en">{"id": "6dcd875d-c1f6-4f1c-a473-a44e8906dada", "value": "http://localhost:8001/b24e324b-f0f1-4ad3-a8ee-00ce51a6f30a"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/479bf620-ff68-405f-9a85-975439fad879"> - <skos:scopeNote xml:lang="en">{"id": "b42ab741-5bc3-49d3-a4ca-ea03d4b83144", "value": "General term for a solid marking substance in the form of a slender rod, which is then enclosed in a cylinder of wood, metal, or plastic to form a \"pencil (drawing and writing equipment).\" Common examples of materials used in \"pencils (drawing and writing equipment)\" are graphite, lead, and pigmented wax."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "30ac0df8-9313-47d7-b917-22baf36d5cbb", "value": "http://vocab.getty.edu/aat/300410335"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "f3635b3f-4552-4af9-ae79-ce8e13a339a8", "value": "pencil (marking material)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/c4413a59-1a69-40e7-9c2d-092d1cebb4c4"> + <skos:narrower rdf:resource="http://localhost:8000/62793e6b-097a-4045-be89-bcb0b4bc5cef"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/8e39291b-e186-4571-b03d-e7b5b74b030e"/> + <skos:narrower rdf:resource="http://localhost:8000/7156f8e2-d534-4f02-8f31-71f9a9a3a4aa"/> + <skos:narrower rdf:resource="http://localhost:8000/0c742f97-1424-4fc3-a897-8f8a453f58e2"/> + <skos:narrower rdf:resource="http://localhost:8000/2cef2cdf-cdda-4e25-a135-ef71a8305497"/> + <skos:narrower rdf:resource="http://localhost:8000/c5c1b27b-de1d-4dd3-aeb6-3a8a2715a7dc"/> + <skos:narrower rdf:resource="http://localhost:8000/7860b0f4-b777-40e9-a320-6dde997fe2d6"/> + <skos:narrower rdf:resource="http://localhost:8000/a440773e-a140-4e8e-9fa7-2773b1c88f25"/> + <skos:narrower rdf:resource="http://localhost:8000/5d34bcba-7196-44ea-94c1-6180a0bb5927"/> + <skos:narrower rdf:resource="http://localhost:8000/aaf5444e-3e94-4f4b-905c-c5c5c7c35ec8"/> + <skos:prefLabel xml:lang="en-us">{"id": "59400d4a-bdc7-46ca-8e68-1c7ebaa44b08", "value": "Digital Units"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c490fe36-ea13-4656-b1f3-f5b72fd96543", "value": "http://localhost:8000/c4413a59-1a69-40e7-9c2d-092d1cebb4c4"}</dcterms:identifier> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/0c07fee2-14e2-4af3-b987-5d6d00958b45"> + <skos:scopeNote xml:lang="en">{"id": "cc787a2b-5ff5-419c-b2e7-edb524abdfc0", "value": "Groups of people organized for a purpose, typically characterized by a more or less constant membership, a body of officers or functionaries, and a set of regulations governing their activities and conduct."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "4398adbe-59e9-4137-9d19-641d708addd7", "value": "organizations (groups)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "1d24195a-3658-4b38-8e58-76f49a5ccc88", "value": "http://vocab.getty.edu/aat/300025948"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/be7a77f4-4af8-459a-a420-a762b92e1aa6"> + <dcterms:identifier xml:lang="en">{"id": "4bc8f3e2-b5f1-4056-9430-ac32529fb9ac", "value": "http://localhost:8000/be7a77f4-4af8-459a-a420-a762b92e1aa6"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "80ddf5fd-4729-4e3b-9a4e-34ca170e0146", "value": "Document"}</skos:prefLabel> + <skos:scopeNote xml:lang="en-us">{"id": "10c2ed74-9997-48a9-bcd8-15354f7959e8", "value": "ADD AAT URI"}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e80c9f10-5bb5-45b9-b7c5-daa7f81f7211"> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/07591d48-bad3-4fea-972f-584394cefeb1"> + <dcterms:identifier xml:lang="en">{"id": "4db4a117-5292-4c55-8da0-9131d8eb9335", "value": "http://localhost:8000/07591d48-bad3-4fea-972f-584394cefeb1"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "60eb7072-f648-491f-974d-915eb7cd311c", "value": "volunteers"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "dc390f97-48f1-4981-ac6b-e65a81868954", "value": "http://localhost:8000/e80c9f10-5bb5-45b9-b7c5-daa7f81f7211"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "9254e661-d4cf-42eb-becb-fdd87beb442f", "value": "Unintentional Sampling"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/90cca4e4-b569-48bf-91de-b18a473d2deb"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "e4c9115e-9979-4c6c-b05b-07a1ed835c55", "value": "The branch of conservation science involving treatment, preventive care, and research directed toward archaeological sites and materials."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "d999c52a-78a0-46a7-ab1c-bb052339af3f", "value": "http://vocab.getty.edu/aat/300379523"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "9da12891-e601-473e-bf07-59e7cf097310", "value": "archaeological conservation"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/7764512c-494b-46e5-ad33-223836c8518b"> + <dcterms:identifier xml:lang="en">{"id": "9027aa65-ebb1-4784-a8df-6ae0877a53fc", "value": "http://localhost:8001/7764512c-494b-46e5-ad33-223836c8518b"}</dcterms:identifier> <skos:narrower> <skos:Concept rdf:about="http://localhost:8000/9ee31363-e17b-4651-8b35-0aca9e0272ed"> - <skos:prefLabel xml:lang="fr">{"id": "ba379c50-33c7-4582-b9ee-55d7a33cfb05", "value": "peinture \u00e0 la colle"}</skos:prefLabel> <skos:scopeNote xml:lang="en">{"id": "03f2f623-76f9-4499-b686-29f42d40d04d", "value": "Aqueous paint composed of pigments held together by animal glue or casein. Distemper has been used since ancient Egyptian times for wall painting, house decoration, and the painting of theatrical scenery. It has only occasionally been employed for easel painting."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "bee5446f-f524-447c-9a22-6f70845a4d7b", "value": "distemper (water-base paint)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <dcterms:identifier xml:lang="en">{"id": "64a8ee8c-dec2-42e4-b55d-59c604d75973", "value": "http://vocab.getty.edu/aat/300015035"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "bee5446f-f524-447c-9a22-6f70845a4d7b", "value": "distemper (water-base paint)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "ba379c50-33c7-4582-b9ee-55d7a33cfb05", "value": "peinture \u00e0 la colle"}</skos:prefLabel> + </skos:Concept> + </skos:narrower> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/632c865f-3eba-43a6-9b2f-a7b9c4bf7970"> + <skos:scopeNote xml:lang="en">{"id": "8b4beac5-2beb-4367-a9d5-2cfa9b866a9a", "value": "A dark purplish-red rock, first quarried in ancient Egypt, containing relatively large crystals in a fine-grained igneous matrix. One of the hardest rocks, it takes a high polish and is valued as a durable sculptor's material and as a decorative architectural material. It is considered the best material for the muller and slab used for grinding artists' colors."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "6b953b8b-a786-42bd-8d3a-20572175d6cd", "value": "porphyry"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "38c3d3ea-6537-460e-8647-d19f03bef6f4", "value": "http://vocab.getty.edu/aat/300011232"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/4bb2e7b9-54aa-481e-abbe-a25381edef0e"/> <skos:narrower> <skos:Concept rdf:about="http://localhost:8000/e3c92bee-8df1-444f-899c-96d4fca1264d"> - <skos:prefLabel xml:lang="en">{"id": "92e56558-d890-4559-bfd4-7b38826b7923", "value": "lead (metal)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="pt">{"id": "9a8d24f4-624e-4673-8fa0-74c761d47cc4", "value": "chumbo"}</skos:prefLabel> <skos:prefLabel xml:lang="fr">{"id": "e3462f2e-7a4a-449c-8a44-440a17d7774b", "value": "plomb"}</skos:prefLabel> <dcterms:identifier xml:lang="en">{"id": "194fd4d0-b0ac-47b0-bdc9-f7eb8299ed4d", "value": "http://vocab.getty.edu/aat/300011022"}</dcterms:identifier> <skos:prefLabel xml:lang="de">{"id": "bcbf3957-fee4-497a-8cc4-66220f7d567e", "value": "Blei"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "92e56558-d890-4559-bfd4-7b38826b7923", "value": "lead (metal)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="pt">{"id": "9a8d24f4-624e-4673-8fa0-74c761d47cc4", "value": "chumbo"}</skos:prefLabel> <skos:scopeNote xml:lang="en">{"id": "b914f1d0-b019-4c67-b7ec-ef07f27f2607", "value": "Pure metallic element having symbol Pb and atomic number 82; soft, dense ductile metal of a dull gray color, shiny when freshly cut, occuring naturally most often as a sulfide in the mineral galena. Other lead minerals include anglesite (lead sulfate) and cerussite (lead carbonate). Native metallic lead was found and used from about 3600-2600 BCE when the technique for obtaining lead from roasting the sulfide ore (galena) was discovered. Lead was used to make small cast items such as coins and statuettes, plumbing pipes, spires, statues, cisterns, gargoyles, pigments (lead white, litharge, orange mineral, etc.), as a component in pottery glazes, for roofing, flashing, stained glass windows, as a soft solder, and as radiation shielding."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/24110bd5-0f65-4754-bd7e-b19ccd35b973"> - <skos:prefLabel xml:lang="en">{"id": "0a6dd770-e199-49b4-9fcf-ce9ffc220a77", "value": "metal"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "f373efd7-9e38-4168-b706-da91190477a8", "value": "http://vocab.getty.edu/aat/300010900"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "fb695d39-03cf-44c8-a528-047ca6bd665c", "value": "m\u00e9tal"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "1bc92d22-8227-46e3-911f-79ff5c2175d3", "value": "Any of a large group of substances that typically show a characteristic luster, are good conductors of electricity and heat, are opaque, can be fused, and are usually malleable or ductile."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/b544f43a-f685-4091-bf79-f50191c0c32a"> + <skos:scopeNote xml:lang="en">{"id": "8f3a3426-9fbc-433c-a8cf-ec04412830e9", "value": "Fine-grained marblelike variety of gypsum that is easy to carve but is rather fragile; it has been used as a sculpture material, ornamental building work, vases, small decorative carvings, and powdered for use as a paper filler and paint pigment called mineral white or terra alba. Alabaster is usually a translucent white or pink but may also be a muted red, yellow or gray. It is soft and can be scratched slightly with a fingernail. It also dissolves slowly in wet environments."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "3c317761-edfd-4632-87b1-9ae4d9f6ea18", "value": "http://vocab.getty.edu/aat/300011101"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "29f33c4c-cf20-4d8d-84ac-292bbe10264c", "value": "Alabaster (mineral)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "8405d7f7-f903-4ec8-a876-aaed0d9a0f08", "value": "alabaster (mineral)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "512be118-d51f-417a-b581-b0a53ef61cab", "value": "alb\u00e2tre"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e7301d1f-8acf-4e16-b0e3-654655e23d7e"> - <dcterms:identifier xml:lang="en">{"id": "c3fd8b97-a053-4e22-81c1-ec4835f23a53", "value": "http://vocab.getty.edu/aat/300010942"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "302e5822-609f-4bed-bedc-298782dff314", "value": "copper alloy"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/e04f3be0-f4e4-49c6-9330-00e4401d7c0e"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "784d1fd1-4323-462d-b13e-e02d7279c375", "value": "alliage de cuivre"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "8608030a-3c83-4663-89c2-b3ed36d614bd", "value": "Alloy in which copper is the principle element."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "e33df998-8645-4e6a-9ebc-5641f7b60905", "value": "An amorphous, inorganic substance made by fusing silica (silicon dioxide) with a basic oxide; generally transparent but often translucent or opaque. Its characteristic properties are its hardness and rigidity at ordinary temperatures, its capacity for plastic working at elevated temperatures, and its resistance to weathering and to most chemicals except hydrofluoric acid. Used for both utilitarian and decorative purposes, it can be formed into various shapes, colored or decorated. Glass originated as a glaze in Mesopotamia in about 3500 BCE and the first objects made wholly of glass date to about 2500 BCE."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "0dce9a5f-e53b-4ee8-8334-561c030e2b29", "value": "glass (material)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "5af9f3fb-212c-4b49-8789-9ae4612450ce", "value": "verre (material)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c275b876-1f8a-4173-8747-d4ae49333edc", "value": "http://vocab.getty.edu/aat/300010797"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d4e4db86-a948-4d6a-b89f-d1682d038afe"> - <skos:scopeNote xml:lang="en">{"id": "c94fe59f-a825-4b71-a26e-fbd5248dfc88", "value": "The rigid, calcareous material that is white in color and forms the skeleton of vertebrates; primarily composed of calcium hydroxyapatite with smaller amounts of calcium carbonate, calcium fluoride, magnesium phosphate, and ossein, a high molecular weight protein. Bones have a concentric structure with central lymphatic canals surrounded by a spongy lamellar region protected by a dense outer cortex. Bone has been carved and used since ancient times for many purposes, including fish-hooks, spear heads, needles, handles, and art objects. Bones were also burnt to produce bone black and boiled to produce bone glue. Bone can be distinguished from ivory by being generally whiter, more porous, and less dense."}</skos:scopeNote> - <skos:prefLabel xml:lang="pt">{"id": "cc0d1754-dde7-4fc6-8a76-1c924b8a8c3f", "value": "osso"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "72ed2ded-d24e-4148-b1a3-3c68d4b7764a", "value": "bone (material)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/58a9665f-e444-445a-8736-b76641edccbe"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "929a8ded-0a6c-4d58-8137-d661c61a6f24", "value": "http://vocab.getty.edu/aat/300011798"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "771ffef0-30e5-4d58-b017-6bf3900e9c67", "value": "Knochen"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "738c4874-9236-47f2-9343-24a280837587", "value": "os"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "ac4b4cd0-9f43-48d0-8c08-5156410d31da", "value": "Karton (Papier)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "5dc5a9f5-45da-4046-972b-d2189dc4dbca", "value": "http://vocab.getty.edu/aat/300014224"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "bd786dac-f2d9-45a9-9c9e-782b83f99280", "value": "A type of stiff pasteboard that is thicker than 0.006 inches, typically consisting of good-quality chemical pulp or rag pasteboard, and varying greatly in type and stability. High quality archival cardboard is made from rag pulp and has a low acid content, used for mounting prints, drawings and watercolors. Other grades of cardboard is used for cards, signs, printed materials, and high-quality boxes. Inferior grades of cardboard, such as corrugated board, are made from coarsely ground sulfite treated wood pulp; for this board, use \"corrugated board.\" The first carboard box was produced in England in 1817. Corrugated cardboard was patented in 1871."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "f35b6e69-e107-41ed-ae57-c690cf0c8cdb", "value": "cardboard"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "0dc09970-ba15-457f-bb15-e746b82748eb", "value": "carton (papier)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5e4b95e8-70ff-41d4-8926-31182e4a5e56"> - <skos:prefLabel xml:lang="en">{"id": "2b66de6c-b43d-45bd-ad63-0ceb7b49c964", "value": "shaving (process)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "10c09be8-75de-4c19-ba7a-76bc577675a6", "value": "http://vocab.getty.edu/aat/300263010"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "3f9b387c-aca8-4410-ba7b-14fe3645b055", "value": "Generally, the process of cutting or scraping the surface of something with a sharp-edged tool so as to remove a thin layer or unwanted extra material. In the context of skin and hide preparation, denotes the beamhouse operation of removing hair or excess dermal material to create an even thickness. In the context of bookbinding, for the removal of a small amount of material from the edges of a book, use \"trimming.\""}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/8201eb9f-7936-4220-8403-074ce3e9ea48"> - <skos:prefLabel xml:lang="en">{"id": "4feb9f3f-6823-4723-bc6e-6e331401b29a", "value": "fiber optics reflectance (FORS) spectrometers"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e3aae916-3148-43a8-bfdb-cdb3f90337a6", "value": "http://localhost:8000/8201eb9f-7936-4220-8403-074ce3e9ea48"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e6f035a6-b69d-494c-a168-55e9f1cdf3fa"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "0b81a68e-999d-4c8d-90cc-dd1c6bd6ead8", "value": "Refers to the context of or associated specifically with the modern political entity of the United States of America."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "f0ee6a2a-d39e-45c1-b683-66f8dff17fe5", "value": "http://vocab.getty.edu/aat/300107956"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "9a2d5dac-40dc-4e8c-b570-e554dfdc4e8d", "value": "American (North American)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "099d3527-211a-4df2-b540-756923834d32", "value": "am\u00e9ricaine"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/75834779-936c-4b61-ab2a-c1ba7ae48372"> - <dcterms:identifier xml:lang="en">{"id": "ce972b70-66d1-45d1-ae13-c612d1f6e11a", "value": "http://localhost:8000/75834779-936c-4b61-ab2a-c1ba7ae48372"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "0750e193-41b7-4bd0-9faf-1dfc2d104533", "value": "cash"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7882a788-a6ba-42d7-bb02-7c2776d82353"> - <dcterms:identifier xml:lang="en">{"id": "8b24bbb8-1309-46bc-81fb-ca11f9812f61", "value": "http://vocab.getty.edu/aat/300055624"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "0667e7a8-45df-4a99-84df-10e77c6252e3", "value": "diameter"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "c0b70a46-d0fe-4b83-a28c-898aaf172bbf", "value": "The length of a straight line passing through the center of a circle or sphere, terminated at each end by its circumference or surface."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/90426117-4930-4fac-9c26-16aa06c451ac"> - <skos:prefLabel xml:lang="en">{"id": "f4de426f-0684-4981-b5fc-1ebaf119365c", "value": "Finnish (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "45bcc032-a953-4805-b25c-342046cffb29", "value": "finnois"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "1fab59d7-ea8b-4351-8f9e-b2859103762f", "value": "http://vocab.getty.edu/aat/300388299"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "29bbe003-f900-4278-bb7d-1e9e820a605f", "value": "Finnisch"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0d734a1c-eaea-4a42-a7a5-8a60ebdb9247"> - <skos:scopeNote xml:lang="de">{"id": "a3131688-641e-4a36-8467-abc6ffc91010", "value": "Gem\u00e4lde in einem sehr kleinen Ma\u00dfstab. Der Begriff wird oft speziell auf kleine Szenen in illuminierten Handschriften angewandt oder auf Portr\u00e4ts auf Pergament oder Elfenbein, die in Europa und Amerika von der Renaissance bis ins 19. Jahrhundert popul\u00e4r waren. F\u00fcr Malereien in Handschriften ist auch der Begriff \"Buchmalerei\" geeignet."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "b175683f-6229-43b5-acc8-b5ff82a1c9cc", "value": "miniatures (paintings)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "763d09c5-e005-4eea-ad70-985b320c1c40", "value": "http://vocab.getty.edu/aat/300033936"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "f549b32b-3693-4f3b-b4d1-d1789e57dc7d", "value": "Paintings on a very small scale. The term is often applied specifically to small scenes in illuminated manuscripts or to portraits on vellum or ivory that were popular in Europe and America from the Renaissance into the 19th century. For paintings in manuscripts, the term \"illuminations\" may also be appropriate. "}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "6fcd7979-32b0-4210-91fd-2c9d3658e676", "value": "Miniatur (painting)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/6a7d74ed-b78a-4e98-abe6-d0a967b42702"> - <skos:scopeNote xml:lang="en">{"id": "2cc2fd5c-2ffe-44b8-bd78-b1082a6305c4", "value": "Images or patterns composed of small, regularly shaped pieces of durable material, usually stone or colored glass. Distinguished from \"opus sectile,\" which is composed of individually shaped pieces of durable material, usually stone or glass, which conform to the design or pattern."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "ff433e94-64db-4469-81cf-d6c83b774b75", "value": "Bild oder Muster, das aus kleinen, gleichm\u00e4\u00dfig geformten St\u00fccken aus dauerhaftem Material, gew\u00f6hnlich Stein oder farbiges Glas, zusammengesetzt ist. Zu unterscheiden von \"Opus sectile\", das aus individuell geformten St\u00fccken aus dauerhaftem Material, gew\u00f6hnlich Stein oder Glas, zusammengesetzt wird, die sich der Darstellung oder dem Muster anpassen."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "62381a55-49fb-406a-a2f0-fbcc1e63f161", "value": "mosaics (visual works)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "25310361-6093-4859-98e8-0c01678fde0d", "value": "http://vocab.getty.edu/aat/300015342"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "f63a5578-0372-4ab4-b7e5-756513c4e98d", "value": "Mosaik"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/14aaf84d-4bd1-40c4-8f6e-6e0e368a49d4"> - <skos:prefLabel xml:lang="de">{"id": "1b0630eb-a62b-4c27-8b8a-9551efeabe51", "value": "Diagramm"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "e0ffbc96-cdc1-4f49-b4c7-621bdde69247", "value": "Grafischer Entwurf, der eher erl\u00e4utert denn darstellt."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "87a11c0f-ec8f-479b-8bfa-a5255d1d8525", "value": "Graphic designs intended to explain rather than simply represent. For example, in geometry, a diagram may be a figure composed of lines, serving to illustrate a definition or statement, or to aid in the proof of a proposition. In other contexts, a diagram may be any illustrative figure which, without necessarily representing the exact appearance of an object, gives an outline or general scheme of it, so as to explain or exhibit the shape and relations of its various parts."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "875c24db-8776-4cca-a76d-0592ce674f81", "value": "diagrams"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "45e90b39-c87b-4204-8633-6e0cff64e7db", "value": "http://vocab.getty.edu/aat/300015387"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/14197ada-900e-4783-94b7-454707317007"> - <dcterms:identifier xml:lang="en">{"id": "8e875b45-eea3-4c8f-ba84-7f75be54f39b", "value": "http://vocab.getty.edu/aat/300053077"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "e4ecb0dc-77af-4c36-b9eb-a264edb9b776", "value": "abrasion (condition or effect)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "be9c285a-05a7-4d4f-b59c-d8ae026c0c64", "value": "abrasion (condition or effect)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "e03fc81e-455f-4455-935a-2e5807111c19", "value": "Rubbed or scuffed areas caused by a gradual loss of material on the surface due to rubbing, wearing, or scraping of an object or material against itself or another usually harder object or material. Abrasion may be a deliberate attempt to smooth, clean, or polish a surface. It may also be a deteriorative process that occurs over time as a result of weathering or handling."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "9e688335-e870-4eb8-a833-101e8d0a6c40", "value": "Abrieb"}</skos:prefLabel> - <skos:prefLabel xml:lang="pt">{"id": "4b7a0240-a10e-471a-9df8-bed7fceda521", "value": "abras\u00e3o"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"> - <skos:prefLabel xml:lang="en">{"id": "86bbbbcb-f23e-48e8-9893-8d791a859077", "value": "temporary number"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "6dddc260-ab1f-42df-a56d-d64c50850163", "value": "http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/3713f15e-f142-4ce0-9119-ac3d4d6a248e"> - <skos:prefLabel xml:lang="en">{"id": "b4c6875a-d76d-4cea-adaa-3bb01d8a4097", "value": "inventorying"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a7b52b2a-cd8c-4c0f-b2f5-09c334be0e7f", "value": "http://vocab.getty.edu/aat/300077506"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "087bcfe0-0c02-416c-a3a5-fc6f1284898a", "value": "Listing items on hand."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/93dc2aa7-a6d9-4a93-93dc-0752b890beb7"> - <skos:prefLabel xml:lang="fr">{"id": "eefc28d6-1bd6-4685-99ac-d5bf9a1f9e71", "value": "canadienne"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "9aa1edb6-9ece-4af4-bf20-64105b3eea6b", "value": "The culture and nationality of the people in the current nation of Canada."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "f17a9554-c8d6-486e-a671-bd8bfd4cc912", "value": "Canadian"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a7879417-5ff0-4672-bf6b-59a845b67a67", "value": "http://vocab.getty.edu/aat/300107962"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/bb623e4d-e3e0-4e81-9213-7e80ab00e389"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/72006c28-5bee-4c31-9b64-64d06ca3ab8b"> - <skos:prefLabel xml:lang="en">{"id": "d1238648-86fc-4ff8-be6c-74c73500578d", "value": "d\u00e9coupage (image making technique)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "6133a066-73cf-4d0b-8e7a-fe73e3db49b5", "value": "The technique of decorating surfaces with cut-outs of paper, linoleum, plastic, or other flat material, over which a finish is applied."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "e3d8fb02-9462-432c-b673-323ff963e4aa", "value": "http://vocab.getty.edu/aat/300262913"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/ec551d7f-31d6-49ad-b812-38e5fc2a6436"> + <skos:prefLabel xml:lang="en">{"id": "beb99da6-0c2c-4517-9f70-f22e071712d6", "value": "plaster of Paris"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "4093b608-7bc8-4dd9-a5e4-ab3efccd6725", "value": "Calcium sulfate hemihydrate, a white powder, which sets rapidly upon the addition of water; used for molds, sculpture, casts."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "969365cd-0993-49ae-bdb6-4304a92caa5a", "value": "http://vocab.getty.edu/aat/300014927"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "57aff715-772a-4f61-bf69-b214bd4b8466", "value": "pl\u00e2tre de Paris"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/219c15b1-a525-4833-aeeb-ec3c3bffc665"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/efd96a8d-da15-4a59-a7e4-0e08a6e5c1c4"> - <skos:scopeNote xml:lang="pt">{"id": "7d737b1a-07e3-4d1f-853f-f31a783524a2", "value": "Processos e t\u00e9cnicas para criar imagens usando as artes da gravura, ilustra\u00e7\u00e3o, desenho e outras t\u00e9cnicas que dependem da linha e n\u00e3o da cor para renderizar o design. No uso hist\u00f3rico, o termo se refere mais amplamente \u00e0 apresenta\u00e7\u00e3o em forma visual bidimensional, incluindo a maioria das artes em papel, painel ou tela, incluindo pintura."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "84143327-c90c-40dc-a409-60dcd88e6c2e", "value": "arts graphiques"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "0da6cc2d-d162-439f-b470-fc54ac056aa1", "value": "Processes and techniques for making images using the arts of printmaking, illustration, drawing, and other techniques that depend upon line and not color to render the design. In historical usage, the term referred more broadly to presentation in two-dimensional visual form, including most arts on paper, panel, or canvas, including painting."}</skos:scopeNote> - <skos:prefLabel xml:lang="pt">{"id": "026b9b7a-6a89-4d01-b153-32926467af40", "value": "artes gr\u00e1ficas"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/b5366c4d-3d1f-4643-982f-9aadf4ff17a7"> + <dcterms:identifier xml:lang="en">{"id": "74843224-cece-46c1-83a9-f65684396cdf", "value": "http://vocab.getty.edu/aat/300404632"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "1d6dc014-56e7-4295-9db0-f503ad1590dc", "value": "pastel (material)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "932ef404-a1f2-452e-9270-1f4ed9e5b394", "value": "General term for various combinations of ground, powdery pigment and aqueous binder that are used in drawing and dry painting, delivered via a crayon or stick. Pastel as a material is soft and blendable. For the crayons or sticks containing the pigment and binder, use \"pastels (crayons).\""}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "17d23f2f-78e7-4143-9069-ffbb614216f1", "value": "graphische K\u00fcnste"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "36da15e8-80f7-47db-99e6-649875a7da5c", "value": "graphic arts"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e0d5510d-bc40-4f85-9a17-406ef7239781", "value": "http://vocab.getty.edu/aat/300264849"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/3774b3a4-96bc-4643-b260-c0fce1127bcf"> - <skos:scopeNote xml:lang="pt">{"id": "f5442e5f-1086-41d8-9383-c65d7035f8d7", "value": "Refere-se ao processo de fazer com que as imagens paradas pare\u00e7am se mover, principalmente pela t\u00e9cnica de fotografar desenhos ou objetos em est\u00e1gios progressivos de execu\u00e7\u00e3o de uma a\u00e7\u00e3o, para que o movimento seja simulado quando as imagens s\u00e3o projetadas como uma s\u00e9rie em r\u00e1pida sucess\u00e3o.Refers to the process of making still images appear to move, particularly by the technique of photographing drawings or objects in progressive stages of performing an action, so that movement is simulated when the images are projected as a series in quick succession."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "d985c00c-c330-42e9-8207-17bcaa944673", "value": "http://vocab.getty.edu/aat/300053160"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "a78871cc-fffe-4e5b-8bc2-0bebc16ceab8", "value": "Refers to the process of making still images appear to move, particularly by the technique of photographing drawings or objects in progressive stages of performing an action, so that movement is simulated when the images are projected as a series in quick succession."}</skos:scopeNote> - <skos:prefLabel xml:lang="pt">{"id": "18ec2c0d-926f-4832-ab59-aa19790f6a7a", "value": "anima\u00e7\u00e3o"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/8ba2b3a6-c41e-4509-95f6-e2e2fcec3901"> + <skos:scopeNote xml:lang="pt">{"id": "18134eaa-67e9-4664-892a-fab505668279", "value": "Resina sint\u00e9tica termopl\u00e1stica incolor, transparente, produzida pela polimeriza\u00e7\u00e3o de derivados do \u00e1cido acr\u00edlico; usado para adesivos, fibras, consolidantes, revestimentos de prote\u00e7\u00e3o, acabamentos e como meio de pintura."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "56710c6a-132b-45ce-8a38-f0660e768ee8", "value": "acrylic (resin)"}</skos:prefLabel> + <skos:prefLabel xml:lang="pt">{"id": "f3f85691-d8c8-417d-972d-8e9782de488f", "value": "resina metarilica"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "a708a5f6-cbff-4fb4-bdf3-3fd23d474292", "value": "http://vocab.getty.edu/aat/300014426"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "0fa3ee27-2e4a-4c67-b438-a1bb56b4f77f", "value": "acrylique"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "c0ba7b3f-30c8-4c4c-b6ce-c3398e33051f", "value": "animation (process)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "53487a69-a7df-459c-bfd6-5ec7e5e0a992", "value": "Colorless, transparent, thermoplastic synthetic resin made by the polymerization of acrylic acid derivatives; used for adhesives, fibers, consolidants, protective coatings, finishes, and as a paint medium."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e26bc6aa-28c3-4462-8f15-5015ed64c3fe"> - <skos:scopeNote xml:lang="en">{"id": "718525f1-3d39-4844-915b-53f650bd97f6", "value": "Producing visible forms primarily by delineation, usually by the direct application of material or instrument to the surface of the support."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/27a55f27-4725-4440-bfd3-725cdebbf2ed"> + <skos:prefLabel xml:lang="fr">{"id": "0b5ab7cc-0d7d-4f24-be20-d5893c3cc5ab", "value": "cire (wax)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b64355cf-019b-411d-8f03-80fe682d24f1", "value": "Any solid or semi-solid substance that is slightly greasy to touch, usually solid, translucent, and has a low melting point; waxes are not a chemically homogeneous group. Waxes are composed of long chain hydrocarbon compounds, and may contain esters of fatty acids and alcohols, are thermoplastic and melt at low temperatures of between 40 and 100 C. In general, waxes are water-repellent, smooth, soluble in organic solvents, and classified as animal (e.g., beeswax), vegetable (e.g., bayberry), mineral (e.g., paraffin), or synthetic (e.g., polyethylene). Waxes are used for polishes, candles, crayons, sealants, coatings, adhesives, waterproofing, carbon paper, media in encaustic and wax emulsion paintings, and as repellents in wax-resist watercolor paintings."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "486ef8db-55d3-414e-b31b-14e3c436ac60", "value": "http://vocab.getty.edu/aat/300014585"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "e82533a1-a469-4900-b215-d52268b928b0", "value": "http://vocab.getty.edu/aat/300054196"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "53f085c0-d64f-4015-88d4-f7089000a60b", "value": "drawing (image-making)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "06460f46-75f1-4356-a142-b064ca31fd84", "value": "wax"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "1509799e-74b9-4125-8d2e-d64615cc8eed", "value": "http://localhost:8000/bb623e4d-e3e0-4e81-9213-7e80ab00e389"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6ecfc5d9-6082-465b-8294-670ad9c9270e"> - <dcterms:identifier xml:lang="en">{"id": "0285dba5-12ee-41fc-b360-21d57287f75a", "value": "http://vocab.getty.edu/aat/300131119"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "f47fcc15-9e74-4d05-b260-6c1c74b740a6", "value": "Druckgrafik"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/d4e4db86-a948-4d6a-b89f-d1682d038afe"> + <skos:prefLabel xml:lang="de">{"id": "771ffef0-30e5-4d58-b017-6bf3900e9c67", "value": "Knochen"}</skos:prefLabel> + <skos:prefLabel xml:lang="pt">{"id": "cc0d1754-dde7-4fc6-8a76-1c924b8a8c3f", "value": "osso"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "2ad92a58-a25b-4073-a8d9-8dfaa15465dd", "value": "printmaking"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "4beeb2ac-469e-40fa-a3be-704248f76fa8", "value": "Refers to the activity of producing prints as works of art; for the specific processes employed, use such terms as \"intaglio printing\" or \"mezzotint.\" For the production of other types of printed material, use \"printing.\""}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "738c4874-9236-47f2-9343-24a280837587", "value": "os"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "929a8ded-0a6c-4d58-8137-d661c61a6f24", "value": "http://vocab.getty.edu/aat/300011798"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "72ed2ded-d24e-4148-b1a3-3c68d4b7764a", "value": "bone (material)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c94fe59f-a825-4b71-a26e-fbd5248dfc88", "value": "The rigid, calcareous material that is white in color and forms the skeleton of vertebrates; primarily composed of calcium hydroxyapatite with smaller amounts of calcium carbonate, calcium fluoride, magnesium phosphate, and ossein, a high molecular weight protein. Bones have a concentric structure with central lymphatic canals surrounded by a spongy lamellar region protected by a dense outer cortex. Bone has been carved and used since ancient times for many purposes, including fish-hooks, spear heads, needles, handles, and art objects. Bones were also burnt to produce bone black and boiled to produce bone glue. Bone can be distinguished from ivory by being generally whiter, more porous, and less dense."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "ca43d853-04f4-4db9-adf8-7f3d1c8436c7", "value": "Visual Work Creation Event"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fe6ad26d-48c2-407d-b438-7859c5f1c301"> - <dcterms:identifier xml:lang="en">{"id": "0e82c48a-27a4-4154-9e42-3d7a7234b043", "value": "http://vocab.getty.edu/aat/300053319"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "2e032721-edfa-4d07-b873-0d5fa5d5d4c9", "value": "printing (process)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "79eaedae-bdb6-44c2-8c0b-2822cf21a8db", "value": "Various means of reproducing identical copies of graphic matter in a fixed form. Processes by which an image, pictorial or textual, is transferred, usually to paper or cloth, most often by means of a plate, block, stone, or screen. Use also for the making of photographic prints and, with computers, for the production of a paper copy of stored data. For the production of prints in a fine arts context, prefer \"printmaking.\" "}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "c33518be-a7dc-4021-98b7-bd4315ee16e9", "value": "impression (printing)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "7e9f9256-d646-4ac7-a4ad-1b0ecdd1b638", "value": "drucken"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/4013bc24-e4cf-479d-9ed9-775843ff259b"> + <dcterms:identifier xml:lang="en">{"id": "9a0a4933-3cb4-447b-aa7e-4ea85e69a5bb", "value": "http://vocab.getty.edu/aat/300011002"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "b670133a-e1e0-47f7-a5f8-2c163f822d66", "value": "Pure metallic element having symbol Fe and atomic number 26; metallic iron is silvery in color, lustrous, soft, ductile, malleable, and slightly magnetic; it rusts when exposed to moist air. It is rarely found as a native metal (telluric iron) except in meteorites (meteoric iron). Iron is most often found throughout the world as iron oxides (hematite, magnetite, limonite, and siderite) mixed with other ores."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "18f16d1e-188e-4c9f-a24d-d78ff9303076", "value": "fer"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "1e21b581-7599-4e56-ac9f-397f31919721", "value": "Eisen"}</skos:prefLabel> + <skos:prefLabel xml:lang="pt">{"id": "73d913eb-c3e2-432c-82dd-309714828d06", "value": "ferro"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "772e4c13-03ea-4723-9903-20ae54d396e9", "value": "iron (metal)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f56d47fa-10d9-4e37-a009-9b77a96e3f50"> - <dcterms:identifier xml:lang="en">{"id": "575abbf5-6f87-42cf-a294-227b2944f4b1", "value": "http://vocab.getty.edu/aat/300054216"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/54a65679-78fc-483a-81ef-0f760ab2c467"> + <skos:prefLabel xml:lang="en">{"id": "48fef225-2295-4cbc-a540-34bb25a2371f", "value": "chalk"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "fb241ebc-ae23-4172-abdb-32bb2f5769d6", "value": "A fine-grained limestone, or soft, earthy form of calcium carbonate; used chiefly in putty, crayons, paint, rubber products, linoleum, and as a pigment and abrasive."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "cad55d0c-aade-45f3-8fc9-54b9a788a7a0", "value": "The art and practice of applying pigments suspended in water, oil, egg yolk, molten wax, or other liquid to a surface to create an expressive or communicative image. Paint is usually, but not always, applied with a brush. For the application of paint primarily to protect a surface or add a general color, use \"painting (coating).\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "8d511c9f-7219-4077-839f-2a5251e72e70", "value": "painting (image-making)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e67d08ec-faa1-415f-8c22-eec8ef1d6156", "value": "http://vocab.getty.edu/aat/300011727"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8889c48f-504f-410d-8eb1-737f062d85f3"> - <skos:prefLabel xml:lang="en">{"id": "64ce4c03-6552-4deb-88b5-9b18c0eb90aa", "value": "cartooning"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "13008192-ce4a-4312-a73d-69415e7b06fa", "value": "http://vocab.getty.edu/aat/300053164"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/49b09fc6-d1e1-46a7-a500-9089a68027eb"> + <skos:prefLabel xml:lang="fr">{"id": "323c36bb-ce70-4b80-acd5-1b97458f3363", "value": "bronze (metal)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "fb6751e8-7e46-4923-8c84-0809d11229ef", "value": "Refers to a broad range of alloys of copper, specifically any non-ferrous alloy of copper, tin, and zinc or other trace metals. Bronze was made before 3,000 BCE -- possibly as early as 10,000 BCE, although its common use in tools and decorative items is dated only in later artifacts. The proportions of copper and tin vary widely, from 70 to 95 percent copper in surviving ancient artifacts. Because of the copper base, bronze may be very malleable and easy to work. By the Middle Ages in Europe, it was recognized that using the metals in certain proportions could yield specific properties. Some modern bronzes contain no tin at all, substituting other metals such as aluminum, manganese, and even zinc. Historically, the term was used interchangeably with \"latten.\" U.S. standard bronze is composed of 90% copper, 7% tin and 3% zinc. Ancient bronze alloys sometimes contained up to 14% tin."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "1b848a90-6844-4b86-82c3-ed3f9e303725", "value": "bronze (metal)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c53be465-945e-42df-a7b0-b6f8c1ab1e72", "value": "http://vocab.getty.edu/aat/300010957"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "ea81e72e-4473-4352-af9d-ee19f5086c81", "value": "The activity of creating \"cartoons (humorous images).\""}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f5b916fc-e129-4391-9545-26871ddf3975"> + <skos:Concept rdf:about="http://localhost:8000/302954cf-d715-47a8-8c67-bf58adb890fc"> + <skos:narrower rdf:resource="http://localhost:8000/1afc6b14-2401-49f1-b2b1-33290fcbccfa"/> + <skos:narrower rdf:resource="http://localhost:8000/c016495d-3351-43a9-8b8e-064ea662a3b9"/> + <skos:narrower rdf:resource="http://localhost:8000/bf8dc0ec-a78c-45f0-8cc2-0a578b6a3f38"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "6fe31291-9759-4530-b9d1-26a376870970", "value": "illustrating"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "73c943b4-7dd9-4e46-bf1c-4dbc5797e586", "value": "http://localhost:8000/f5b916fc-e129-4391-9545-26871ddf3975"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/f857e104-6587-4b32-8149-8caaac01b8ea"/> + <skos:narrower rdf:resource="http://localhost:8000/b2f88a00-97c6-4530-87e3-54cdc65ce7e6"/> + <skos:narrower rdf:resource="http://localhost:8000/4781f26f-0f6e-44db-ac23-4ab3cb28d57f"/> + <skos:narrower rdf:resource="http://localhost:8000/0b564536-35cf-4c35-9468-7e7ae25e913c"/> + <skos:narrower rdf:resource="http://localhost:8000/1c655462-b04c-4f44-a236-151e6625f37f"/> + <dcterms:identifier xml:lang="en">{"id": "af0ab975-f53a-4bdd-b401-077f6ff45978", "value": "http://localhost:8000/302954cf-d715-47a8-8c67-bf58adb890fc"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/9caeac56-1aa3-4dff-96cd-05403a5c4a1e"/> + <skos:narrower rdf:resource="http://localhost:8000/7bbbf8e3-76f9-4798-82aa-babfdacb6cd8"/> + <skos:narrower rdf:resource="http://localhost:8000/0a3bd811-0b26-4d12-89fa-76ae3bc1a254"/> + <skos:narrower rdf:resource="http://localhost:8000/e2b3f9c2-cb94-4dcd-9fa1-5b4d10363adb"/> + <skos:narrower rdf:resource="http://localhost:8000/e1e98abd-d69c-4323-a01f-697c28dcecab"/> + <skos:prefLabel xml:lang="en">{"id": "c5c5dc28-6adc-4a28-a503-ed88ca8bfdef", "value": "plastics"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/9954b805-ada9-45c5-a9aa-56d8481f34fc"> - <skos:prefLabel xml:lang="fr">{"id": "0a8796d0-a89d-4136-8615-e6f15fce87f0", "value": "gestion des collections"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "6c09f54e-096a-43dd-bd54-508cc07af1c7", "value": "http://vocab.getty.edu/aat/300137819"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "9ae68081-8fae-4247-87e0-e4aae2580945", "value": "Sammlungsverwaltung"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "b8cd9e8b-86d9-46fb-855b-e6e867e56a51", "value": "collections management"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "b2d560b4-9d6c-4f42-af8a-6f5f0eac0f32", "value": "General term for the gathering, organization, description, provision of access, storage, and overall maintenance of a collection of objects, documents, or other materials."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/39fa12c0-6624-41bd-83fa-0fc28b5250bc"> - <dcterms:identifier xml:lang="en">{"id": "2b0e07e1-ac35-4284-8b2e-af485c51c9dd", "value": "http://vocab.getty.edu/aat/300054216"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "48d646b3-ba50-416f-a0d2-decfbb6cfa6c", "value": "The art and practice of applying pigments suspended in water, oil, egg yolk, molten wax, or other liquid to a surface to create an expressive or communicative image. Paint is usually, but not always, applied with a brush. For the application of paint primarily to protect a surface or add a general color, use \"painting (coating).\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "93a042f6-33c8-409e-93d5-c3d1c7e9270b", "value": "painting (image-making)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/8a8ee459-ed32-4bd5-9235-518529188060"> - <dcterms:identifier xml:lang="en">{"id": "5bbfafbd-ccea-4968-b4c5-d14acc4fb20f", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/producer-description"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "3ecf81da-9f76-4714-a4d6-30209ad25291", "value": "producer description"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/bf8dc0ec-a78c-45f0-8cc2-0a578b6a3f38"> - <skos:prefLabel xml:lang="en">{"id": "c8aa27fa-1c6f-4119-a724-2c14e6e0d713", "value": "polyvinyl chloride"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "b069cc7c-8f45-4d2e-920e-b9a8a410817b", "value": "A thermoplastic resin derived by the polymerization of vinyl chloride, used for thin coatings, insulation, and pipes."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "b54bafbd-9f34-4b05-8c01-fde18e43974a", "value": "http://vocab.getty.edu/aat/300014513"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/61699f66-0d46-4452-b168-ba989809e77e"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/faeaa555-3942-4a7e-9c22-bcfae7e3076b"> - <skos:narrower rdf:resource="http://localhost:8000/1bd9f61f-fbc6-4b0d-9107-0e5b1ed9b277"/> - <dcterms:identifier xml:lang="en">{"id": "378a83d3-04a3-4182-a032-5370b6d4ef23", "value": "http://localhost:8000/faeaa555-3942-4a7e-9c22-bcfae7e3076b"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/eedcb6df-656b-4a3b-b808-be00a7a4daf9"/> - <skos:narrower rdf:resource="http://localhost:8000/fa11cdad-f45d-41f2-bac0-8b8045cff74b"/> - <skos:narrower rdf:resource="http://localhost:8000/afbf17a2-4e83-4de6-963a-b985dc0f7c35"/> - <skos:narrower rdf:resource="http://localhost:8000/a7e9a77a-005b-4253-8abc-7f3b944a4c0c"/> + <skos:Concept rdf:about="http://localhost:8000/74ecdce5-765d-4de1-9a62-a24bd47f5b79"> + <dcterms:identifier xml:lang="en">{"id": "af07451a-fd47-4fe6-b5de-edf21da00b29", "value": "http://vocab.getty.edu/aat/300014078"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "646232ff-56e4-41e1-998f-8f58eb731cd8", "value": "toile (mat\u00e9riau textile)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "239a5129-c2a2-4ea5-b458-f77e16bccb54", "value": "Leinwand"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "b5537ca3-b1dd-4ebc-833f-8e85b2a94882", "value": "canvas (textile material)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "64b8f4d9-25fa-4796-a24d-f78bf7e8b00a", "value": "painting techniques"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "17acd818-9717-4744-833f-e7de4003f7b0", "value": "Closely woven textile made in various weights, usually of flax, hemp, jute, or cotton, used especially for sails, tarpaulins, awnings, upholstery, bags, and as a support for oil painting. "}</skos:scopeNote> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "ba1896ce-ff28-487b-b906-bf9637fb0f97", "value": "http://localhost:8000/61699f66-0d46-4452-b168-ba989809e77e"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "7e830256-025b-4742-ba26-cd3f88813bff", "value": "Physical Thing Production Techniques"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f2bd260c-a4ba-4b27-ba3b-961f37ca8016"> - <skos:prefLabel xml:lang="en">{"id": "000aa66c-3785-4461-b8ef-6932876dd710", "value": "photography techniques"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/b96a5716-1e25-4697-b5f9-3afad1627ed4"/> - <dcterms:identifier xml:lang="en">{"id": "80416162-e6da-4ebd-a9f9-8a5fa53f50b8", "value": "http://localhost:8000/f2bd260c-a4ba-4b27-ba3b-961f37ca8016"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/7dfe3f0a-333c-45e6-8751-840841142bb1"/> - <skos:narrower rdf:resource="http://localhost:8000/804e24c6-f30b-4675-b4d4-49b0897b589c"/> + <skos:Concept rdf:about="http://localhost:8000/24b976c1-14c5-4606-a686-08f7d5fb8e7c"> + <skos:prefLabel xml:lang="fr">{"id": "f617372a-c5c6-44c5-8088-76ee703c5658", "value": "peinture-\u00e9mail"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "bc6fca9f-54f8-4cb8-8f9a-cb85adfd0215", "value": "http://vocab.getty.edu/aat/300147678"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "e1fd8e3c-117e-458b-8c64-fe9588591d12", "value": "enamel paint"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b0e0c72f-72d9-4b78-976f-43ccfc52975e", "value": "Paint made from oil, resin, varnish, or a combination of these, mixed with finely ground pigment; usually giving a glossy finish, but sometimes giving a semigloss or flat finish."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/cb2a1f81-43a9-4c99-be9b-1624501a8c29"/> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/86678b32-84f0-4506-8161-a2c49fae74ee"> - <dcterms:identifier xml:lang="en">{"id": "3e792816-c537-408c-8c91-d67b64b575b6", "value": "http://localhost:8000/86678b32-84f0-4506-8161-a2c49fae74ee"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e80c9f10-5bb5-45b9-b7c5-daa7f81f7211"> - <skos:prefLabel xml:lang="en">{"id": "9254e661-d4cf-42eb-becb-fdd87beb442f", "value": "Unintentional Sampling"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "dc390f97-48f1-4981-ac6b-e65a81868954", "value": "http://localhost:8000/e80c9f10-5bb5-45b9-b7c5-daa7f81f7211"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/07591d48-bad3-4fea-972f-584394cefeb1"/> + <skos:Concept rdf:about="http://localhost:8000/6ad4a9e8-b48e-4338-9fc4-fa7509dec88e"> + <dcterms:identifier xml:lang="en">{"id": "4dd55bde-992c-48d6-80c4-62913ca34d6b", "value": "http://vocab.getty.edu/aat/300014069"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="fr">{"id": "8ee2d3ba-6d94-4a01-a256-895b28244bd1", "value": "toile (linen)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "48b51453-949f-4971-9f85-a92414c99414", "value": "linen (material)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "da7e7737-99bb-4569-87d7-421ff3301373", "value": "General name for textile woven from the spun fiber of the flax plant."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "3cc98475-3cdf-4a38-bbf6-905faaa407c1", "value": "Sampling Type"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f41ad781-5aa6-46c6-8daf-7598ffcd4aae"> - <skos:narrower rdf:resource="http://localhost:8000/cd3d2406-1ae5-42f0-98f9-43e965ae5d38"/> - <skos:prefLabel xml:lang="en">{"id": "dee6779a-1ffd-44b4-8ee0-fbd5fd801dfc", "value": "Intentional Sampling"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c5625256-d59f-45a9-a01a-466916e19aea", "value": "http://localhost:8000/f41ad781-5aa6-46c6-8daf-7598ffcd4aae"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/970f32df-c784-49e7-a83c-93174fd63cb3"> + <dcterms:identifier xml:lang="en">{"id": "4dd0860f-0ebd-4a0d-b060-5871039b8b27", "value": "http://vocab.getty.edu/aat/300011176"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "e7ae7f79-59af-4b2a-b27e-a4514452cbe9", "value": "pierre (rock)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a9ae9a05-0830-4381-872e-8a15696342c5", "value": "General term for rock that has been cut, shaped, crushed, or otherwise formed for use in construction or other purposes. Includes the specific archaeological and anthropological sense of individual stones which may be decorated or ornamented and which may be used in ritual contexts. These are usually not carved or dressed, and so differ from sculptures made from stone."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "5e11519f-57e6-48c0-8cdd-1a7cd3ebc7d8", "value": "stone (worked rock)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "4123c1aa-ffa1-4970-9d6a-609ca0dda2bd", "value": "Allgemeine Bezeichnung f\u00fcr ein Steinobjekt, das abgeschnitten, geformt, zerkleinert oder anderweitig zur Verwendung in der Architektur oder f\u00fcr andere Zwecke zugearbeitet wurde. Der Begriff schlie\u00dft auch die arch\u00e4ologischen und anthropologischen Steinobjekte ein, die verziert oder dekoriert wurden und bei rituellen Zeremonien Verwendung fanden. Diese Steine sind Regel nicht behauen oder bearbeitet und unterschieden sich daher von Steinskulpturen."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/b9cb3ead-ae6d-4f04-9551-e390defc35f2"/> + <skos:prefLabel xml:lang="de">{"id": "53795773-03c7-4338-9b7b-bb8de78a4a65", "value": "Stein (Objekt)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/97c77b61-26be-4e34-8b03-0938feb915a3"> - <dcterms:identifier xml:lang="en">{"id": "8847239b-65a7-44d2-a75e-d85d537dae0c", "value": "http://vocab.getty.edu/aat/300054681"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "e51dae2a-575c-4fe8-b197-69ddd73f95c3", "value": "case study"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "2d2e0858-1822-4165-97e0-8d1dd36e827a", "value": "Teaching methodology using cases as a pedagogical tool in fields such as law, business, medicine, and education. Cases may include real and imagined scenarios, critical incident analysis, case studies, vignettes, and anecdotal accounts."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/17a5481d-5595-46cf-b6a1-56b29103f739"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "80e30a69-3b6b-4cdd-af5a-e041b962f700", "value": "Method of acquiring property for temporary use under terms by which the party in possession of the property will pay a regular fee for having control of or occupying the property."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "82a01dd0-11ca-4061-bc09-e6223f6880c6", "value": "http://vocab.getty.edu/aat/300417649"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "7909ae6f-d3ef-4522-8e72-8463d4726e6b", "value": "rental (method of acquisition)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5f9d4f70-ca98-4ff1-9c73-52877fbf83c3"> - <dcterms:identifier xml:lang="en">{"id": "6c0772c2-6c39-4bfc-ae53-ff5803003ac2", "value": "http://vocab.getty.edu/aat/300417282"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "8f6b9b6e-43a3-4977-9468-5a55f9853624", "value": "Heritage science refers to all applications of science for the general study of cultural heritage, tangible and intangible; a cross disciplinary research domain including humanities and sciences, such as the natural, social, and formal sciences. In particular, heritage science focuses on issues such as promoting access to cultural heritage, its interpretation, conservation, and management."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "d7b53576-0d69-49fb-a7e4-c1d5bc7ed369", "value": "heritage science (cultural heritage discipline)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/cddda87a-6281-4547-a2e0-4047994836c8"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "8d0538b2-cf02-459d-ae9d-6023f84fd23c", "value": "In the sciences, taking of samples for technical analysis."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "4f0b14d8-2a24-4709-9dfe-2c3f9d57154f", "value": "sampling"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "676100d7-f6ec-4069-8132-983442f25e8c", "value": "http://vocab.getty.edu/aat/300379429"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/41bc72c3-eb83-42b6-96c3-639bc9888ed6"> - <skos:scopeNote xml:lang="en">{"id": "c9594080-3dd9-48e4-8dc2-2ad587dac537", "value": "As a general term, belonging to Spanish-derived culture, especially referring to those of Spanish origin in North, Central, or South America."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "b32795f3-3be7-412f-9d0a-72e1166f8593", "value": "Latino"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "98079372-cf8e-46c8-9be4-87bc7b0d4991", "value": "http://vocab.getty.edu/aat/300386381"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5c57af12-3510-4dfb-b924-97bbf55ddbd3"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "0de6dbf0-7fee-4c36-822d-e77d0cb4328a", "value": "http://localhost:8000/5c57af12-3510-4dfb-b924-97bbf55ddbd3"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "cc50021b-0c11-4ac2-b324-8d5e87b8b7a7", "value": "Collection Identifier"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/aa1c30cc-f0cb-4f4a-8faa-9ba2d42323f5"> - <dcterms:identifier xml:lang="en">{"id": "4645470a-a0ef-42d2-a08a-de9b97ed0494", "value": "http://vocab.getty.edu/aat/300404450"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "a1412c02-369d-40fe-b055-250b1a4748c9", "value": "Designation indicating something, someone, a characteristic, or an activity is the most important or fundamental, is occurring or existing first in a sequence, belonging to the beginning or earliest stage,is the original, or not subordinate to or derived from anything else."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "67233e1d-59f0-479b-a5d7-10a1d3dbd6d9", "value": "primary (general designation)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7e6c493b-6434-4b3a-9513-02df44b78d24"> - <skos:prefLabel xml:lang="fr">{"id": "3504fa03-dc72-4c7b-b64b-2bc92a6c3258", "value": "allemand"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "051dad53-601b-468d-a8ab-708493f2aafe", "value": "http://vocab.getty.edu/aat/300388344"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "94eeed49-8def-4fbf-b1a2-4b1345c99b1a", "value": "German (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "569bf84a-4882-41c9-8717-2de409b17962", "value": "Deutsch"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "3a4747c9-8ab6-4afd-9970-d906acd9bb0d", "value": "West Germanic language that is the national language of Germany and Austria, one of the three official languages of Switzerland, and known in various communities in North and South America, South Africa, and Australia. As a written language German is quite uniform, although there are numerous regional differences in pronunciation and dialect."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c17e82b5-450c-43d4-a66d-b4796532316a"> - <skos:scopeNote xml:lang="en">{"id": "41df376a-da4b-43c2-af43-8804638d6821", "value": "Brief statements of a fact or experience, written down for review, or as an aid to memory, or to inform someone else; also includes short, informal letters."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "4671dfe5-feba-4e29-9c8c-0325a43ceff5", "value": "notes (documents)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "99603a67-98d2-486f-95e0-a606d4a1cdfc", "value": "Notiz (Dokumentengattung)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "49ecbd22-fab2-41af-abe5-36e87db0c506", "value": "Kurze Angabe \u00fcber eine Tatsache oder ein Erlebnis, niedergeschrieben zur \u00dcberpr\u00fcfung oder als Erinnerungshilfe, oder um jemand anderen zu informieren; schlie\u00dft auch kurze, formlose Briefe mit ein."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "a2d1c888-b49e-450a-b5c8-2e51dcf5e7df", "value": "http://vocab.getty.edu/aat/300027200"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "5144bc06-5845-4339-bfe7-6e21c3a3a459", "value": "note"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/625da1d2-1c85-4629-91de-c970ff84d1f6"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/4f861b2d-0400-41f7-a08b-a871f1e51316"> - <skos:scopeNote xml:lang="en">{"id": "51803885-55b8-45b3-b6f9-3348ac6903c1", "value": "Those who have membership in an organization, community, joint enterprise, or other group."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "950b1409-0a1a-491b-b8be-f2e745b15e77", "value": "http://vocab.getty.edu/aat/300263077"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/e59715c4-875b-4b50-8bb9-9f0597a6d6fe"> + <skos:scopeNote xml:lang="en">{"id": "b5f0e695-3614-4353-a4f8-0ff1a00145eb", "value": "A black, porous carbonaceous material comprising the carbon-containing residue from burned wood (e.g., willow, maple, beech, linden or plum) or other organic containing materials such as bone, plants or animals. It is used as a drawing material, for filtering liquids or air, and for other purposes."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "1be33bdb-2b0a-48a5-a7a1-714d3bbe5f4f", "value": "charcoal (material)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "281eed25-2063-4c6d-b85c-fda091246202", "value": "http://vocab.getty.edu/aat/300012862"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "4aaf0d86-8fca-4c55-8b92-d8c17d0cfd13", "value": "charbon (charcoal)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "e6ec371d-cd46-4c0d-8647-99ba55cebd4c", "value": "members"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/03c51652-484f-4b24-98ea-f3bf5bcf2d7c"> - <dcterms:identifier xml:lang="en">{"id": "4ec0452c-abd1-4ac4-96ec-98fa724814ed", "value": "http://localhost:8000/03c51652-484f-4b24-98ea-f3bf5bcf2d7c"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "6827f2c7-afe6-40b7-aa34-b7386ec81f70", "value": "leader"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/d4ed934d-ed5f-491f-bb64-2061e7251e21"> + <skos:prefLabel xml:lang="pt">{"id": "e6d9636e-dd30-4286-a305-6a90e849928d", "value": "prata"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e5ad32b9-9fc9-4bdb-8a08-383fde0d72ff", "value": "http://vocab.getty.edu/aat/300011029"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ad900fa3-bcad-4d13-8307-121488804374", "value": "silver (metal)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "5164139e-6224-4db6-9d9f-f0b5e88adae1", "value": "argent"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "5dd623cb-fbce-4b63-938a-f95c6a4404f3", "value": "Silber"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "55266f25-a154-439c-bc1c-89237bb9c5db", "value": "Pure metallic element having symbol Ag and atomic number 47; a malleable, ductile, white metal with characteristic sheen, considered a precious metal. Silver is widely distributed throughout the world, occurring rarely as metallic silver (in Peru, Norway) but more often as silver-gold alloys and silver ore. Today silver is obtained as a byproduct in the refinement of gold, lead, copper, or zinc ores. Silver was smelted from the ore galena as early as 3800 BCE. As a pure metal, silver is second to gold in malleability and ductility, can be polished to a highly reflective surface, and used -- typically in an alloy -- in jewelry, coinage, photography, mirrors, electrical contacts, and tableware."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8ba7ae28-7ab0-409c-9259-023ddb0c44b5"> - <dcterms:identifier xml:lang="en">{"id": "1ace727a-599e-4330-9168-28a146f99eb2", "value": "http://localhost:8000/8ba7ae28-7ab0-409c-9259-023ddb0c44b5"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "f13aac0c-d96c-4f4d-94e0-5881c840e79b", "value": "participant"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/07dbe013-7dcf-4dd7-9df1-e72a9a855da5"> + <dcterms:identifier xml:lang="en">{"id": "5362648d-ec0e-431e-9d72-22cc1aa7d5cc", "value": "http://vocab.getty.edu/aat/300011914"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "c0bea73c-b28a-4fcf-85de-6e5ff792ee48", "value": "The principal tissue of trees and other plants that provides both strength and a means of conducting nutrients. Wood is one of the most versatile materials known."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "762460cc-8513-4229-ac85-2d45ee5e9fcf", "value": "bois"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "c89a159f-d5b1-4f65-b2ef-755d70346c8c", "value": "wood (plant material)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/23e4a3b3-ad56-456f-b9ae-88211f0dc40d"> - <skos:prefLabel xml:lang="en">{"id": "4b2af38b-ae61-4700-bdd8-74a00a84ca79", "value": "contact point"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/4bb2e7b9-54aa-481e-abbe-a25381edef0e"> + <skos:prefLabel xml:lang="en">{"id": "abfec798-acd8-46d4-9077-9fe03365a6a5", "value": "clay"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b7efdfe7-978a-43b1-8667-90fedc198fee", "value": "http://vocab.getty.edu/aat/300010439"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "a7124ab5-f138-4e05-807c-074c6c5e1074", "value": "Naturally occurring sediments that are produced by chemical actions resulting during the weathering of rocks. It is often the term applied to all earths that form a paste with water and harden when heated."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "3c6e3c54-4041-4418-99c3-e9dff9f3e1fe", "value": "argile"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "5774430b-f604-4b9b-a838-864d496a8044", "value": "http://localhost:8000/23e4a3b3-ad56-456f-b9ae-88211f0dc40d"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "3e14005d-31ed-46ff-b38b-690bc12ac090", "value": "Group Role"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "23866b01-3dd6-4914-8d82-04e5f5ddf1b9", "value": "http://localhost:8000/625da1d2-1c85-4629-91de-c970ff84d1f6"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e77ea94b-c9c7-4e1f-879d-0916d1550d49"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "adfc7cff-f1ae-4ffc-9744-ab35f355c480", "value": "Splitting into pieces or smashing into parts or fragments, typically by a blow or stress and with suddenness or violence."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "20bffec8-f252-43b6-b19a-6831396e7ace", "value": "breaking"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a3a23ca0-a7f5-4730-8164-9a7247d2de90", "value": "http://vocab.getty.edu/aat/300053083"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b759fb17-8868-45f9-889a-c4550b324e7c"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "ba9c2259-708b-4096-9ef9-4390acc57ca4", "value": "Die Unterscheidung zwischen Dorf, Kleinstadt und Stadt ist relativ und variiert je nach dem individuellen, regionalen Kontext. In der Regel bezeichnet man als \"Stadt\" ein Gemeinwesen von erheblicher Bedeutung im Hinblick auf Einwohnerzahl, rechtlichen Status und innerer Komplexit\u00e4t, wenn diese Siedlung mit den meisten \"Kleinst\u00e4dten\" in ihrer unmittelbaren Umgebung verglichen wird."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "c65a9a0d-a66d-4234-a61d-dc1fa741334d", "value": "http://vocab.getty.edu/aat/300008389"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "f3100d5e-7acc-48f8-90c5-37cd58c28bea", "value": "Distinctions among villages, towns, and cities are relative and vary according to their individual regional contexts. Generally, cities designate large or important communities with population, status, and internal complexity greater than most towns in the region."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "5dcf04b3-5776-4d0a-967d-fefea1b8dfd4", "value": "cities"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "a3506e05-4f38-43a9-b149-9f14dd36557a", "value": "Stadt (Siedlung)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5b8027bf-d85e-4801-8c9d-723f9b8d9fb5"> - <skos:scopeNote xml:lang="en">{"id": "3d64ea9f-9895-4c68-8b38-859acba9c998", "value": "Method of acquiring property by legally conferring existing ownership to another person or institution; it does not necessarily involve benefactors."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "a7f3dcf4-37df-4baa-8a4f-3d5cd1534622", "value": "transfer (method of acquisition)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "0cbb347c-8a9c-4c4d-810e-dd78c4dc1244", "value": "http://vocab.getty.edu/aat/300417644"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/2f397086-f12b-4f43-881b-2f582b307968"> - <skos:scopeNote xml:lang="en">{"id": "55b3e02a-67f7-4322-8e4a-b7e0b93675da", "value": "Method of acquiring property for temporary use, with or without the payment of interest."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "bd304982-5760-4836-9a7b-cf9071cff09b", "value": "http://vocab.getty.edu/aat/300417645"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "1279380a-3b1a-4daf-bba3-0bcd9db75383", "value": "loan (method of acquisition)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/fb9397d4-06fa-4f60-8493-b36198f6bceb"> - <skos:prefLabel xml:lang="en">{"id": "515f3896-e81b-4af3-b558-91ffbac7f874", "value": "Visual Work Subject"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/479bf620-ff68-405f-9a85-975439fad879"/> + <skos:prefLabel xml:lang="en-us">{"id": "23c5f3c6-b135-49e9-9f12-10e7c74491d9", "value": "Materials"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ce7ad2f6-e99e-43b8-be84-98e4272c803f"> - <skos:scopeNote xml:lang="en">{"id": "bc29711e-4fce-46c6-a769-afafe8d6060f", "value": "Refers to the world religion and culture that developed in the first century CE, driven by the teachings of Jesus Christ of Nazareth. Its roots are in the Judaic tradition and the Old Testament. The tenets include a belief in the death and redemptive resurrection of Jesus. The religion incorporates a tradition of faith, ritual, and a form of church authority or leadership."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "f4aa87dd-c70c-44cd-90c6-cb04c9dcdfff", "value": "http://vocab.getty.edu/aat/300073711"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "aef3db33-75d0-4353-b489-e2f7d137d196", "value": "Christianity"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/63c1e2a4-da7f-41a1-b6d1-57b92a7ced66"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "2803cf20-d208-4606-ae4c-c34170bedbc7", "value": "http://vocab.getty.edu/aat/300015050"}</dcterms:identifier> + <skos:altLabel xml:lang="fr">{"id": "a5cae432-6511-4ae2-9efb-359ecd8ac501", "value": "peinture \u00e0 l'huile (oil paint)"}</skos:altLabel> + <skos:scopeNote xml:lang="en">{"id": "6d4c42b0-5e09-431b-8227-4d34b674c54c", "value": "A paint made by grinding pigments with a drying oil such as linseed oil. After 1940 alkyd binders were often added to oil paint to provide faster drying times."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "0104fe1c-a2b1-4217-b6f2-b3b70e011e3e", "value": "oil paint (paint)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/d8de88fc-19c6-4129-bcc2-7bb3ff8e841a"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b727e4b6-3169-457d-ab05-5991bacb03cd"> - <dcterms:identifier xml:lang="en">{"id": "042fd781-cc81-46c7-afca-d08bd96710f2", "value": "http://vocab.getty.edu/aat/300073708"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "831e84cf-4f9a-40e4-a2ce-8b431faacca5", "value": "Belief systems that encompass various personal and institutional relationships between human beings and what they regard as holy, sacred, or divine, usually but not always a deity, or a spiritual or occult force. Participation in a religion is typically manifested in obedience, reverence, and worship, often including group activities and alliance with a leader. Elements of a religion or similar belief system include doctrine, ritual, defined parameters of morality, and a code of living, often seen as a means of achieving spiritual or material improvement."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "7d6f39b3-d3d2-4958-afb0-599b8d4152d8", "value": "religions (belief systems, cultures)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/f8ba2d38-fd38-4130-91cd-543686b61003"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "a8be4db4-f5e3-40c7-854d-33f7310ea151", "value": "http://vocab.getty.edu/aat/300011443"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "69ad1cb9-06ce-4917-b398-2af942d90478", "value": "A metamorphic, hard, dense, crystalline stone primarily composed of calcium carbonate; it is limestone or dolomite that has been metamorphosed with heat and pressure. Pure calcite marble is white, but impurities produce a wide variety of coloring and patterns. It is finely grained and polishes to a smooth, high gloss. It is used primarily for statuary and buildings. Marble has been quarried from sites around the world since at least the 7th century BCE. The term can also refer more broadly to any crystallized carbonate rock, including true marble and certain types of limestone, that will take a polish and can be used for architectural and ornamental purposes."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "521644e7-1ea3-47b4-8741-5e02d45874df", "value": "marbre (roche)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "008b63d9-ca2d-4d2b-8769-9500851642e5", "value": "Marmor"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "951b1f38-082f-451e-90a3-e8e69214e011", "value": "marble (rock)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "30995b7a-580d-4510-9b4a-a1be4a21f80f", "value": "http://localhost:8000/fb9397d4-06fa-4f60-8493-b36198f6bceb"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b49383a7-a83e-4c1b-a705-e4c21d49ba17"> - <arches:sortorder xml:lang="en">{"id": "b5b46e36-1cd8-44d3-b6c6-48b61de6336d", "value": "1"}</arches:sortorder> - <dcterms:identifier xml:lang="en">{"id": "8dc12f1d-0448-4cb8-9006-88289d73f4f8", "value": "http://localhost:8000/b49383a7-a83e-4c1b-a705-e4c21d49ba17"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ede4e6a0-150c-4d2e-99ad-c21a42f309c8"> + <skos:Concept rdf:about="http://localhost:8000/e7301d1f-8acf-4e16-b0e3-654655e23d7e"> + <skos:scopeNote xml:lang="en">{"id": "8608030a-3c83-4663-89c2-b3ed36d614bd", "value": "Alloy in which copper is the principle element."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "302e5822-609f-4bed-bedc-298782dff314", "value": "copper alloy"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c3fd8b97-a053-4e22-81c1-ec4835f23a53", "value": "http://vocab.getty.edu/aat/300010942"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "fe03bc60-ba4e-4fd0-97db-66af93bcc703", "value": "FORS Dataset"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "58381428-a65b-409b-a31d-31b62c98baa9", "value": "http://localhost:8000/ede4e6a0-150c-4d2e-99ad-c21a42f309c8"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "784d1fd1-4323-462d-b13e-e02d7279c375", "value": "alliage de cuivre"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/df3c0aca-ef6f-4ea4-922a-3a15bc7d9673"> + <skos:Concept rdf:about="http://localhost:8000/de996050-7ddc-406d-8310-aee48759bce8"> + <dcterms:identifier xml:lang="en">{"id": "960a5e89-dfe6-4198-8495-2867df4809a1", "value": "http://vocab.getty.edu/aat/300183750"}</dcterms:identifier> + <skos:prefLabel xml:lang="pt">{"id": "c3e17fad-cd6c-48f1-88be-990a4cd063d5", "value": "pintura a enc\u00e1ustica"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "507907f9-16f5-4128-8bf1-16e1a282cac1", "value": "Paint created by mixing dry pigments with molten wax, usually beeswax. Sometimes small amounts of natural resins, such as dammar or Venice turpentine, are added for hardness. Oils, such as linseed oil, are added for increased workability. Encaustic paint was used as early as the 4th and 5th centuries BCE in Greece. The paint was applied warm with a spatula or brush. It hardened quickly and fused to the surface. "}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "2c3e7f8d-f3a9-4806-8620-149312134d41", "value": "encaustic paint"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "eb3a43da-118b-4d20-9c56-c3dfcd318b64", "value": "encaustique"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "caeba958-57e9-47f6-907f-734b0e23e41b", "value": "http://localhost:8000/df3c0aca-ef6f-4ea4-922a-3a15bc7d9673"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "c7812e3b-7576-4b78-a033-f82c6f96e6d2", "value": "Raman Dataset"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/44e1ef0f-091d-49f6-9365-921b5619d3a3"> + <skos:Concept rdf:about="http://localhost:8000/1a3258bc-2083-41b0-aff6-705ba1b2fe03"> + <dcterms:identifier xml:lang="en">{"id": "ad1f9b0d-db43-49d3-974f-88a4b8b0bd68", "value": "http://vocab.getty.edu/aat/300070114"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "1f957513-3b2e-4c45-a9d5-f09f84fad45d", "value": "A matte, opaque watercolor paint typically having gum arabic, gum senegal, or dextrin as a binder. Gouache paints differ from watercolor paints, which use transparent pigments. Chalk and other white fillers may be added to some colors. Gouache was used for miniature paintings in the 16th-18th centuries, for decorative paintings on interior walls, and for printing wall paper patterns. Poster paints are an inexpensive version of gouache. The term originally had a different meaning, referring to oil applied on top of tempera painting."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "4f046732-21d4-4b9c-aee4-61d21ed0193d", "value": "gouache (pientre)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "53b5b856-d3d6-47b4-9735-df7ac4b12ffc", "value": "gouache (paint)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "bf173b8f-c883-468b-bf08-dea52f5864ff", "value": "XRF Dataset"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "52e51dc2-35a5-4394-b306-e388d2a3de8f", "value": "http://localhost:8000/44e1ef0f-091d-49f6-9365-921b5619d3a3"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "4bb83364-a32a-493a-b3c9-b0aa6f279d51", "value": "Dataset"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e5909f90-de56-40ed-8262-2b0b9ed629f2"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a2588fa8-5ae6-4770-a473-dec0c05fb175"> + <skos:Concept rdf:about="http://localhost:8000/48865afd-d693-4781-9e20-9bc423b310f2"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "03643976-e923-46ae-a794-7808d29c5b47", "value": "http://localhost:8000/a2588fa8-5ae6-4770-a473-dec0c05fb175"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "31d97bdd-f10f-4a26-958c-69cb5ab69af1", "value": "analysis areas"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f93f2101-2805-4a1a-b8b9-3c378994db28", "value": "http://localhost:8000/48865afd-d693-4781-9e20-9bc423b310f2"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ac90d741-4d88-4d3b-b1eb-140f6f77aa56", "value": "ink, modern"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/6a7d74ed-b78a-4e98-abe6-d0a967b42702"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2703e524-b5ea-4548-bea7-7ce354e4e05a"> - <skos:prefLabel xml:lang="en">{"id": "7375a6fb-0bfb-4bcf-81a3-6180cdd26123", "value": "sample areas"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/26a58b62-1396-48f0-838f-9773a9a2c5e0"> + <dcterms:identifier xml:lang="en">{"id": "cabfb7a3-3e8a-4129-8fdb-037bccd31a03", "value": "http://vocab.getty.edu/aat/300011845"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "d9e49be2-fd70-43a0-9866-6919a8f9eaac", "value": "The skin or hide of an animal that has been tanned to render it resistant to putrefication and relatively soft and flexible when dry. For composite material made from scrap leather pieces, use \"maril.\""}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "c8c72ab1-d116-4565-a4f3-cff5ca3be36c", "value": "cuir"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "d4cc8c00-201e-4787-9d4c-5898a5ae335d", "value": "http://localhost:8000/2703e524-b5ea-4548-bea7-7ce354e4e05a"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "70e143c7-cfd7-49d0-8dd8-e39268921806", "value": "leather"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "ed3e77a7-99a4-4fcf-b5f4-555385f48cec", "value": "Object Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7ea073d1-9998-4fb3-9bb7-d674417a42c1"> - <skos:prefLabel xml:lang="en">{"id": "c9c3d3e2-4211-4208-b9a9-8ed1e0b14759", "value": "installations (visual works)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b7a596a7-0714-4731-9d25-da01f28e2f9d", "value": "http://vocab.getty.edu/aat/300047896"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "3cf143d7-00c2-40b6-8cff-633e1eac8635", "value": "installations (visual works)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "0cce3f1a-014e-4afa-8ec4-cfd8fae97feb", "value": "Installation (visuelles Werk)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "5fffa312-3420-41d4-af8d-f36841918105", "value": "Werk, das aus den 1960er Jahren und sp\u00e4ter datiert, das seinen Ausstellungsraum als Teil seiner Gestaltung nutzt. Aktives Engagement eines Betrachters fordernd, sind Installationen oft vom K\u00fcnstler im direkten Gegensatz zu der Vorstellung eines dauerhaften Kunstwerks oder Kunst als Ware geschaffen."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "281a2dce-da7e-4888-8f69-3e2e0da5a932", "value": "Works dating from the 1960s or later that use their exhibition space as part of their design. Demanding a viewer's active engagement, installations are often created by artists in direct opposition to the notion of permanent artwork, or art as a commodity."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/24110bd5-0f65-4754-bd7e-b19ccd35b973"> + <dcterms:identifier xml:lang="en">{"id": "f373efd7-9e38-4168-b706-da91190477a8", "value": "http://vocab.getty.edu/aat/300010900"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "0a6dd770-e199-49b4-9fcf-ce9ffc220a77", "value": "metal"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "1bc92d22-8227-46e3-911f-79ff5c2175d3", "value": "Any of a large group of substances that typically show a characteristic luster, are good conductors of electricity and heat, are opaque, can be fused, and are usually malleable or ductile."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "fb695d39-03cf-44c8-a528-047ca6bd665c", "value": "m\u00e9tal"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/0d734a1c-eaea-4a42-a7a5-8a60ebdb9247"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/907c2848-98fb-43e8-aa6a-64274ef9abf2"> - <skos:prefLabel xml:lang="fr">{"id": "65cc6251-9c6d-4b0b-85b4-424155288da2", "value": "photographies"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/5f4346f1-126a-47fe-bd67-57a30353ef8b"> + <skos:scopeNote xml:lang="en">{"id": "7dd5312a-8258-4e8e-b89e-d6a266ac6b7e", "value": "Refers to sheets of gold that have been hammered or rolled very thin (typically around 0.1 micrometer, or 4 millionths of an inch, thick). In art, gold leaf has been applied to paintings, sculptures, manuscripts, and decorative arts since around 1500 BCE. In the 1920s, the process of creating gold leaf was successfully automated."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "70c73c1b-259c-496c-a544-0fb61a46e682", "value": "http://vocab.getty.edu/aat/300264831"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "49de5fc0-3476-48bf-85e5-264c6e3ad510", "value": "photographs"}</skos:prefLabel> - <skos:scopeNote xml:lang="en"><![CDATA[{"id": "2e6c66e1-15d7-4808-ac98-a88bd91be21f", "value": "Refers to still images produced from radiation-sensitive materials (sensitive to light, electron beams, or nuclear radiation), generally by means of the chemical action of light on a sensitive film, paper, glass, or metal. Photographs may be positive or negative, opaque or transparent. The concept does not include reproductive prints of documents and technical drawings, for which descriptors found under \"<reprographic copies>\" are more appropriate. The concept may include photographs made by digital means."}]]></skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "d9b15116-cd6d-495b-adc4-77c5f26c8525", "value": "http://vocab.getty.edu/aat/300046300"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "b1a92a35-7f81-46c7-bcee-f9fa9e428a76", "value": "gold leaf"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b69d9192-59a6-42df-9bef-234842ee4bab"> - <skos:scopeNote xml:lang="en">{"id": "48653928-fb99-4bdc-85e7-9f173f9d2850", "value": "General term for carpets, fabrics, costume, or other works made of textile materials, which are natural or synthetic fibers created by weaving, felting, knotting, twining, or otherwise processing. For works of art or high craft that employ textile as a medium, prefer \"textile art (visual works).\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "99ae0cc7-79b3-4783-9112-9db9ecfb11ba", "value": "textiles (visual works)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "0c315236-8fa2-4ead-80a5-e14551cb605d", "value": "textiles"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "4f6f8f30-71c9-4368-ba37-00289d0d080d", "value": "http://vocab.getty.edu/aat/300014063"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/3f3a9f75-25f2-4480-9a07-e84fd63712b8"> + <skos:prefLabel xml:lang="en">{"id": "82c674ce-4709-48d6-b743-2cf696a3cdf8", "value": "basalt (basic igneous rock)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "119a9d96-d2ce-4d51-a881-6c5a9f96c907", "value": "basalte (basic igneous rock)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "5844fb2a-d7f3-4a5f-9440-96a44328f051", "value": "http://vocab.getty.edu/aat/300011222"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "77748f9a-3081-4bbf-b023-366751c02e3b", "value": "A dense, hard, dark brown-to-black volcanic igneous rock, consisting of feldspar and mafic minerals such as augite or olivine."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/9db724b9-b3c7-4761-9a50-673d64a15bd8"> + <skos:Concept rdf:about="http://localhost:8000/7efca7ef-8ab1-4bb6-8b72-d93f4b9f46be"> + <skos:prefLabel xml:lang="en">{"id": "aa6d1a64-748b-45ae-8a01-8a1010f2c04c", "value": "ceramic (material)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e1fd900a-f9a6-4be1-9809-c46e0ae84076", "value": "http://vocab.getty.edu/aat/300235507"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "77d8cf19-ce9c-4e0a-bde1-9148d870e11c", "value": "samples"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "cd9d9cf0-13c7-4069-b7d2-2511ffc2103e", "value": "A sample is a part of anything taken or presented for inspection or shown as evidence of the quality or composition of the whole. For instances that represent a class, use \"specimens.\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "ceed6661-b9ac-43dc-a85e-7db0285d5759", "value": "http://vocab.getty.edu/aat/300028875"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "6db0bd9a-c7e9-487a-9869-934ee03c07a3", "value": "c\u00e9ramique (material)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "56983cde-0b6f-4589-987b-953b928c6326", "value": "Refers to any of various hard, brittle, heat-resistant and corrosion-resistant materials made by shaping and then firing a nonmetallic mineral, such as clay, at a high temperature."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/bbb94e5c-2e82-46d1-bc97-a0423d3fb2d7"> - <skos:prefLabel xml:lang="de">{"id": "db4eaa6e-99f8-431f-a64e-3add5b2dddbd", "value": "Manuskript (Dokumentengattung)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "89e85cf3-4fa7-4964-975d-ee674ac59cfb", "value": "http://vocab.getty.edu/aat/300028569"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "50c06691-6eda-454f-abae-5c90792eecab", "value": "Handgeschriebenes Dokument, vor allem B\u00fccher und andere Dokumente vor der Erfindung der Druckmaschine. Die Bezeichnung kann auch verwendet werden, um bestimmte Dokumente von ver\u00f6ffentlichten oder anderweitig gedruckten Dokumenten zu unterscheiden, wie in den F\u00e4llen von pers\u00f6nlichen Briefen oder mit der Scheibmaschinen geschriebenen Dokumenten, aus denen sp\u00e4ter gedruckte Ausgaben entstanden."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "091f8d84-09b6-4490-9623-6e13583d8b7a", "value": "Handwritten documents, particularly books and other documents created before the invention of the printing press. May also be used to distinguish certain documents from published or otherwise printed documents, as in the cases of typed personal letters or a typescript from which printed versions are made."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "ca57bc1a-b58e-43a0-a4af-30a236c65648", "value": "manuscripts (documents)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "64f17b63-5c54-4bc1-8e2a-27909acf905f", "value": "manuscrits"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/36c303a8-d7fb-4030-93a4-3a874cf70034"> + <skos:prefLabel xml:lang="en">{"id": "fa50f246-440c-438d-a89a-cc2b8c62bf07", "value": "gold (metal)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "3e855e4a-4782-47ae-aea7-a63167b4825e", "value": "http://vocab.getty.edu/aat/300011021"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "7453ac05-053b-44cb-b8a9-8754b00f06a9", "value": "Pure metallic element having symbol Au and atomic number 79; a soft, inert, shiny reddish yellow metal that is very malleable and ductile. Gold has been highly valued and found in artifacts dating to before 5000 BCE. Native gold, found in quartz veins (vein gold) and alluvial deposits (placer gold), generally contains some silver and copper. Gold is purified by dissolution in mercury or cyanide solutions, by melting, or by electrodeposition. The purity of commercial gold is expressed in karats which is the number of parts of gold in 24 parts of the alloy. Today gold is primarily used for monetary systems and for jewelry."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "cab0def7-abc1-4dd8-8c92-e8ea42df6dcd", "value": "Gold (metal)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="fr">{"id": "24f53bfd-2c69-4cbb-a66a-812c14af854e", "value": "or (metal)"}</skos:prefLabel> + <skos:prefLabel xml:lang="pt">{"id": "3adb7ce5-8161-462c-9a01-e86bd76465fe", "value": "ouro"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/3949f930-cb20-4cc0-b914-77e399bbb3a2"> - <skos:prefLabel xml:lang="en">{"id": "59218296-c061-4de9-8e1f-7b3780af67a8", "value": "collages (visual works)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "83452bc5-3635-4e91-b8c2-809dc84e50a5", "value": "Collage"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "c7c8443a-5877-4081-b705-2d2a4a010b32", "value": "Works in two dimensions or very low relief that were made by gluing paper, fabrics, photographs, or other materials onto a flat surface"}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "ae585c23-4ef4-489c-b1ed-0bb35fb1a7fd", "value": "http://vocab.getty.edu/aat/300033963"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "9a96baa8-a98d-4eae-a63b-9fbad314a2eb", "value": "Zweidimensionales Werk oder mit sehr flachem Relief, das durch Kleben von Papier, Stoff, Fotografien oder anderen Materialien auf eine flache Oberfl\u00e4che hergestellt wurde."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/120c64e0-3f4a-4f2a-accb-8b9e1a6d6f37"> + <skos:scopeNote xml:lang="en">{"id": "cec0161e-0be5-46ad-a8c0-7a8a0e1ee398", "value": "Pure metallic element having the symbol Cu and atomic number 29; a reddish brown, ductile metal that is present in the earth's crust, occurring as a native metal and as ores of sulfide, sulfate and carbonate (azurite, malachite, etc.). It was the first metal used by humans, probably from about 8000 BCE, in the regions of Mesopotamia and India. By about 3800 BCE copper was made into bronze for weapons and knives. Today, copper is one of the most widely used metals because it has high electrical and thermal conductivity, can be easily fabricated, is ductile and polishes well. In moist air, copper forms a protective green film of basic carbonate. Metallic copper combines well with other metals to form alloys, most commonly brass and bronze. Copper and its alloys are used for wire, electrical devices, pipes, cooking vessels, ammunition, ornamental trim, roofing, grillwork, coins, musical instruments, jewelry, and sculptures."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "09b45dce-c9c7-4811-b482-996ac2218ece", "value": "http://vocab.getty.edu/aat/300011020"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "9c84476d-8134-44ec-8d87-393138e233c1", "value": "Kupfer"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "79de49c2-5fd7-4c0e-9687-8940b5f05c5f", "value": "copper (metal)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="fr">{"id": "a675b272-00e1-4961-ad9a-dbc904808986", "value": "cuivre (metal)"}</skos:prefLabel> + <skos:prefLabel xml:lang="pt">{"id": "7973582f-da65-4eda-a7da-23048b97528d", "value": "cobre"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/907d7730-1c16-4c56-b3f0-a95894aa39f7"> - <skos:prefLabel xml:lang="fr">{"id": "af844562-df6d-4113-a5e7-06e13393a38a", "value": "n\u00e9gatifs"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "424232c6-b4ee-4935-8324-4c79734b4d8c", "value": "http://vocab.getty.edu/aat/300127173"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "f15e2c82-a487-43ed-91c8-87779da4991e", "value": "Photographs in which the tones or colors are reversed from their appearance in nature, usually on a transparent support of celluloid, acetate, or on paper, intended for the purpose of producing positive prints. For finished prints in which tones or colors are reversed, see \"negative prints.\" When a glass plate is painted or drawn on and a photographic print made from it, use \"clich\u00e9s-verre.\" "}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "2de3aa59-ea57-4838-bdfb-76acbf447fcd", "value": "Negativ (Fotografie)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "793c31bf-a89f-438b-a4f6-f2b0b5f83f22", "value": "negatives (photographs)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/34b081cd-6fcc-4e00-9a43-0a8a73745b45"> + <skos:prefLabel xml:lang="fr">{"id": "a83a8389-607f-4fbc-8f4a-df73bd0561be", "value": "v\u00e9lin"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "90dbe2e5-ab75-4d04-9e15-3c848e7ef883", "value": "Fotografie, meist auf einem durchsichtigen Tr\u00e4ger, bei der die T\u00f6ne und Farben entgegengesetzt zu ihrem nat\u00fcrlichen Auftreten erscheinen. F\u00fcr Drucke, bei denen die T\u00f6ne und Farben entgegengesetzt erscheinen, siehe \u201cNegativdruck\u201d. Wenn auf einer Glasplatte gemalt oder gezeichnet wurde und ein fotografischer Abzug davon gemacht wird, siehe \u201cGlasklischee\u201d."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "48e87a99-7db5-44a0-addd-e7937bb7890a", "value": "vellum (parchment)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "9d269e55-92b7-4aa7-baee-8cba8b35e64e", "value": "Fine-quality calf or lamb parchment used for writing, illuminations, or binding books. The terms \"vellum\" and \"parchment\" are sometimes confused and used interchangeably."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "281dabad-97a0-4290-a7e2-f158c5f1b3fb", "value": "http://vocab.getty.edu/aat/300011852"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "7ea85398-8b0e-4a42-a86d-809f3e8abe53", "value": "Schreibpergament"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/3946b808-80f1-42a1-9521-ce27043569b8"> - <skos:scopeNote xml:lang="de">{"id": "45ba0441-7f96-4691-9add-b3b47ebd6d10", "value": "Bezeichnet eine durch Schnitzen aus einem harten Material wie Stein oder Holz ausgef\u00fchrte Figur oder ein Muster. Meist bezogen auf relativ kleinformatige Arbeiten, die Teil einer gr\u00f6\u00dferen Arbeit sind oder nicht als Kunst angesehen. F\u00fcr gro\u00dfe und mittelgro\u00dfe dreidimensionale Kunstwerke wird der umfassendere Term \u201cSkulptur\u201d oder ein anderer passender Begriff verwendet."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "26846ff8-8c32-41ad-b439-9f0a326bbfe4", "value": "http://vocab.getty.edu/aat/300047203"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "4f6b4ada-1918-4226-b593-adb5cb3449f7", "value": "carvings (visual works)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "9e0d383c-0ddb-4266-a443-a4842cf9eb00", "value": "Refers to works executed by cutting a figure or design out of a solid material such as stone or wood. It typically refers to works that are relatively small in size, are part of a larger work, or are not considered art. For large and medium-sized three-dimensional works of art, use the broader term \"sculpture\" or another appropriate term."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "a8a95032-ea9b-429e-955c-d3924c5cc9f3", "value": "Schnitzerei (Schnitzkunst)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/1f2a382b-d892-4a20-a128-5604e972079e"> + <dcterms:identifier xml:lang="en">{"id": "f23ba176-c043-4111-b675-63dd617cd565", "value": "http://vocab.getty.edu/aat/300015012"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "086a04dc-fd7a-4439-966b-024540753da3", "value": "A fluid medium used for drawings or tracings. An opaque, usually black, pigment is mixed with a vehicle such as water to produce a fluid which can be applied with a pen or brush. Through the end of the 19th century, ink was supplied dried in stick or block form which was ground and mixed with water as needed. At the beginning of this century prepared ink became popular."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "40fbb24a-c4f6-4e13-bee9-78a04d9902d5", "value": "ink"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "4f011331-958c-46d2-8cb7-5f5bbfaf5d57", "value": "encre"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ad788cc5-c54a-4a46-9fa2-817ffd97be3c"> - <dcterms:identifier xml:lang="en">{"id": "8d2749f0-2fe3-478e-ada9-53ccb361dfd0", "value": "http://vocab.getty.edu/aat/300033973"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "cda377e4-ffe7-46c5-8c5b-73d92336aff5", "value": "Visual works produced by drawing, which is the application of lines on a surface, often paper, by using a pencil, pen, chalk, or some other tracing instrument to focus on the delineation of form rather than the application of color. This term is often defined broadly to refer to computer-generated images as well."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "830532bb-03de-43bb-b24d-e1fbc3a98ce6", "value": "drawings (visual works)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/1914c881-21d4-4de3-8637-301b2178ebec"> + <skos:prefLabel xml:lang="fr">{"id": "377c2345-7746-4ec7-b732-d71ed9f4635c", "value": "aquarelle (peinture)"}</skos:prefLabel> + <skos:prefLabel xml:lang="pt">{"id": "63480b0a-bbe8-4949-889d-5796d01bc18b", "value": "aguarela"}</skos:prefLabel> + <skos:prefLabel xml:lang="en-us">{"id": "81574d23-b3f7-4eb1-9cef-652cc98c9211", "value": "watercolor (paint)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "412869de-e0b4-4763-b315-d454f59312ba", "value": "http://vocab.getty.edu/aat/300015045"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "7fc97ae6-3761-4f0c-a23c-be71c032506e", "value": "Transparent aqueous based paint produced by mixing ground pigments with water and, generally, gum arabic; paints made with vegetable gum binders were used by Egyptian, Greek, and Roman artists for wall paintings. Japanese and Chinese painters extensively used watercolor paints on silk panels and delicate paper scrolls. In the 16th through18th century, watercolor paints were used for miniature illustrations on porcelain, ivory, cards, books and manuscripts. By the 18th and early 19th centuries, watercolors rapidly increased in popularity due to the availability of small cakes of watercolor paints in metal pans, usually applied to a paper support by using a brush."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "0857ab28-fe06-4bd4-84b4-198531ccd176", "value": "Aquarell"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "4f152fad-8521-47bd-9d83-48c5aa5ab96d", "value": "Visuelles Werk, das durch Zeichnen hergestellt wurde, was das Auftragen von Linien auf eine Oberfl\u00e4che ist, oft Papier, unter Verwendung eines Bleistifts, einer Feder, Kreide oder eines anderen Zeichenmittels, mit dem Schwerpunkt eher auf der Darstellung der Form als der Betonung der Farbe. Der Begriff wird oft allgemein definiert und auch auf computergenerierte Bilder angewendet.\t\t\t\r\n"}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "b9d48cd1-30fd-4ac5-b3a7-e008dfeb36c0", "value": "dessins"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/88e06b9f-1690-45cd-a8b7-99c2ebf011b8"> - <skos:scopeNote xml:lang="en">{"id": "70b2f529-28ad-4c5f-af55-d7e5e1df1d06", "value": "Works of art in any medium, including performance art. A work of art may exist as a part of a larger object, e.g., a mural painting or a painting on a piece of furniture. When referring to the study or practice of the fine arts or the fine and decorative arts together, use \"art.\" In reference to pieces of fine or decorative arts as collectables rather than museum objects, in English use either \"art objects\" or the French term \"objets d'art,\" which emphasizes this meaning."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "30a83a9c-ee37-47dd-bd53-410b67b145b6", "value": "http://vocab.getty.edu/aat/300133025"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "abe93115-52db-43c9-a799-0ed3c7195666", "value": "\u0153uvre d'art"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/80da44f6-5e55-4763-95d0-8e7cb2bf402c"> + <skos:prefLabel xml:lang="en">{"id": "b1fe97dd-eabc-436e-8650-87202773c445", "value": "ivory (material)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "cba22495-8c68-4dab-9b05-1c9082eaa70c", "value": "http://vocab.getty.edu/aat/300011857"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "9f83d3f1-9e27-44eb-9f36-c4424189747b", "value": "Ver\u00e4nderte Form des Dentin, das auf den Sto\u00dfz\u00e4hne von ausgewachsenen Elefanten, wie auch auf Sto\u00dfz\u00e4hnen oder gro\u00dfen Z\u00e4hnen von Walr\u00f6ssern oder Narwalen gefunden wird."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "f9cbc165-213b-47ec-8262-c2272b6d39ec", "value": "works of art"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "1073af5b-7e28-4fd8-a423-eef562d5bf6f", "value": "ivoire"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "092b6019-2cbf-4a84-a46c-d45120a0ac54", "value": "Elfenbein"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "2eed11a1-85e7-4d98-aa6a-f2371c7946a8", "value": "The modified form of dentin derived from animal teeth. The most common example is from the tusks of mature elephants; similar material is obtained from any tusked or large-toothed mammal such as a walrus or narwhal."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/fcc0fc07-8d5c-4ab2-b77c-e48c56ff800b"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/24f2475d-0bcf-4f7c-a8c2-de2e60e7b333"> + <skos:Concept rdf:about="http://localhost:8000/6b389a46-6dcf-4ea0-af15-f11bae6fa6e2"> + <skos:prefLabel xml:lang="pt">{"id": "e293dc07-c326-4718-b922-7e250a8d369e", "value": "carvalho roble (madiera)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "08acfd32-f6c1-4542-83b1-aea1670a761a", "value": "ch\u00eane (bois)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "fdfc5c42-5bd6-493c-a12b-65dff4f0238a", "value": "calligraphy (visual works)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "1753ba99-5e2c-48e0-9e78-5816daf7383c", "value": "Werk, das haupts\u00e4chlich aus sch\u00f6nen, eleganten Buchstaben oder Schn\u00f6rkeln gebildet ist, die gew\u00f6hnlich von Hand mit einem Schreibstift geschaffen wurden, entweder mit unverbundenen Buchstaben oder in kursiver Schreibschrift. Kann sich auch auf \u00e4hnliche Werke beziehen, die mit dem Computer oder anderen Mitteln geschaffen wurden."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "18a45a5e-e020-4252-bc84-9a0f851921f9", "value": "Works composed primarily of beautiful, elegant letters or flourishes that are typically created by hand with a pen, either in unjoined characters or in cursive writing. May also refer to similar works created by computer or another means."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "5934dd3f-1234-4b91-88c9-f67116565302", "value": "calligraphie"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "64bb1e72-d8c6-403b-a06c-bfa1520a902b", "value": "http://vocab.getty.edu/aat/300266660"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "f328fd17-06a8-4ce7-8239-7e49de89875d", "value": "Kalligraphie (Visuelles Werk)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "6496ae20-1c8a-4e5b-94d0-9f794d7a0030", "value": "Wood of trees belonging to the genus Quercus, of the beech family. It is a durable wood that has a distinctive coarse grain, used in cabinetry, flooring, paneling, musical instruments, ship interiors and moldings, panel painting, and sculptures. "}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "1657f3ef-d6a3-490e-a622-93bfe8a31048", "value": "Eichen (Holz)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0eee688e-6983-4ed4-96bd-15a4c8a545a2", "value": "http://vocab.getty.edu/aat/300012264"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "6fa4b002-a3ea-43a2-ba2e-0f2ab83a6509", "value": "oak (wood)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "8505419d-2513-45f3-bee6-c44663771ed2", "value": "http://localhost:8001/e5909f90-de56-40ed-8262-2b0b9ed629f2"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/9961937d-eaeb-431b-9190-9e17eaebb688"> - <skos:prefLabel xml:lang="en">{"id": "f452f608-0116-4eda-9dfe-16e5da4248f8", "value": "prints (visual works)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "94a200ae-919b-4e45-97df-cdbbde514b1f", "value": "http://vocab.getty.edu/aat/300041273"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "9802aab3-fce9-43be-8666-c936619d3fac", "value": "Pictorial works produced by transferring images by means of a matrix such as a plate, block, or screen, using any of various printing processes. When emphasizing the individual printed image, use \"impressions.\" Avoid the controversial expression \"original prints,\" except in reference to discussions of the expression's use. If prints are neither \"reproductive prints\" nor \"popular prints,\" use the simple term \"prints.\" With regard to photographs, prefer \"photographic prints\"; for types of reproductions of technical drawings and documents, see terms found under \"reprographic copies.\" "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/f772e177-dd72-4808-bdfe-0bbd404fd101"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "6542b961-cc1d-4699-bbee-6111f050fc05", "value": "druckgraphischen Bl\u00e4ttern"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "d3377a76-d6e0-4c22-8d83-215116ce8ad3", "value": "gravures (g\u00e9n\u00e9ral, \u0153uvres visuelles)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "62545fe8-a3ce-40fd-b5e9-69ffde5d9c2b", "value": "http://vocab.getty.edu/aat/300010737"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "49dcff2e-2711-4af8-a3a3-5eff499d1532", "value": "concrete"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "eeee5e68-9942-479a-8e52-ea0cfbc2dff2", "value": "b\u00e9ton (concrete)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "8313afbd-f8eb-41bf-ba3d-7fb769c983a8", "value": "A hard, strong construction material comprising a mixture of sand, gravel, crushed rock, or other aggregate, held together, typically by a hardened paste of cement and/or lime. Several types of aggregate are used such as crushed stone, slag, cinders or gravel. Ancient Romans developed pozzolan cement about the 3rd century BCE. Modern concretes use various cements such as portland or hydraulic. Concrete is durable and relatively inexpensive, used for foundations, bridges, dams, walls, and highways. Concrete is strong in compression but weak in tension so it is often reinforced with steel bars or wire netting. Once a concrete mixture is stirred with water and poured into a mold, it is allowed to cure slowly over about a week. Stresses, such as vibration, freezing, and rapid drying, will diminish the strength and durability of the concrete. As it ages, concrete is subject to erosion, spalling, and pollution. Poor mixing can cause erosion. Spalling can be due to freeze-thaw cycles of moisture and ice, salt crystallization, or corrosion of steel reinforcements. Acid rain can deplete the natural alkaline reserve of fresh concrete."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a8c19e2d-944b-409a-abfa-5a7c45806416"> - <skos:prefLabel xml:lang="en">{"id": "19ef147a-3703-41b4-bfa3-d4c66e333b0b", "value": "ceramics (object genre)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "33e4ed73-bde1-4b31-adc5-3c75cfcf8598", "value": "Keramik"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "5b060aca-c1bb-4c04-bbea-f27da1d4f07e", "value": "http://vocab.getty.edu/aat/300151343"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "1b7246a0-14f3-4c8d-92fc-48f3f9b4bffb", "value": "Object genre including visual works and other articles made of ceramic, which is any of various hard, brittle, heat-resistant and corrosion-resistant materials made by shaping and then firing a nonmetallic mineral, such as clay, at a high temperature. Ceramic ware, earthenware, porcelain ware, and brick products are examples of ceramics."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/df4f12d3-48ca-49af-8e96-edc6d52af481"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "a36657d3-39b3-4e0c-9864-c474eabcebb6", "value": "Paint formed of an emulsion of fatty and watery constituents. The standard emulsion is usually created with egg yolk and water, with variants of man-made emulsions created with whole egg, linseed oil, casein glue, gum, or wax."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "f8a3d50d-1701-4fd6-ad39-c6f0eec47708", "value": "tempera"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "9908f73e-64ce-46c7-b5a4-996c9c3eb22e", "value": "http://vocab.getty.edu/aat/300015062"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f29c3f29-101a-4e82-95bb-cdd7008e27af"> + <skos:Concept rdf:about="http://localhost:8000/2023db9b-d735-4ecf-91be-ef1fcf7110bc"> + <skos:prefLabel xml:lang="de">{"id": "bed43d5a-4e57-42d5-bfdf-cadf996631e2", "value": "Papier"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "6b5c7701-ad16-4915-ade9-049204d0ca5e", "value": "paper (fiber product)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "57674c3d-c2ed-4625-be92-7f06e9eb49a1", "value": "peintures (visual works)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "09c68697-ce9f-445c-b47b-077575297dc3", "value": "Gem\u00e4lde"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "0826b839-0aba-479c-822f-6fde13b3d340", "value": "http://vocab.getty.edu/aat/300033618"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "731e24c9-a9e2-4cb5-8c56-90104da4f3b2", "value": "Individuelles Werk, bei dem die Darstellungen haupts\u00e4chlich durch das direkte Auftragen von Farbstoffen gebildet werden, die in \u00d6l, Wasser, Eigelb, geschmolzenem Wachs oder anderer Fl\u00fcssigkeit aufgel\u00f6st sind und bei dem die Farbmasse auf eine meist zweidimensionale Oberfl\u00e4che aufgetragen wird. "}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "bf9a8ae9-ea0d-4ded-9eb8-7a2ea877ce73", "value": "Unique works in which images are formed primarily by the direct application of pigments suspended in oil, water, egg yolk, molten wax, or other liquid, arranged in masses of color, onto a generally two-dimensional surface."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "f94bfc3b-2456-45b2-9048-d5bc0945e9a0", "value": "paintings (visual works)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "11998f4e-ee70-4fe9-8db4-3fc4fc3492d5", "value": "http://vocab.getty.edu/aat/300014109"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "f3ad9810-db8b-4a3b-ad77-3cabdf1ac5d4", "value": "papier"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "0c45ab0b-35f2-4c17-b400-85fe8b2442ba", "value": "Refers generally to all types of thin matted or felted sheets or webs of fiber formed and dried on a fine screen from a pulpy water suspension. The fibers may be animal, such as hair, silk or wool, or mineral, such as asbestos, or synthetic. However most paper is made from cellulosic plant fiber, such as from wood pulp, grass, cotton, linen, and straw."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2fe66f7d-a761-4861-ab10-985b578bbe9b"> - <skos:prefLabel xml:lang="de">{"id": "d3f3c859-abcd-44a5-b069-c076fa757c6d", "value": "Skalpell"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "39ebabe1-5cd9-458e-8d20-da139abe969f", "value": "Kleines, in der Regel gerades Messer mit d\u00fcnner Klinge, manchmal auch mit austauschbaren Klingen, f\u00fcr pr\u00e4zises Schneiden oder vorsichtiges Entfernen eines Materials von einem anderen verwendet."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "cf3e332c-d9a3-4208-aec6-2f179d1a507e", "value": "Small, thin-bladed, usually straight knives, sometimes with changeable blades, used for precise cutting or delicate removal of one material from another."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "f3aab4ba-c95f-420a-b2c6-9ef5d3798009", "value": "http://vocab.getty.edu/aat/300262233"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "1506ab92-50ba-4db9-93a7-6fdbd6daefee", "value": "scalpels"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "e8fe4650-02a1-4fd1-a54e-43d9350cecda", "value": "scalpel"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/3737266f-33a8-454e-98cb-34734756ec9c"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "541e3892-e8e1-4626-ae88-f45ead8eedaf", "value": "terracotta (clay material)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b6c285c5-3d11-42a4-895c-e04493a30bf8", "value": "A baked or semi-fired material that is usually a mixture of clay, grog, and water; it has been used for pottery, statuettes, lamps, roof tiles, and cornices since ancient times. It may be glazed prior to firing. To produce an item, terracotta is molded or shaped, dried for several days then fired to at least 600 C. It is fireproof, lighter in weight than stone, and usually brownish red in color."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "49bb0236-01b1-45ce-9bf2-18499edc2359", "value": "http://vocab.getty.edu/aat/300010669"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/9afbc9a7-f570-46b1-9055-80cc62bf82b3"> + <skos:Concept rdf:about="http://localhost:8000/ff9c8200-4c32-41c3-903a-8f0e92f3d013"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "f5faf21b-4e4b-455d-bdc9-f3f2c0d29ae1", "value": "http://vocab.getty.edu/aat/300133025"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "4308c6a4-34fe-4308-a432-48ffeb328572", "value": "Works of art in any medium, including performance art. A work of art may exist as a part of a larger object, e.g., a mural painting or a painting on a piece of furniture. When referring to the study or practice of the fine arts or the fine and decorative arts together, use \"art.\" In reference to pieces of fine or decorative arts as collectables rather than museum objects, in English use either \"art objects\" or the French term \"objets d'art,\" which emphasizes this meaning."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "46b32823-2ed9-4a1e-b62f-6e8893f583dd", "value": "works of art"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "c34def94-771a-47f8-a3cd-18aed38e1bdd", "value": "ink, iron gall"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b8a952ed-2c65-4aa1-b172-bcf669bf4187", "value": "http://localhost:8000/ff9c8200-4c32-41c3-903a-8f0e92f3d013"}</dcterms:identifier> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/465a8351-5ab1-4ffe-a768-57a08f44028e"> + <skos:prefLabel xml:lang="en">{"id": "cc5254fa-0744-41d6-b15d-4a0db5d486af", "value": "Italian (culture or style)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "f9b8488d-ddbc-4095-93a8-2e3b9321ad64", "value": "italienne"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "357e7d80-0482-4913-9d30-2433fd00e9e9", "value": "Refers to the culture of the modern nation of Italy, or in general to cultures that have occupied the boot-shaped Italian peninsula in the Mediterranean Sea."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "a00e8eac-130e-40fd-b68e-833494eca59c", "value": "http://vocab.getty.edu/aat/300111198"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"> + <dcterms:identifier xml:lang="en">{"id": "925a876e-6f4a-4ec4-b2f7-660704ce8c17", "value": "http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "2c07b59a-66b5-402e-9fd9-c6df59cbe162", "value": "GC-MS"}</skos:prefLabel> + <skos:altLabel xml:lang="en">{"id": "63ef399b-cf47-47cc-b203-2820c3e6eca4", "value": "Gas chromatography\u2013mass spectrometry"}</skos:altLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/b3498065-2de2-43d1-945c-96713ffb1fb8"> + <skos:prefLabel xml:lang="en">{"id": "edc4c395-1c5c-4839-9a72-26f06baf85d4", "value": "private collections"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "d9ebad57-0a77-4dd7-bd0c-8f5a24095414", "value": "collections priv\u00e9es"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "a22cba05-467f-410d-bbcf-15ac4c700330", "value": "Privatsammlung"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "cb6e5970-92f1-4bc9-9bee-1b20d1d7c50c", "value": "Collections owned and maintained by private individuals, outside of the public domain."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "afdfa077-538e-42bf-b222-0297f8b273bf", "value": "Sammlung, die ein Individuum zusammenstellt und besitzt und nicht \u00f6ffentliches Eigentum ist."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "8aad3b58-1b0e-4e88-97cd-d69db5f7fdde", "value": "http://vocab.getty.edu/aat/300146236"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f7bc2695-ae97-4901-946d-805cde489257"> + <skos:prefLabel xml:lang="en">{"id": "2d5ecf35-07f8-42ca-bfdc-69ebac527b82", "value": "Mexican"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "85f88871-2d8b-4139-af2a-2fef87dca629", "value": "Culture and nationality of the nation of Mexico or its people."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "b3dd8066-c92b-4582-84c1-b90e531df9e9", "value": "http://vocab.getty.edu/aat/300107963"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "e10bf60e-1ec1-40fb-b711-554356398596", "value": "mexicaine"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/6dd419c8-178e-4144-b107-da5aaf329529"> + <dcterms:identifier xml:lang="en">{"id": "924c7766-3878-477c-91fc-d769d51ca03a", "value": "http://vocab.getty.edu/aat/300417194"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "dbde1edb-9ae2-4b1d-97b4-107f452991b5", "value": "Titles or names that have been translated into a language other than the original language, or expressed in a writing system other than the original."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "50a74d12-94f1-4dc8-96e1-ee881603a991", "value": "translated titles"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/ab9ab119-7e05-4841-9679-7bcc13548caa"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/bc808332-ff1f-48df-9a2d-2222999cbfff"> - <skos:scopeNote xml:lang="en">{"id": "bb6474b2-8f2d-4e40-8008-a825b9785c4b", "value": "Devices that generate electromagnetic radiation in the ultraviolet, visible, or infrared spectrum, in the form of a very narrow continuous or intermittent beam. Originally an acronym for \"light amplification by stimulated emission of radiation;\" the first functional laser was built by Theodore H. Maiman (1927-2007), and demonstrated in 1960. Lasers have multiple applications: they are used as components in information retrieval and transmission devices and systems, cutting, measuring, and medical tools, and as entertainment devices."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "0dd146b7-b45a-4082-9642-c9fd370c4eb9", "value": "lasers (optical instruments)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "91ae01fe-bb41-46c0-bc51-7e163456366c", "value": "Ger\u00e4t zur Erzeugung permanenter oder intermittierender elektromagnetischer Erzeugung eines d\u00fcnnen Lichtstrahls im ultravioletten, im sichtbaren oder im infraroten Bereich des Spektrums. \"Laser\" ist ein Akronym f\u00fcr \u201elight amplification by stimulated emission of radiation\"\" (Lichtverst\u00e4rkung durch stimulierte Emission von Strahlung). Das erste funktionale Laser-Ger\u00e4t wurde von Theodore H. Maiman (1927-2007) konstruiert und im Jahr 1960 vorgestellt. Laser werden in vielen Bereichen eingesetzt, als Komponenten f\u00fcr den Abruf oder die Wiedergewinnung elektronischer Informationen, in der Produktion zum Schneiden oder Messen, als medizinisches Werkzeug oder in der Unterhaltungselektronik."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/5b8027bf-d85e-4801-8c9d-723f9b8d9fb5"> + <dcterms:identifier xml:lang="en">{"id": "0cbb347c-8a9c-4c4d-810e-dd78c4dc1244", "value": "http://vocab.getty.edu/aat/300417644"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "a7f3dcf4-37df-4baa-8a4f-3d5cd1534622", "value": "transfer (method of acquisition)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "3d64ea9f-9895-4c68-8b38-859acba9c998", "value": "Method of acquiring property by legally conferring existing ownership to another person or institution; it does not necessarily involve benefactors."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "599021d3-0d1d-40ab-b2c9-72c8ee66c2b0", "value": "http://vocab.getty.edu/aat/300024548"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "537e9aa8-4161-499b-9279-e62512f4726f", "value": "Laser"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c6df2fb1-861f-4a72-b6d3-baffae85c4e6"> + <skos:Concept rdf:about="http://localhost:8000/25e157c6-b10a-4198-8abf-0fc18bf80b3d"> + <skos:scopeNote xml:lang="en">{"id": "380773fb-ee60-4d27-b643-243e72c0d075", "value": "Status of property transferred by sale to a new owner in an auction, which is a public sale of property to the highest bidder, as by successive increased bids."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "6f74979e-a87a-4c30-88de-83d610171ce1", "value": "Skulptur"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "f85df224-68a5-419a-9d6c-e22b2674c1ad", "value": "http://vocab.getty.edu/aat/300047090"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "52944842-2952-4e40-bb35-6a6710bf6274", "value": "Dreidimensionales Kunstwerk, in dem Bilder und Formen im Relief oder vollplastisch dargestellt werden. Der Begriff bezeichnet Werke, die durch Schnitzen oder Gravieren eines harten Materials, durch Gie\u00dfen oder Formen weichen Materials (in der Regel sp\u00e4ter erh\u00e4rtend) oder durch Montieren verschiedener Teile entstehen. \u00dcblichweise wird der Begriff f\u00fcr gro\u00df oder mittelgro\u00df dimensionierte Objekte aus Stein, Holz, Bronze oder anderem Metall verwendet. Kleinere Objekte werden in der Regel als \"Environmens\" oder mit anderen, geeigneten Begriffen bezeichnet. \"Skulptur\" bezieht sich auf Werke, die fassbare Wesen, Objekte oder Gruppen von Objekten darstellen oder auf abstrakte Werke, die definerte, messbare Kanten und Ausdehnungen besitzen. Dreidimensionale Werke, die unbestimmter im Raum und Zeit oder weniger greifbar sind, sollten mit entsprechend spezifische Begriffen wie \"Mail Art\" oder \"Landart\" bezeichnet werden."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "62a2a779-4df2-4e1f-98fe-bd04270b864d", "value": "Three-dimensional works of art in which images and forms are produced in relief, in intaglio, or in the round. The term refers particularly to art works created by carving or engraving a hard material, by molding or casting a malleable material (which usually then hardens), or by assembling parts to create a three-dimensional object. It is typically used to refer to large or medium-sized objects made of stone, wood, bronze, or another metal. Small objects are typically referred to as \"carvings\" or another appropriate term. \"Sculpture\" refers to works that represent tangible beings, objects, or groups of objects, or are abstract works that have defined edges and boundaries and can be measured. As three-dimensional works become more diffused in space or time, or less tangible, use appropriate specific terms, such as \"mail art\" or \"environmental art.\" "}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "f324d558-4e70-4809-a0bb-14ebb4f4dcf1", "value": "sculpture (\u0153uvres visuelles)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "860c0f17-c655-4eb9-95f1-693c729d225e", "value": "sculpture (visual works)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "6540d1dd-26d7-43b1-bdc2-8235964a7f6c", "value": "sold at auction"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "82ad1978-a2ed-4f4d-9c04-6b4edbefddb5", "value": "http://vocab.getty.edu/aat/300420000"}</dcterms:identifier> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/725a5deb-3ed2-4b66-9979-8590ad6a6d6e"> - <skos:scopeNote xml:lang="en">{"id": "f8a420e8-e072-4f44-a9a9-d9b9b2ba6530", "value": "Addresses, not necessarily street addresses of the home or workplace, to which mail for a particular person, family, or corporate body is to be sent."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "e12647f0-6efc-49de-b5a9-5b5abf745707", "value": "mailing addresses"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e2b1c654-2497-4ac8-9fdb-fbb999d851c8", "value": "http://vocab.getty.edu/aat/300435687"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ef0d0cbf-719e-4479-88eb-0c20dc17ce5a", "value": "Transfer of Custody Event Type"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "12f9ac43-6c88-466b-99a3-ef764300f5fd", "value": "http://localhost:8000/ab9ab119-7e05-4841-9679-7bcc13548caa"}</dcterms:identifier> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/2f397086-f12b-4f43-881b-2f582b307968"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "bd304982-5760-4836-9a7b-cf9071cff09b", "value": "http://vocab.getty.edu/aat/300417645"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "1279380a-3b1a-4daf-bba3-0bcd9db75383", "value": "loan (method of acquisition)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "55b3e02a-67f7-4322-8e4a-b7e0b93675da", "value": "Method of acquiring property for temporary use, with or without the payment of interest."}</skos:scopeNote> + </skos:Concept> + </skos:narrower> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/2c7f2bb2-7527-438c-877b-90b1a5c67b83"> + <skos:scopeNote xml:lang="en">{"id": "8f523ce2-23e2-4b05-a3c8-50cc0cd7af97", "value": "General term for the method of acquiring property through transference by one person or institution to another person or institution, voluntarily and without any payment required."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "e1e9e840-9495-4489-b6c1-7633fc5631bc", "value": "http://vocab.getty.edu/aat/300417637"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "90623a2a-9684-4090-aa35-64395e34ed45", "value": "gift (method of acquisition)"}</skos:prefLabel> + </skos:Concept> + </skos:narrower> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/714dc5b5-f2f3-4daa-9a6c-ed07c385aeec"> - <skos:scopeNote xml:lang="en">{"id": "b4db282b-c8bf-4fba-9ec7-485ed8def725", "value": "The activity of comprehending, analyzing, and expressing written or spoken material in a different language from the original."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "4f517ea6-a609-4263-8b10-93bc10622d09", "value": "translation (function)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "ba301092-b764-4ca0-bd2b-4b52e99bf62a", "value": "http://vocab.getty.edu/aat/300069831"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/07edfe46-dc43-40ab-aeec-3103e2673bab"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "198ca933-218e-40d1-a440-0c3d0db26786", "value": "grisaille"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "a4db6b8a-e939-4354-b0d9-f4ca0aa2c525", "value": "http://vocab.getty.edu/aat/300053386"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "a75726f6-579c-47fb-a3ac-fbe3c95042e5", "value": "Gemaltes Bild in Schwarz-Wei\u00df, in der Regel mit Graut\u00f6nen; etabliert in der Malerei, Glasmalerei, Emaillekunst, auf Keramik und anderen Objekten."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "dc45c0c3-9f68-4ff6-865f-a4a1e0ed3014", "value": "Painting of images in monochrome, usually gray tones; employed in paintings, stained glass, enamels, and on pottery and other objects."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "a43b0e72-45b5-4bdb-b064-b621e944a047", "value": "Grisaillemalerei"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/6696a427-b2ff-4fce-9f78-61861c063c37"> - <skos:scopeNote xml:lang="en">{"id": "cd2c9e56-0fb5-4d8e-846c-ea81d295ef7b", "value": "Suitable for, applicable to, or common to both males and females, not specifying gender. "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/17a5481d-5595-46cf-b6a1-56b29103f739"> + <skos:prefLabel xml:lang="en">{"id": "7909ae6f-d3ef-4522-8e72-8463d4726e6b", "value": "rental (method of acquisition)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "82a01dd0-11ca-4061-bc09-e6223f6880c6", "value": "http://vocab.getty.edu/aat/300417649"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "b8468b13-e6e6-4422-a887-1a5db12852ae", "value": "gender-neutral"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "65b20081-b8c4-48d2-a029-0710e03df777", "value": "http://vocab.getty.edu/aat/300417541"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "80e30a69-3b6b-4cdd-af5a-e041b962f700", "value": "Method of acquiring property for temporary use under terms by which the party in possession of the property will pay a regular fee for having control of or occupying the property."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c5f909c8-d870-4752-b62d-d18f945f1ddf"> - <skos:scopeNote xml:lang="en">{"id": "06269753-2871-4323-baa1-875682df0d1a", "value": "In the context of modern western personal names, the names that are hereditary and common to all members of a family; used with a first name to distinguish an individual from others with the same first name. In other cultural traditions, last names may not be hereditary family names or they may not be used at all. Before last names became common in western tradition, personal names were qualified with the addition of epithets, place names, ancestors' names, or terms for professions; these were added to a first name on an individual basis, not necesssarily hereditary for a family."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "281b7d2f-c2cc-45b7-a2a6-f9cbc17d2302", "value": "last names"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "b164f4a5-3296-4ca6-8145-abe6a60da9d3", "value": "http://vocab.getty.edu/aat/300404652"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/8362bfe2-eb98-4445-a18d-609f1515879f"> + <skos:prefLabel xml:lang="en">{"id": "0d407887-5784-4c83-9012-34ad72fd0121", "value": "resolution (optical concept)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "2702fe77-11bf-49e8-9468-941a2ea2ef72", "value": "The degree to which an image is distinct in its details as a function of the spacing of individual optical elements, such as grains of light-sensitive chemicals in a photograph or pixels in an electronic image; an important factor affecting image quality."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "e8f4340c-af74-4ae8-9edc-131de4121617", "value": "http://vocab.getty.edu/aat/300222980"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/fe766393-d00d-463e-b706-4ca9ad772b7d"> - <skos:scopeNote xml:lang="de">{"id": "7c409a84-7708-4eb9-bddc-f5dab7fc4949", "value": "Ger\u00e4t zur Farbmessung, das eine gegebene Farbe mit einer Standardfarbe, einer Farbskala oder bestimmten Kombinationen von Prim\u00e4rfarben vergleicht."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "dff9771b-c07c-4579-b34b-65d4c25ba901", "value": "colorim\u00e8tre"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "46e5d09a-6085-4b39-af90-84fd02cfc7b3", "value": "Instruments that measure color by comparing a given color to a standard color, a scale of colors, or certain combinations of primary colors."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/1148e436-446f-4bb7-9e35-1808ec1e56e4"> + <dcterms:identifier xml:lang="en">{"id": "011aa470-62db-40f8-be92-add6b35ae7d9", "value": "http://vocab.getty.edu/aat/300404012"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "0d448925-2c00-4c84-b0f5-73af5df37f47", "value": "http://vocab.getty.edu/aat/300196006"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "c85c1363-2c13-48d5-a99c-a7b665fc9773", "value": "colorimeters"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "ed69c1ff-2910-4522-ac06-f2dcfc27f963", "value": "Kolorimeter"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "8ee57b91-83aa-4e1e-abf1-1fc6eb12e1ee", "value": "Numbers or alphanumeric codes that are not repeated within a given environment and used to unambiguously and uniquely identify an object, record, or data element."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "170b84a4-646d-4e30-932e-f2c719ebf35f", "value": "unique identifiers"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/68c7d1a5-862a-4c08-bd7e-9047c49b102d"> - <skos:prefLabel xml:lang="en">{"id": "86d90174-abf6-4dcf-b43f-73a3e6361945", "value": "Latin American"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "44d6c243-2cdb-4da3-8c0e-0294764c6208", "value": "http://vocab.getty.edu/aat/300080819"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "c76a188b-5eb9-4b6b-98fa-61bd185b7ba0", "value": "In the strictest sense, refers to the cultures of the countries of South America, North America, Central America, and the Caribbean that were originally colonized by Spain. It may also refer more broadly to all the cultures of this region, including those that were originally colonized by the French or Portuguese."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/fa11cdad-f45d-41f2-bac0-8b8045cff74b"> + <skos:prefLabel xml:lang="en">{"id": "98d9e6ff-1405-4208-b899-bf863f290238", "value": "pointillism (painting technique)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "cfbf116c-a75f-490e-a069-5d227f4a3623", "value": "http://vocab.getty.edu/aat/300067450"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "4b0d073a-0ffd-4652-b034-42d4fbd945de", "value": "Painting technique whereby tones and hues are obtained by applying regular small dots or touches of unmixed pigment on the canvas so that they combine optically. The French critic F\u00e9lix F\u00e9n\u00e9on coined the term \"peinture au point\" in 1886 after seeing Seurat's \"La Grande Jatte.\" Paul Signac offered the alternative term of \"divisionism\" in his book \"D'Eug\u00e8ne Delacroix au N\u00e9o-Impressionnisme (1899), although in modern usage \"pointillism\" is reserved for the technique involving dots applied in a controlled manner, while \"divisionism\" refers to use of marks of unmixed color in Italian painters\u2019 works."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="fr">{"id": "be8808de-3312-409c-b075-301fdce8d2bd", "value": "pointillisme"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/77c89579-9cd7-4855-9126-7878278a1483"> + <skos:Concept rdf:about="http://localhost:8000/e15a5258-c4c6-479f-bd0b-30e83ec5a3f1"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "98862173-61b4-4f66-8a44-f0284d90ce66", "value": "http://vocab.getty.edu/aat/300182574"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "91edcc87-1af7-4b27-ac96-81a9057d6a49", "value": "The art or practice of producing creative works with acrylic paint."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "e6316cf4-6287-4eda-89d4-c0bc6b554d8d", "value": "acrylic painting (technique)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "282a367d-eba1-488a-8799-857a43cd860f", "value": "The process or function of copying or taking material or data from one place for use in another; for example, copying data out of a database for reconfiguration in a publication. "}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "5a40a5d2-e39e-4aa9-84f0-2a7fe47db845", "value": "extracting (information handling)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "cfbaa1ab-2d5f-41ee-82f2-1b4f759d6c7b", "value": "http://vocab.getty.edu/aat/300417261"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/af4c0571-889d-4fb9-a7d5-f14c05d102ca"> - <skos:prefLabel xml:lang="en">{"id": "7fcf52ad-c2c0-4554-bd90-eff9dd7fdbf5", "value": "painting (image-making)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "413691a4-8474-4d96-83c7-896e8c44462f", "value": "The art and practice of applying pigments suspended in water, oil, egg yolk, molten wax, or other liquid to a surface to create an expressive or communicative image. Paint is usually, but not always, applied with a brush. For the application of paint primarily to protect a surface or add a general color, use \"painting (coating).\""}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/9b1c5d1b-7ff9-400a-acde-c9a081eff7e1"> + <skos:altLabel xml:lang="en">{"id": "6feaa0cc-b592-11ee-8d43-6f2e57f31132", "value": "Scanning electron microscopy \u2013 energy dispersive (SEM-EDS) spectroscopy Measurement"}</skos:altLabel> + <skos:prefLabel xml:lang="en">{"id": "a1f180e3-96a7-46b8-beb5-beedfe94be86", "value": "SEM-EDS Measurement"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "e9eb8b99-e646-4564-b7ed-690b8bdb79ec", "value": "http://vocab.getty.edu/aat/300054216"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/f18613e5-aa77-4400-97b9-aaf6987de517"> + <skos:Concept rdf:about="http://localhost:8000/f7dda933-9221-4555-a828-493962ab9411"> + <skos:scopeNote xml:lang="en-us">{"id": "5a117a8f-067b-4363-a011-fa6c45027f90", "value": "No AAT Identifier yet"}</skos:scopeNote> + <skos:prefLabel xml:lang="en-us">{"id": "b50a6014-eb9f-44d0-b49b-182028c4720b", "value": "Spreadsheet"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "df1cfeab-ec18-4545-8252-3e1110ec8576", "value": "http://localhost:8000/f7dda933-9221-4555-a828-493962ab9411"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "967bedd9-869a-4715-98a0-e9e024d503eb", "value": "http://vocab.getty.edu/aat/300072633"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "c3e0236e-f678-439f-953e-8c86b6da4f16", "value": "depth (size/dimension)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "59a3a161-643c-4df9-927f-45af575ff72b", "value": "Length of a straight line measured downward from a plane or surface, or inward from a plane or surface. For the measurement or extension through or between opposite surfaces, prefer \"thickness,\" although usage overlaps."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/2f7aa8c7-8162-41a2-a742-92103bc838e2"> - <dcterms:identifier xml:lang="en">{"id": "397cb0a9-53b7-4f68-b206-1fe0b8f4cf42", "value": "http://vocab.getty.edu/aat/300417742"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "4ec8b858-407e-4b1a-bd98-1a50ed25e3b0", "value": "scanning"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "eb3234f9-a181-4e5d-bf26-96477d614015", "value": "Process of analysis done by transversing the scanned subject by a detector or an electromagnetic beam; scanning is done to determine the nature, qualities, measurements, etc. of an object, living subject, area, or other thing; the analysis may involve the recording of information derived from the scanning."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/c5c1b27b-de1d-4dd3-aeb6-3a8a2715a7dc"> + <skos:prefLabel xml:lang="en">{"id": "e0ff9946-c3dd-462c-987f-1aabbb314f67", "value": "gigabytes"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "adcce31e-f965-41fc-8576-7beee62507d3", "value": "A unit of information or computer file storage equal to one billion bytes. "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "ba2cb744-4512-41d1-9a15-3b48d04ed62b", "value": "http://vocab.getty.edu/aat/300265874"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/2c276821-6d7b-421d-bea4-814669f7aa7f"> - <dcterms:identifier xml:lang="en">{"id": "e46cb28d-733d-4ac1-874d-4374166fcdf5", "value": "http://vocab.getty.edu/aat/300379098"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "84ca6a6c-c95d-47b2-9adf-bfbf04536ec6", "value": "In the metric system, units of length equal to 1/100 of a meter, or .3937 (nearly 2/5) of an inch. "}</skos:scopeNote> - <skos:prefLabel xml:lang="en-us">{"id": "451e8af6-f86b-47be-ad29-180849679726", "value": "centimeters"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/7894309c-220d-4a2f-910a-8f412095f9f7"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="fr">{"id": "9f8664aa-3938-4c1b-8131-a7cebfae8759", "value": "arabe"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "58dff838-c170-4755-9f09-dcea453c65ad", "value": "Arabic (language)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "97bf8263-541b-44b8-971d-296d134036dc", "value": "http://vocab.getty.edu/aat/300387843"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "30fad719-d53e-46b7-871d-7e23130c1a79", "value": "Arabisch"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/f1e7c733-a149-4ffe-8f8e-620c852f4131"> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a23008bd-df63-4d01-a3c7-e22e0f34ad80"> - <skos:prefLabel xml:lang="en">{"id": "4a5389dc-8ed2-4886-b0fd-2c4c6edeb209", "value": "committees"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "2855ff18-eaf2-4bfb-835e-de8f477a3931", "value": "http://vocab.getty.edu/aat/300025980"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "70c1113a-ff77-4357-a847-8a9f61006a39", "value": "Groups of persons delegated to consider, investigate, or take action upon and usually to report concerning some matter or business."}</skos:scopeNote> - </skos:Concept> - </skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/05a7e094-5bd7-4b2a-9cf2-98d43866e8f7"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "1c1f1f79-3a20-47ca-90dd-8eb995ae9a21", "value": "Words, phrases, sentences, single characters, sequences of characters, or other distinguishing names appearing on or in an item, naming the work for purposes of identification and reference. Examples are descriptive headings in books or legal documents. For titles as a general concept, particularly when assigned to a work, including works of art, but not necessarily appearing on it, prefer \"titles (general, names).\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "50ae1ee8-8911-4c6c-b580-ea817aa0c086", "value": "http://vocab.getty.edu/aat/300195168"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "90576d5b-1046-465b-9be3-24af7bab6f5c", "value": "Titel (Teildokument)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "afd18477-3281-4d22-b7e6-3ae18cb6dcf0", "value": "Charakteristischer Name, der einem einzelnen Werk, einer Gruppe oder Reihe von Werken gegeben wird, gilt f\u00fcr alle Medien."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "8ece3d7b-352e-4e6b-abb4-ec8caa8431e9", "value": "titles (partial documents)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e5909f90-de56-40ed-8262-2b0b9ed629f2"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0d87b5d0-1aac-456f-81e7-62c260e2293d"> - <skos:scopeNote xml:lang="en">{"id": "1eed7486-f671-4a8b-8a0f-70ba0a631ef4", "value": "Major executive or administrative units within an organization. For major autonomous or semi-autonomous units within an organization, use \"divisions (organizational units).\" Use of these terms in literature, especially with regard to the official titles of organizational units, is idiosyncratic and often no consistent distinction is made."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/c6df2fb1-861f-4a72-b6d3-baffae85c4e6"> + <skos:scopeNote xml:lang="en">{"id": "62a2a779-4df2-4e1f-98fe-bd04270b864d", "value": "Three-dimensional works of art in which images and forms are produced in relief, in intaglio, or in the round. The term refers particularly to art works created by carving or engraving a hard material, by molding or casting a malleable material (which usually then hardens), or by assembling parts to create a three-dimensional object. It is typically used to refer to large or medium-sized objects made of stone, wood, bronze, or another metal. Small objects are typically referred to as \"carvings\" or another appropriate term. \"Sculpture\" refers to works that represent tangible beings, objects, or groups of objects, or are abstract works that have defined edges and boundaries and can be measured. As three-dimensional works become more diffused in space or time, or less tangible, use appropriate specific terms, such as \"mail art\" or \"environmental art.\" "}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "31505fbd-a9cb-4fe0-a38c-990ef73dab16", "value": "http://vocab.getty.edu/aat/300263534"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "51a432fd-f66a-4197-a5b9-48b1445d5bb2", "value": "departments (organizational units)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "6f74979e-a87a-4c30-88de-83d610171ce1", "value": "Skulptur"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "f324d558-4e70-4809-a0bb-14ebb4f4dcf1", "value": "sculpture (\u0153uvres visuelles)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f85df224-68a5-419a-9d6c-e22b2674c1ad", "value": "http://vocab.getty.edu/aat/300047090"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "52944842-2952-4e40-bb35-6a6710bf6274", "value": "Dreidimensionales Kunstwerk, in dem Bilder und Formen im Relief oder vollplastisch dargestellt werden. Der Begriff bezeichnet Werke, die durch Schnitzen oder Gravieren eines harten Materials, durch Gie\u00dfen oder Formen weichen Materials (in der Regel sp\u00e4ter erh\u00e4rtend) oder durch Montieren verschiedener Teile entstehen. \u00dcblichweise wird der Begriff f\u00fcr gro\u00df oder mittelgro\u00df dimensionierte Objekte aus Stein, Holz, Bronze oder anderem Metall verwendet. Kleinere Objekte werden in der Regel als \"Environmens\" oder mit anderen, geeigneten Begriffen bezeichnet. \"Skulptur\" bezieht sich auf Werke, die fassbare Wesen, Objekte oder Gruppen von Objekten darstellen oder auf abstrakte Werke, die definerte, messbare Kanten und Ausdehnungen besitzen. Dreidimensionale Werke, die unbestimmter im Raum und Zeit oder weniger greifbar sind, sollten mit entsprechend spezifische Begriffen wie \"Mail Art\" oder \"Landart\" bezeichnet werden."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "860c0f17-c655-4eb9-95f1-693c729d225e", "value": "sculpture (visual works)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/625da1d2-1c85-4629-91de-c970ff84d1f6"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/929b011e-3cdb-449e-b155-8cd2808ed4c5"> - <skos:prefLabel xml:lang="en">{"id": "3b5bd347-cb78-4761-80bf-598ac9a2574e", "value": "governments (administrative bodies)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "a392d875-1eee-411b-a0cc-8ce930401483", "value": "Bodies that exercise continuous authority on behalf of a nation, state, community, or other administrative entity over the actions of subjects or citizens, by authoritative direction or regulation."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "de682570-ecde-41bb-8d57-8897eaddd88c", "value": "http://vocab.getty.edu/aat/300386741"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/3946b808-80f1-42a1-9521-ce27043569b8"> + <skos:prefLabel xml:lang="de">{"id": "a8a95032-ea9b-429e-955c-d3924c5cc9f3", "value": "Schnitzerei (Schnitzkunst)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "9e0d383c-0ddb-4266-a443-a4842cf9eb00", "value": "Refers to works executed by cutting a figure or design out of a solid material such as stone or wood. It typically refers to works that are relatively small in size, are part of a larger work, or are not considered art. For large and medium-sized three-dimensional works of art, use the broader term \"sculpture\" or another appropriate term."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "26846ff8-8c32-41ad-b439-9f0a326bbfe4", "value": "http://vocab.getty.edu/aat/300047203"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "4f6b4ada-1918-4226-b593-adb5cb3449f7", "value": "carvings (visual works)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="de">{"id": "45ba0441-7f96-4691-9add-b3b47ebd6d10", "value": "Bezeichnet eine durch Schnitzen aus einem harten Material wie Stein oder Holz ausgef\u00fchrte Figur oder ein Muster. Meist bezogen auf relativ kleinformatige Arbeiten, die Teil einer gr\u00f6\u00dferen Arbeit sind oder nicht als Kunst angesehen. F\u00fcr gro\u00dfe und mittelgro\u00dfe dreidimensionale Kunstwerke wird der umfassendere Term \u201cSkulptur\u201d oder ein anderer passender Begriff verwendet."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "8505419d-2513-45f3-bee6-c44663771ed2", "value": "http://localhost:8001/e5909f90-de56-40ed-8262-2b0b9ed629f2"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/87429aa4-81ee-415e-87c2-8420089d53f4"> - <skos:prefLabel xml:lang="en">{"id": "4cf6e19d-4846-4e30-ab57-b54d808735d8", "value": "programs (organizations)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/24f2475d-0bcf-4f7c-a8c2-de2e60e7b333"> + <skos:scopeNote xml:lang="en">{"id": "18a45a5e-e020-4252-bc84-9a0f851921f9", "value": "Works composed primarily of beautiful, elegant letters or flourishes that are typically created by hand with a pen, either in unjoined characters or in cursive writing. May also refer to similar works created by computer or another means."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "1753ba99-5e2c-48e0-9e78-5816daf7383c", "value": "Werk, das haupts\u00e4chlich aus sch\u00f6nen, eleganten Buchstaben oder Schn\u00f6rkeln gebildet ist, die gew\u00f6hnlich von Hand mit einem Schreibstift geschaffen wurden, entweder mit unverbundenen Buchstaben oder in kursiver Schreibschrift. Kann sich auch auf \u00e4hnliche Werke beziehen, die mit dem Computer oder anderen Mitteln geschaffen wurden."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "f328fd17-06a8-4ce7-8239-7e49de89875d", "value": "Kalligraphie (Visuelles Werk)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "c4042b8c-d8c4-4cbd-b7ae-62127189fd3b", "value": "Organizations, agencies, departments, or other entities that coordinate, direct, and oversee the implementation of multiple interrelated projects or activities."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "c2e7f040-964c-4b9f-a5cb-78e842e34775", "value": "http://vocab.getty.edu/aat/300386364"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "5934dd3f-1234-4b91-88c9-f67116565302", "value": "calligraphie"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "64bb1e72-d8c6-403b-a06c-bfa1520a902b", "value": "http://vocab.getty.edu/aat/300266660"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "fdfc5c42-5bd6-493c-a12b-65dff4f0238a", "value": "calligraphy (visual works)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "7edfb99c-6af3-46b5-b929-573b7b49a360", "value": "Group Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7a18d2f2-e8d2-4ae7-a7ce-e4d02083149e"> + <skos:Concept rdf:about="http://localhost:8000/3949f930-cb20-4cc0-b914-77e399bbb3a2"> + <skos:prefLabel xml:lang="de">{"id": "83452bc5-3635-4e91-b8c2-809dc84e50a5", "value": "Collage"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c7c8443a-5877-4081-b705-2d2a4a010b32", "value": "Works in two dimensions or very low relief that were made by gluing paper, fabrics, photographs, or other materials onto a flat surface"}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "ae585c23-4ef4-489c-b1ed-0bb35fb1a7fd", "value": "http://vocab.getty.edu/aat/300033963"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "9a96baa8-a98d-4eae-a63b-9fbad314a2eb", "value": "Zweidimensionales Werk oder mit sehr flachem Relief, das durch Kleben von Papier, Stoff, Fotografien oder anderen Materialien auf eine flache Oberfl\u00e4che hergestellt wurde."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "59218296-c061-4de9-8e1f-7b3780af67a8", "value": "collages (visual works)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "b8559463-4892-44de-9677-eab8d14d6e6a", "value": "agencies"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "77f5a84c-5245-44ff-ad2d-eb621ddb6989", "value": "http://vocab.getty.edu/aat/300025949"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "9f6abcec-98cd-4fb7-8aa8-f281902f6a9c", "value": "Commercial organizations or certain administrative units of government that provide a service."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0ce70c72-c0c8-4b2d-86af-39821d6a3d07"> - <dcterms:identifier xml:lang="en">{"id": "406d2681-1416-4a40-a876-30f256550fcf", "value": "http://vocab.getty.edu/aat/300248011"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "5f3b4caf-7a29-41b1-ba69-5f6cd155f8a5", "value": "teams"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/a2588fa8-5ae6-4770-a473-dec0c05fb175"> + <skos:prefLabel xml:lang="en">{"id": "31d97bdd-f10f-4a26-958c-69cb5ab69af1", "value": "analysis areas"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "03643976-e923-46ae-a794-7808d29c5b47", "value": "http://localhost:8000/a2588fa8-5ae6-4770-a473-dec0c05fb175"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "337e5132-8b60-4715-af45-867ca502c645", "value": "Groups of two or more people or animals functioning as a collaborative unit in some joint action, such as a sport, game, project, or task."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f6ae1e05-4657-464d-858e-f1426de3e9d3"> - <skos:scopeNote xml:lang="en">{"id": "148f987c-30f1-4a51-8e17-7a8119d93442", "value": "Groups who work to promote or accomplish stated goals through projects or other activities."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "31016139-7fc4-4bca-a67c-bb1e995451d7", "value": "initiatives (groups)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/2fe66f7d-a761-4861-ab10-985b578bbe9b"> + <skos:prefLabel xml:lang="fr">{"id": "e8fe4650-02a1-4fd1-a54e-43d9350cecda", "value": "scalpel"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "d3f3c859-abcd-44a5-b069-c076fa757c6d", "value": "Skalpell"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "39ebabe1-5cd9-458e-8d20-da139abe969f", "value": "Kleines, in der Regel gerades Messer mit d\u00fcnner Klinge, manchmal auch mit austauschbaren Klingen, f\u00fcr pr\u00e4zises Schneiden oder vorsichtiges Entfernen eines Materials von einem anderen verwendet."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "f3aab4ba-c95f-420a-b2c6-9ef5d3798009", "value": "http://vocab.getty.edu/aat/300262233"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "1506ab92-50ba-4db9-93a7-6fdbd6daefee", "value": "scalpels"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "cf3e332c-d9a3-4208-aec6-2f179d1a507e", "value": "Small, thin-bladed, usually straight knives, sometimes with changeable blades, used for precise cutting or delicate removal of one material from another."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "d2702fe4-680a-4d64-8381-bc23017f33a9", "value": "http://vocab.getty.edu/aat/300443859"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0c07fee2-14e2-4af3-b987-5d6d00958b45"> - <skos:scopeNote xml:lang="en">{"id": "cc787a2b-5ff5-419c-b2e7-edb524abdfc0", "value": "Groups of people organized for a purpose, typically characterized by a more or less constant membership, a body of officers or functionaries, and a set of regulations governing their activities and conduct."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/bbb94e5c-2e82-46d1-bc97-a0423d3fb2d7"> + <dcterms:identifier xml:lang="en">{"id": "89e85cf3-4fa7-4964-975d-ee674ac59cfb", "value": "http://vocab.getty.edu/aat/300028569"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "1d24195a-3658-4b38-8e58-76f49a5ccc88", "value": "http://vocab.getty.edu/aat/300025948"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "4398adbe-59e9-4137-9d19-641d708addd7", "value": "organizations (groups)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "091f8d84-09b6-4490-9623-6e13583d8b7a", "value": "Handwritten documents, particularly books and other documents created before the invention of the printing press. May also be used to distinguish certain documents from published or otherwise printed documents, as in the cases of typed personal letters or a typescript from which printed versions are made."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "ca57bc1a-b58e-43a0-a4af-30a236c65648", "value": "manuscripts (documents)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "64f17b63-5c54-4bc1-8e2a-27909acf905f", "value": "manuscrits"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "50c06691-6eda-454f-abae-5c90792eecab", "value": "Handgeschriebenes Dokument, vor allem B\u00fccher und andere Dokumente vor der Erfindung der Druckmaschine. Die Bezeichnung kann auch verwendet werden, um bestimmte Dokumente von ver\u00f6ffentlichten oder anderweitig gedruckten Dokumenten zu unterscheiden, wie in den F\u00e4llen von pers\u00f6nlichen Briefen oder mit der Scheibmaschinen geschriebenen Dokumenten, aus denen sp\u00e4ter gedruckte Ausgaben entstanden."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "db4eaa6e-99f8-431f-a64e-3add5b2dddbd", "value": "Manuskript (Dokumentengattung)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "67075e1b-9111-4111-8949-d43c46be2a9b", "value": "http://localhost:8000/f1e7c733-a149-4ffe-8f8e-620c852f4131"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ff5eb57a-f143-4890-b80a-e4f1f4ba7fd9"> - <skos:prefLabel xml:lang="en">{"id": "9e88f9f8-8f2f-4b45-8945-5be4b2db8969", "value": "Group Leaving Types"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/5f14cdc5-0430-4623-80d2-290510b99807"/> - <skos:narrower rdf:resource="http://localhost:8000/4be949ac-5737-4415-b2af-6055bfddcad0"/> - <dcterms:identifier xml:lang="en">{"id": "aa4b0acb-37fb-46eb-b2ee-f0f7aedb54bb", "value": "http://localhost:8000/ff5eb57a-f143-4890-b80a-e4f1f4ba7fd9"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/bc808332-ff1f-48df-9a2d-2222999cbfff"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/409ff344-73cb-4d92-82d1-abb5a80c744b"/> + <skos:prefLabel xml:lang="en">{"id": "0dd146b7-b45a-4082-9642-c9fd370c4eb9", "value": "lasers (optical instruments)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "537e9aa8-4161-499b-9279-e62512f4726f", "value": "Laser"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "599021d3-0d1d-40ab-b2c9-72c8ee66c2b0", "value": "http://vocab.getty.edu/aat/300024548"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "bb6474b2-8f2d-4e40-8008-a825b9785c4b", "value": "Devices that generate electromagnetic radiation in the ultraviolet, visible, or infrared spectrum, in the form of a very narrow continuous or intermittent beam. Originally an acronym for \"light amplification by stimulated emission of radiation;\" the first functional laser was built by Theodore H. Maiman (1927-2007), and demonstrated in 1960. Lasers have multiple applications: they are used as components in information retrieval and transmission devices and systems, cutting, measuring, and medical tools, and as entertainment devices."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "91ae01fe-bb41-46c0-bc51-7e163456366c", "value": "Ger\u00e4t zur Erzeugung permanenter oder intermittierender elektromagnetischer Erzeugung eines d\u00fcnnen Lichtstrahls im ultravioletten, im sichtbaren oder im infraroten Bereich des Spektrums. \"Laser\" ist ein Akronym f\u00fcr \u201elight amplification by stimulated emission of radiation\"\" (Lichtverst\u00e4rkung durch stimulierte Emission von Strahlung). Das erste funktionale Laser-Ger\u00e4t wurde von Theodore H. Maiman (1927-2007) konstruiert und im Jahr 1960 vorgestellt. Laser werden in vielen Bereichen eingesetzt, als Komponenten f\u00fcr den Abruf oder die Wiedergewinnung elektronischer Informationen, in der Produktion zum Schneiden oder Messen, als medizinisches Werkzeug oder in der Unterhaltungselektronik."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/581d3c26-5265-4979-aa1a-8a0409583c48"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/51eb7a71-66e1-45ba-97c7-f92edcf4cdec"> + <skos:Concept rdf:about="http://localhost:8000/7ea073d1-9998-4fb3-9bb7-d674417a42c1"> + <skos:prefLabel xml:lang="en">{"id": "c9c3d3e2-4211-4208-b9a9-8ed1e0b14759", "value": "installations (visual works)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "0cce3f1a-014e-4afa-8ec4-cfd8fae97feb", "value": "Installation (visuelles Werk)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "bb1842b8-8d97-4a61-933a-b0a82d7c5350", "value": "institutions (organizations)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "4345eb1d-611a-44a9-8e34-1cd7556f17a3", "value": "http://vocab.getty.edu/aat/300026004"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "a78b9f25-0401-4eca-b478-59862f512060", "value": "Formally structured organizations, establishments, or associations created for the promotion of a specific benevolent public or private objective, usually a religious, charitable, or educational objective, such as a church, school, college, hospital, asylum, reformatory, mission, or the like."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "281a2dce-da7e-4888-8f69-3e2e0da5a932", "value": "Works dating from the 1960s or later that use their exhibition space as part of their design. Demanding a viewer's active engagement, installations are often created by artists in direct opposition to the notion of permanent artwork, or art as a commodity."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "3cf143d7-00c2-40b6-8cff-633e1eac8635", "value": "installations (visual works)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b7a596a7-0714-4731-9d25-da01f28e2f9d", "value": "http://vocab.getty.edu/aat/300047896"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "5fffa312-3420-41d4-af8d-f36841918105", "value": "Werk, das aus den 1960er Jahren und sp\u00e4ter datiert, das seinen Ausstellungsraum als Teil seiner Gestaltung nutzt. Aktives Engagement eines Betrachters fordernd, sind Installationen oft vom K\u00fcnstler im direkten Gegensatz zu der Vorstellung eines dauerhaften Kunstwerks oder Kunst als Ware geschaffen."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f9f84020-d138-420e-8efb-c6fa7a8edd6d"> - <dcterms:identifier xml:lang="en">{"id": "7a3c15a7-0573-498e-a0f5-525757074823", "value": "http://vocab.getty.edu/aat/300150132"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/88e06b9f-1690-45cd-a8b7-99c2ebf011b8"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "60d059a4-96bf-4715-bdb7-aea771898a4b", "value": "task forces"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "7d590e20-75f5-459c-a8f0-8fa7deab4790", "value": "Committees, usually of experts or specialists, formed for analyzing, investigating, or solving a specific problem."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "f9cbc165-213b-47ec-8262-c2272b6d39ec", "value": "works of art"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "abe93115-52db-43c9-a799-0ed3c7195666", "value": "\u0153uvre d'art"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "30a83a9c-ee37-47dd-bd53-410b67b145b6", "value": "http://vocab.getty.edu/aat/300133025"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "70b2f529-28ad-4c5f-af55-d7e5e1df1d06", "value": "Works of art in any medium, including performance art. A work of art may exist as a part of a larger object, e.g., a mural painting or a painting on a piece of furniture. When referring to the study or practice of the fine arts or the fine and decorative arts together, use \"art.\" In reference to pieces of fine or decorative arts as collectables rather than museum objects, in English use either \"art objects\" or the French term \"objets d'art,\" which emphasizes this meaning."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f37e69ea-ce89-4a5c-924b-172a2ac7e9a0"> + <skos:Concept rdf:about="http://localhost:8000/9db724b9-b3c7-4761-9a50-673d64a15bd8"> + <skos:scopeNote xml:lang="en">{"id": "cd9d9cf0-13c7-4069-b7d2-2511ffc2103e", "value": "A sample is a part of anything taken or presented for inspection or shown as evidence of the quality or composition of the whole. For instances that represent a class, use \"specimens.\""}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "b8411320-53e1-4729-ad99-125444686a3d", "value": "Museum (institution)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "9f293d7b-5e26-4d46-9b74-7c2f41c44546", "value": "museums (institutions)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "c32b0e57-d432-443d-b136-ef64370757c8", "value": "Institutions that maintain places where objects of value such as works of art, antiquities, scientific specimens, or other artifacts are housed and displayed for public benefit. An institution devoted to the procurement, care, documentation, study and display of objects of lasting interest or value."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "28277b44-96bf-4b53-80fd-1e3ff26bab89", "value": "http://vocab.getty.edu/aat/300312281"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "010b8b2c-7aa7-4c39-9298-34b72dd134f6", "value": "Eine Einrichtung, in denen Objekte von Wert wie Kunstwerke, Antiquit\u00e4ten, wissenschaftliche Pr\u00e4parate oder andere Artefakte bewahrt und f\u00fcr die \u00d6ffentlichkeit ausgestellt werden. Eine Einrichtung, die sich mit der Sammlung, der Pflege, der Dokumentation, dem Studium und der Pr\u00e4sentation von Objekten von \u00fcberdauerndem Interesse und Wert besch\u00e4ftigen. "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "ceed6661-b9ac-43dc-a85e-7db0285d5759", "value": "http://vocab.getty.edu/aat/300028875"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "77d8cf19-ce9c-4e0a-bde1-9148d870e11c", "value": "samples"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5b5b8456-900a-4a9b-8382-ebb9390d5fc8"> - <skos:prefLabel xml:lang="fr">{"id": "4334aa6e-bb6f-44b6-8d80-3c96dc71f8f8", "value": "pointillisme"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "df882c95-932d-4b0a-9a24-26a1f29b4132", "value": "Painting technique whereby tones and hues are obtained by applying regular small dots or touches of unmixed pigment on the canvas so that they combine optically. The French critic F\u00e9lix F\u00e9n\u00e9on coined the term \"peinture au point\" in 1886 after seeing Seurat's \"La Grande Jatte.\" Paul Signac offered the alternative term of \"divisionism\" in his book \"D'Eug\u00e8ne Delacroix au N\u00e9o-Impressionnisme (1899), although in modern usage \"pointillism\" is reserved for the technique involving dots applied in a controlled manner, while \"divisionism\" refers to use of marks of unmixed color in Italian painters\u2019 works."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "0fce0d73-bdb9-4769-b8c0-7010d3659cdd", "value": "http://vocab.getty.edu/aat/300067450"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "223c8fa7-88a0-48a2-84b2-d786baf4542e", "value": "pointillism (painting technique)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b24e324b-f0f1-4ad3-a8ee-00ce51a6f30a"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/56c052f1-df82-432b-a915-99a6a42e5c94"> - <skos:prefLabel xml:lang="en">{"id": "bf48e5aa-ac11-4e6f-8a62-82d50302f758", "value": "inches"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "12bc7d04-0526-4f4a-9100-42b30d874567", "value": "Units of length in the imperial and United States customary systems of measurement, the twelfth part of a foot, 1/36 of a yard. Derived from the Old English ince, or ynce, and from the Latin unit uncia, one-twelfth of a Roman foot, or pes."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "057c643f-3296-4397-80d5-67ef651dc2da", "value": "http://vocab.getty.edu/aat/300379100"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/f29c3f29-101a-4e82-95bb-cdd7008e27af"> + <skos:scopeNote xml:lang="en">{"id": "bf9a8ae9-ea0d-4ded-9eb8-7a2ea877ce73", "value": "Unique works in which images are formed primarily by the direct application of pigments suspended in oil, water, egg yolk, molten wax, or other liquid, arranged in masses of color, onto a generally two-dimensional surface."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "731e24c9-a9e2-4cb5-8c56-90104da4f3b2", "value": "Individuelles Werk, bei dem die Darstellungen haupts\u00e4chlich durch das direkte Auftragen von Farbstoffen gebildet werden, die in \u00d6l, Wasser, Eigelb, geschmolzenem Wachs oder anderer Fl\u00fcssigkeit aufgel\u00f6st sind und bei dem die Farbmasse auf eine meist zweidimensionale Oberfl\u00e4che aufgetragen wird. "}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "09c68697-ce9f-445c-b47b-077575297dc3", "value": "Gem\u00e4lde"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0826b839-0aba-479c-822f-6fde13b3d340", "value": "http://vocab.getty.edu/aat/300033618"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "f94bfc3b-2456-45b2-9048-d5bc0945e9a0", "value": "paintings (visual works)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "57674c3d-c2ed-4625-be92-7f06e9eb49a1", "value": "peintures (visual works)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/076513dd-d250-40dd-8d5c-e79b55a282d0"> - <dcterms:identifier xml:lang="en">{"id": "b4d75a2c-b31a-4592-9636-13e8d7491525", "value": "http://vocab.getty.edu/aat/300379101"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "797c44f4-9b1f-47bc-a0ab-b0a871fa5998", "value": "feet (units of measurement)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/a8c19e2d-944b-409a-abfa-5a7c45806416"> + <dcterms:identifier xml:lang="en">{"id": "5b060aca-c1bb-4c04-bbea-f27da1d4f07e", "value": "http://vocab.getty.edu/aat/300151343"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "1b7246a0-14f3-4c8d-92fc-48f3f9b4bffb", "value": "Object genre including visual works and other articles made of ceramic, which is any of various hard, brittle, heat-resistant and corrosion-resistant materials made by shaping and then firing a nonmetallic mineral, such as clay, at a high temperature. Ceramic ware, earthenware, porcelain ware, and brick products are examples of ceramics."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "19ef147a-3703-41b4-bfa3-d4c66e333b0b", "value": "ceramics (object genre)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "33e4ed73-bde1-4b31-adc5-3c75cfcf8598", "value": "Keramik"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "032e7225-5d98-4d43-bcad-557658b70732", "value": "Standardized linear units of measure made up of twelve inches, 1/3 of a yard; equal to 0.3048 meters. It was a unit of length in both the imperial and US customary systems of measurement; since 1959, both units have been defined as the same by international agreement. Originally the unit was based on the length of a man's foot, varying in exact length at different periods and in different countries."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/4583a363-ad2d-4dd9-8c7c-b1a433f53079"> - <dcterms:identifier xml:lang="en">{"id": "e623186d-35dc-4694-aa19-77833ca21d2d", "value": "http://vocab.getty.edu/aat/300379254"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/6a7d74ed-b78a-4e98-abe6-d0a967b42702"> + <skos:prefLabel xml:lang="en">{"id": "62381a55-49fb-406a-a2f0-fbcc1e63f161", "value": "mosaics (visual works)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "ff433e94-64db-4469-81cf-d6c83b774b75", "value": "Bild oder Muster, das aus kleinen, gleichm\u00e4\u00dfig geformten St\u00fccken aus dauerhaftem Material, gew\u00f6hnlich Stein oder farbiges Glas, zusammengesetzt ist. Zu unterscheiden von \"Opus sectile\", das aus individuell geformten St\u00fccken aus dauerhaftem Material, gew\u00f6hnlich Stein oder Glas, zusammengesetzt wird, die sich der Darstellung oder dem Muster anpassen."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "f63a5578-0372-4ab4-b7e5-756513c4e98d", "value": "Mosaik"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "2cc2fd5c-2ffe-44b8-bd78-b1082a6305c4", "value": "Images or patterns composed of small, regularly shaped pieces of durable material, usually stone or colored glass. Distinguished from \"opus sectile,\" which is composed of individually shaped pieces of durable material, usually stone or glass, which conform to the design or pattern."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "25310361-6093-4859-98e8-0c01678fde0d", "value": "http://vocab.getty.edu/aat/300015342"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "6590accc-0698-46ce-9807-cade7c20f907", "value": "In avoirdupois measure, standardized units of weight and mass equal to 16 ounces (7000 grains, exactly 0.45359237 kg). The pound was originally made up of 12 ounces, as in the system of troy weight which is still used in stating the weight of precious metals."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "a2c84e7d-c7e9-41a4-baf4-535b22a9cf3b", "value": "pounds (units for weight)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "6dcd875d-c1f6-4f1c-a473-a44e8906dada", "value": "http://localhost:8001/b24e324b-f0f1-4ad3-a8ee-00ce51a6f30a"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/48e06dbc-c0ea-4cc7-9588-f1ac2b53b46e"> - <skos:prefLabel xml:lang="en">{"id": "01bba78f-94ab-4d6f-9a53-e76575b85531", "value": "grams (measurements)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "cb044207-904b-4192-b283-0f194fe5fee3", "value": "In the Metric System, units of mass or weight used especially in the centimeter-gram-second system of measurement. One gram is equal to 0.001 kilogram."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/9afbc9a7-f570-46b1-9055-80cc62bf82b3"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "5d9435f1-5c5e-4880-a242-e6c2529eeb36", "value": "http://vocab.getty.edu/aat/300379225"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "4308c6a4-34fe-4308-a432-48ffeb328572", "value": "Works of art in any medium, including performance art. A work of art may exist as a part of a larger object, e.g., a mural painting or a painting on a piece of furniture. When referring to the study or practice of the fine arts or the fine and decorative arts together, use \"art.\" In reference to pieces of fine or decorative arts as collectables rather than museum objects, in English use either \"art objects\" or the French term \"objets d'art,\" which emphasizes this meaning."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "f5faf21b-4e4b-455d-bdc9-f3f2c0d29ae1", "value": "http://vocab.getty.edu/aat/300133025"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "46b32823-2ed9-4a1e-b62f-6e8893f583dd", "value": "works of art"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e49f5b60-0a84-4004-980d-a6635b2f7b0b"> + <skos:Concept rdf:about="http://localhost:8000/907d7730-1c16-4c56-b3f0-a95894aa39f7"> + <skos:prefLabel xml:lang="fr">{"id": "af844562-df6d-4113-a5e7-06e13393a38a", "value": "n\u00e9gatifs"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "424232c6-b4ee-4935-8324-4c79734b4d8c", "value": "http://vocab.getty.edu/aat/300127173"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "90dbe2e5-ab75-4d04-9e15-3c848e7ef883", "value": "Fotografie, meist auf einem durchsichtigen Tr\u00e4ger, bei der die T\u00f6ne und Farben entgegengesetzt zu ihrem nat\u00fcrlichen Auftreten erscheinen. F\u00fcr Drucke, bei denen die T\u00f6ne und Farben entgegengesetzt erscheinen, siehe \u201cNegativdruck\u201d. Wenn auf einer Glasplatte gemalt oder gezeichnet wurde und ein fotografischer Abzug davon gemacht wird, siehe \u201cGlasklischee\u201d."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "2de3aa59-ea57-4838-bdfb-76acbf447fcd", "value": "Negativ (Fotografie)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "0e74d21f-d71f-45f5-902c-d9ef63666f1b", "value": "Units of length, now obsolete, used in several European countries. In England, one ell corresponded to approximately 45 inches. In Scotland, 37.2 inches. The Flemish ell corresponded to 27 inches. "}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "29e2bd9b-aca6-4300-b9c9-ec2aa91c229c", "value": "ells (units of length)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "0af4a23a-bd8f-44e6-8382-58457fde3386", "value": "http://vocab.getty.edu/aat/300412070"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "f15e2c82-a487-43ed-91c8-87779da4991e", "value": "Photographs in which the tones or colors are reversed from their appearance in nature, usually on a transparent support of celluloid, acetate, or on paper, intended for the purpose of producing positive prints. For finished prints in which tones or colors are reversed, see \"negative prints.\" When a glass plate is painted or drawn on and a photographic print made from it, use \"clich\u00e9s-verre.\" "}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "793c31bf-a89f-438b-a4f6-f2b0b5f83f22", "value": "negatives (photographs)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/2c276821-6d7b-421d-bea4-814669f7aa7f"/> - <skos:prefLabel xml:lang="en-us">{"id": "9e112e39-78d2-4eea-9299-c178fda7a2e3", "value": "Weights and Lengths"}</skos:prefLabel> + <skos:prefLabel xml:lang="en-us">{"id": "ed3e77a7-99a4-4fcf-b5f4-555385f48cec", "value": "Object Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/96151ca8-8e58-4e07-a490-c6152e2c5048"> + <skos:Concept rdf:about="http://localhost:8000/9961937d-eaeb-431b-9190-9e17eaebb688"> + <skos:prefLabel xml:lang="fr">{"id": "d3377a76-d6e0-4c22-8d83-215116ce8ad3", "value": "gravures (g\u00e9n\u00e9ral, \u0153uvres visuelles)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "f452f608-0116-4eda-9dfe-16e5da4248f8", "value": "prints (visual works)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "6542b961-cc1d-4699-bbee-6111f050fc05", "value": "druckgraphischen Bl\u00e4ttern"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "38ab85e4-4842-4c4c-9d8d-5ea2c41f2caf", "value": "kilograms"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "a93dc9ff-ac25-464d-ad0a-9dc21f246925", "value": "Metric units of mass equal to about 2.205 pounds. One kilogram is approximately equal to the weight of 1000 cubic centimeters of water. The kilogram is the base unit of mass in the International System of Units (SI) (the Metric system); defined as being equal to the mass of the International Prototype of the Kilogram. It is the only SI unit that is still directly defined by an artifact rather than a fundamental physical property that can be reproduced in different laboratories."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "227676ab-e141-44c5-8d4f-8a2433e251a7", "value": "http://vocab.getty.edu/aat/300379226"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "94a200ae-919b-4e45-97df-cdbbde514b1f", "value": "http://vocab.getty.edu/aat/300041273"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "9802aab3-fce9-43be-8666-c936619d3fac", "value": "Pictorial works produced by transferring images by means of a matrix such as a plate, block, or screen, using any of various printing processes. When emphasizing the individual printed image, use \"impressions.\" Avoid the controversial expression \"original prints,\" except in reference to discussions of the expression's use. If prints are neither \"reproductive prints\" nor \"popular prints,\" use the simple term \"prints.\" With regard to photographs, prefer \"photographic prints\"; for types of reproductions of technical drawings and documents, see terms found under \"reprographic copies.\" "}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1c55bd47-1895-4c3e-ba40-3dc0084cad2d"> - <dcterms:identifier xml:lang="en">{"id": "c352258b-a978-4977-aad7-d8981cdfcc94", "value": "http://vocab.getty.edu/aat/300404161"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "bd922b19-b1cb-478e-b152-67c64105cdb4", "value": "An historical Italian unit of length, equal to approximately 26/27 inches (66/68 cm), however usage varies."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "2de6d771-7ca2-4a35-9b14-dd407a7985d5", "value": "braccia"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/b69d9192-59a6-42df-9bef-234842ee4bab"> + <skos:prefLabel xml:lang="fr">{"id": "0c315236-8fa2-4ead-80a5-e14551cb605d", "value": "textiles"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "4f6f8f30-71c9-4368-ba37-00289d0d080d", "value": "http://vocab.getty.edu/aat/300014063"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "99ae0cc7-79b3-4783-9112-9db9ecfb11ba", "value": "textiles (visual works)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "48653928-fb99-4bdc-85e7-9f173f9d2850", "value": "General term for carpets, fabrics, costume, or other works made of textile materials, which are natural or synthetic fibers created by weaving, felting, knotting, twining, or otherwise processing. For works of art or high craft that employ textile as a medium, prefer \"textile art (visual works).\""}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ca88ef39-c76c-412a-bf9b-e9c8e3e89e08"> - <skos:scopeNote xml:lang="en">{"id": "a6558455-2ad7-46ea-81b0-9febd41a225b", "value": "The fundamental units of length in the metric system (International Systems of Units, SI), equivalent to approximately 39.37 inches. Defined as the distance travelled by light in a vacuum in 1/299,792,458 second. Historically, the meter was defined by the French Academy of Sciences in 1791 as 1/10,000,000 of the quadrant of the Earth\u2019s circumference from the North Pole through Paris to the equator. "}</skos:scopeNote> - <skos:prefLabel xml:lang="en-us">{"id": "35f1ddbc-651f-4f16-9d71-d2a9e01144cd", "value": "meters (units for distance)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "4b5194a1-f4df-4d72-a14e-c0c080b843e6", "value": "http://vocab.getty.edu/aat/300379099"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/0d734a1c-eaea-4a42-a7a5-8a60ebdb9247"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "b175683f-6229-43b5-acc8-b5ff82a1c9cc", "value": "miniatures (paintings)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "a3131688-641e-4a36-8467-abc6ffc91010", "value": "Gem\u00e4lde in einem sehr kleinen Ma\u00dfstab. Der Begriff wird oft speziell auf kleine Szenen in illuminierten Handschriften angewandt oder auf Portr\u00e4ts auf Pergament oder Elfenbein, die in Europa und Amerika von der Renaissance bis ins 19. Jahrhundert popul\u00e4r waren. F\u00fcr Malereien in Handschriften ist auch der Begriff \"Buchmalerei\" geeignet."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "763d09c5-e005-4eea-ad70-985b320c1c40", "value": "http://vocab.getty.edu/aat/300033936"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "6fcd7979-32b0-4210-91fd-2c9d3658e676", "value": "Miniatur (painting)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "f549b32b-3693-4f3b-b4d1-d1789e57dc7d", "value": "Paintings on a very small scale. The term is often applied specifically to small scenes in illuminated manuscripts or to portraits on vellum or ivory that were popular in Europe and America from the Renaissance into the 19th century. For paintings in manuscripts, the term \"illuminations\" may also be appropriate. "}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/71f2308c-6d7e-423d-8d23-17a0df059a75"> - <skos:scopeNote xml:lang="en">{"id": "a8014981-19db-4dab-9645-d243e8746f2b", "value": "Units of weight equal to 1/16 of a pound avoirdupois (approximately 28 grams). Originally equaled 1/12 of a pound in troy and apothecaries' measure, equal to 480 grains (approx. 31.1 grams)."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "5e4abbd1-70b0-46ff-8dab-2b8754b0668f", "value": "ounces (units for weight)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "0bedd862-cfcd-4d93-82a0-d0989649740f", "value": "http://vocab.getty.edu/aat/300379229"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/ad788cc5-c54a-4a46-9fa2-817ffd97be3c"> + <skos:scopeNote xml:lang="de">{"id": "4f152fad-8521-47bd-9d83-48c5aa5ab96d", "value": "Visuelles Werk, das durch Zeichnen hergestellt wurde, was das Auftragen von Linien auf eine Oberfl\u00e4che ist, oft Papier, unter Verwendung eines Bleistifts, einer Feder, Kreide oder eines anderen Zeichenmittels, mit dem Schwerpunkt eher auf der Darstellung der Form als der Betonung der Farbe. Der Begriff wird oft allgemein definiert und auch auf computergenerierte Bilder angewendet.\t\t\t\r\n"}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "830532bb-03de-43bb-b24d-e1fbc3a98ce6", "value": "drawings (visual works)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "cda377e4-ffe7-46c5-8c5b-73d92336aff5", "value": "Visual works produced by drawing, which is the application of lines on a surface, often paper, by using a pencil, pen, chalk, or some other tracing instrument to focus on the delineation of form rather than the application of color. This term is often defined broadly to refer to computer-generated images as well."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "8d2749f0-2fe3-478e-ada9-53ccb361dfd0", "value": "http://vocab.getty.edu/aat/300033973"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "b9d48cd1-30fd-4ac5-b3a7-e008dfeb36c0", "value": "dessins"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/bbb0bdd9-3524-4ae7-85ea-410ebeb90b68"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/95d56de2-7c29-4a03-b0b1-4f8d5ea3aaed"> - <skos:prefLabel xml:lang="en">{"id": "a79e6528-63c1-4699-aeaf-23e1a43e3674", "value": "standardizing"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "ed00466f-385b-4d45-962f-229f57a25e04", "value": "http://localhost:8000/95d56de2-7c29-4a03-b0b1-4f8d5ea3aaed"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/2703e524-b5ea-4548-bea7-7ce354e4e05a"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "d4cc8c00-201e-4787-9d4c-5898a5ae335d", "value": "http://localhost:8000/2703e524-b5ea-4548-bea7-7ce354e4e05a"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7375a6fb-0bfb-4bcf-81a3-6180cdd26123", "value": "sample areas"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0e099c0e-663a-4330-8597-d39eb9fda10a"> - <skos:scopeNote xml:lang="en">{"id": "4fb49bdf-3972-4094-a669-52f7c2c495a2", "value": "Changing the representation of data in a database from one form to another, as for instance changing the storage medium, data format, or the code in which the data is held."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "6d98159a-63f0-4633-89f1-0736e3d05b21", "value": "http://vocab.getty.edu/aat/300155333"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "71f6a79c-731d-4ed0-be8b-1910e1b593b4", "value": "data conversion"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/907c2848-98fb-43e8-aa6a-64274ef9abf2"> + <dcterms:identifier xml:lang="en">{"id": "d9b15116-cd6d-495b-adc4-77c5f26c8525", "value": "http://vocab.getty.edu/aat/300046300"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "49de5fc0-3476-48bf-85e5-264c6e3ad510", "value": "photographs"}</skos:prefLabel> + <skos:scopeNote xml:lang="en"><![CDATA[{"id": "2e6c66e1-15d7-4808-ac98-a88bd91be21f", "value": "Refers to still images produced from radiation-sensitive materials (sensitive to light, electron beams, or nuclear radiation), generally by means of the chemical action of light on a sensitive film, paper, glass, or metal. Photographs may be positive or negative, opaque or transparent. The concept does not include reproductive prints of documents and technical drawings, for which descriptors found under \"<reprographic copies>\" are more appropriate. The concept may include photographs made by digital means."}]]></skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "65cc6251-9c6d-4b0b-85b4-424155288da2", "value": "photographies"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/18610abd-e0e5-48bb-9a7a-3830d75755d0"> + <dcterms:identifier xml:lang="en">{"id": "5843b79a-1ebb-487b-8bea-06a42e28e3bc", "value": "http://localhost:8000/18610abd-e0e5-48bb-9a7a-3830d75755d0"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "7d069762-bd96-44b8-afc8-4761389105c5", "value": "primary title"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/b16acdf3-a9c0-4c99-9ea1-dd17972cf288"> + <skos:scopeNote xml:lang="en">{"id": "ce121a64-13ae-4d31-9571-bc4d67af1427", "value": "Pertains to the style and culture of modern Iran. Although modern Iran was known as Persia until 1935, art and architecture of ancient Iranian civilizations dates back to prehistoric times."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "6cb1bc12-13c4-439e-bd5d-5e7a397f4f3b", "value": "http://vocab.getty.edu/aat/300266822"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "8269e4be-9521-4106-88a4-1b1eb890ac64", "value": "Iranian"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/30c6d071-88cf-4778-912b-b04bd4b856cd"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2d8ddf38-37c9-4bd9-8bb1-75ac2b7f13d4"> - <skos:prefLabel xml:lang="en">{"id": "fbe9ee31-f829-4061-ba72-89550b3ea1ce", "value": "editing"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "b28652d5-2dbc-4b33-aff2-fabea6195eaf", "value": "Collecting, preparing, altering, and arranging materials for publication or public presentation, including but not restricted to data, written materials, film, and tape."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "7181ab42-31c3-42f7-864b-379df5c72d8f", "value": "http://vocab.getty.edu/aat/300054700"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/879c7e4e-2bce-490c-bb05-bf9ac6c3fe28"> + <skos:prefLabel xml:lang="en">{"id": "590cdf13-13ce-43cb-85f9-3794e2a86209", "value": "high-speed photography (still photography)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "21e4c589-ddf2-458a-be2d-bba69a438019", "value": "Still photography in which the camera shutter operates at a speed much higher than normal."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "b455a2f1-e268-49a1-8ed4-413d092764b6", "value": "http://vocab.getty.edu/aat/300053462"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/2f7aa8c7-8162-41a2-a742-92103bc838e2"/> - <skos:prefLabel xml:lang="en">{"id": "843acd0c-fdb9-4fd2-8a77-0fe6d46851fd", "value": "Creation Technique"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "eb6f9430-944a-4bdd-87ce-7f9e624124c0", "value": "photography techniques"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c1530cd5-9098-4cbe-923f-5875a347fc53", "value": "http://localhost:8000/30c6d071-88cf-4778-912b-b04bd4b856cd"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6f88b717-088e-48cd-9c4a-f3c08c5ed8fd"> - <skos:prefLabel xml:lang="de">{"id": "4ba83d74-482d-49bf-8dd8-b5bd6f0e8dc9", "value": "drucken"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "15319013-280b-4793-a18f-927f41577b64", "value": "http://vocab.getty.edu/aat/300053319"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "56144c93-7a44-4419-acd1-4eeaba0bfa80", "value": "printing (process)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "956cf556-7ac6-4513-b446-a26b053f8c38", "value": "impression (printing)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "4d18c2d3-0198-4b12-a5a3-891e4d8fbb3c", "value": "Various means of reproducing identical copies of graphic matter in a fixed form. Processes by which an image, pictorial or textual, is transferred, usually to paper or cloth, most often by means of a plate, block, stone, or screen. Use also for the making of photographic prints and, with computers, for the production of a paper copy of stored data. For the production of prints in a fine arts context, prefer \"printmaking.\" "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/f74ebcee-1474-423a-98e0-eec4a6f70599"> + <skos:scopeNote xml:lang="en">{"id": "1389bacf-2dbd-4919-b93d-cea8bc1e3477", "value": "Generally, the art or practice of taking and/or processing photographs that reproduce hues perceptible to the human eye. Extended to include imagery in which colors have been artificially enhanced or altered. "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "c3195e48-c27a-498f-98b3-b0b9ae748b3a", "value": "http://vocab.getty.edu/aat/300134530"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en-us">{"id": "961cda0a-dd8c-452b-b3e1-c944951b08ac", "value": "color photography"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "fc8530d1-de7f-410c-bc78-159400983d7e", "value": "http://localhost:8000/bbb0bdd9-3524-4ae7-85ea-410ebeb90b68"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/541c4e7c-8a87-4604-804a-76b85b4948cd"> - <skos:prefLabel xml:lang="en">{"id": "f67015cd-2a14-47bb-9579-c2005000ebc6", "value": "uploading"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/b96656eb-094b-48c3-a491-148df2d5fec0"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b62e0704-8ed6-4b78-85fa-87a214208472", "value": "http://localhost:8000/541c4e7c-8a87-4604-804a-76b85b4948cd"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "3e8d7835-0fa2-472f-b38a-79b6234e43f7", "value": "black-and-white photography"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "9a33e2e5-a54b-4f32-99e8-09b2fb8c8d65", "value": "http://vocab.getty.edu/aat/300162056"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "9218058e-0440-4ffa-84e3-b46e3197f728", "value": "The art or practice of taking and/or processing photographs whose images are composed of gray tones, black, and white, and sometimes one hue, which may result from toning or aging."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/62fdcff5-5abc-4477-a916-bbae886f38af"> - <skos:prefLabel xml:lang="en">{"id": "c095f7ae-f471-47cd-aac2-54c38b3579af", "value": "inputting"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/b2a36d1a-3f90-4b23-a35d-837482891be1"> + <skos:prefLabel xml:lang="en">{"id": "896b973d-f31c-4f0c-b19d-1425563bb4fa", "value": "pinhole photography"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "5d3dc27a-003a-47bc-8163-042e7183df6b", "value": "http://vocab.getty.edu/aat/300265124"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "33bab762-6a2e-43bf-9c1e-6257f1f30210", "value": "http://localhost:8000/62fdcff5-5abc-4477-a916-bbae886f38af"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "71a50074-3ae8-485b-9ba4-14110b189839", "value": "Refers to the practice of making photographs with a pinhole camera. Light-sensitive film or paper is exposed through a tiny, lensless aperture: the resulting images have very great depth of field, but lack critical sharpness."}</skos:scopeNote> </skos:Concept> </skos:narrower> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/73ccbcfc-224a-48d7-929d-a32fc9d4f066"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "90137344-1536-4568-8a7b-91a051285cca", "value": "consignment (method of acquisition)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "b281851c-b139-486f-91f5-1c7cdec4b8c5", "value": "Method of acquiring property with the expectation that the recipient will sell, rent, or loan this property to a third party, for the mutual benefit of the consignor and consignee."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "f19c9213-946d-4283-8de6-f1c0e47c3faf", "value": "http://vocab.getty.edu/aat/300417650"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/546e7e19-54c6-44ed-8a81-3da08e275009"> - <skos:scopeNote xml:lang="en">{"id": "cb554d8b-f726-4990-8449-aa53e1e68ca8", "value": "The function, act, and process of making a new, amended, improved, or up-to-date version of something, such as data, a document, building plan, etc."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "d617c4f6-1f96-41c5-831a-6b40175b799c", "value": "http://vocab.getty.edu/aat/300191071"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"> + <skos:prefLabel xml:lang="en">{"id": "ce6179ef-f9d7-4ba9-b242-0e466912a6b0", "value": "legacy identifier"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c9f9b132-ccbc-489f-85a9-9fe01b7270cc", "value": "http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "a51e973a-6502-459f-b60b-fdbdf6a77572", "value": "revising"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0c742f97-1424-4fc3-a897-8f8a453f58e2"> - <dcterms:identifier xml:lang="en">{"id": "b4833602-b2dd-400f-ba0a-87cf15ef6915", "value": "http://vocab.getty.edu/aat/300265873"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "17949722-b0fa-45d5-ab15-fe01c8adfb56", "value": "Unit of measurement for computer file storage. Equal to 1,048,576 bytes."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "c5e859b2-381c-482c-b220-d1ff2ca45b31", "value": "megabytes"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5b2762ac-b9de-4fe4-b410-fbf9d80a56e9"> - <skos:scopeNote xml:lang="en">{"id": "bfcd0d52-bb28-40e6-ab8d-e1d40432c75f", "value": "Testing a hypothesis or model. In science and related fields, refers to testing systematically under controlled conditions in order to discover the qualities, behavior, or effects of the subject of the experiment."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "df87820c-f0f5-49f0-9ec9-bef520cace30", "value": "experiment"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <arches:sortorder xml:lang="en-us">{"id": "44feae6a-50e0-47ec-a965-effef592dcb2", "value": "3"}</arches:sortorder> - <dcterms:identifier xml:lang="en">{"id": "da77af4e-09fa-4c1b-9d7a-c5ac9c071d64", "value": "http://vocab.getty.edu/aat/300137801"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"> - <skos:prefLabel xml:lang="en">{"id": "5f54a27c-111e-470f-a888-f18bfef32f25", "value": "acknowledgments"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "723b9b69-1f3f-4d10-94a9-b4cfac8ae983", "value": "Danksagung"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "a78a7aa7-471a-40ec-815f-5dbc4c89e2ae", "value": "Written recognitions of acts or achievements."}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "29ca80c4-b2f6-4bd3-a0cb-dd5d04d79363", "value": "Schriftliche Anerkennung f\u00fcr Handlungen oder Leistungen."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "d1983693-fd41-4c7c-98ed-c62e9c9fbfff", "value": "http://vocab.getty.edu/aat/300026687"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1ffe97e4-1822-4a6e-b170-861330764bbd"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "6abf5af2-b69b-4ecf-9377-dc8628b0ae46", "value": "middle names"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "38b2346b-a0a2-4ea7-994c-2e355b987944", "value": "http://vocab.getty.edu/aat/300404654"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "f3fff0c9-6e96-4802-9561-6ac6827641f0", "value": "In the context of personal names, particularly in western culture, names that are positioned between a first name and a last name, possibly comprising an additional familiar name or a maternal family name. In other traditions, such as Islamic tradition, the middle name may be the primary personal name (analogous to the first name in western tradition) or another sort of name."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/3787d26c-11a1-447c-8a71-74b862714f5f"> - <skos:prefLabel xml:lang="en">{"id": "465c38c4-a7f4-4258-972d-46d7d59f8b0b", "value": "assemblages (archaeological artifacts)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "18f48dae-5f56-49d9-819a-9274b9fcd0fd", "value": "Fundkomplex (Objektgruppe)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "85ab8c52-68f6-4f82-a965-2b23caf9f795", "value": "Bezieht sich auf eine Ansammlung arch\u00e4ologischer Fundst\u00fccke, die zusammen gefunden wurden, entweder in einer Schicht, einem Arbeitsbereich oder einer Fundstelle, ungeachtet des Werkstoffes oder der Typologie."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "65695d8b-dec1-4de5-b509-b673a9e4b6e7", "value": "http://vocab.getty.edu/aat/300256847"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "f1606529-6e3c-466b-a89c-fceaa6bacf68", "value": "Refers to groups of archaeological artifacts found in association with each other, as from one level, activity area, or site, regardless of their material or type. "}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/99096538-2ca4-42d9-bd9d-381002910e24"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "ce87f66e-38b8-453f-9ef1-c1541dda9f65", "value": "Interdisciplinary study of the maintenance, care, and protection of art, architecture, and other cultural works."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "d3e0423d-daaa-485d-a694-f5383ad705b0", "value": "conservation science (cultural heritage discipline)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "2dada4bd-b4a1-46c8-bf50-c5a6bc5cebe2", "value": "http://vocab.getty.edu/aat/300379510"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c61ec308-a947-4010-83c7-0d9181dd203d"> + <skos:Concept rdf:about="http://localhost:8000/e49f5b60-0a84-4004-980d-a6635b2f7b0b"> + <dcterms:identifier xml:lang="en">{"id": "0af4a23a-bd8f-44e6-8382-58457fde3386", "value": "http://vocab.getty.edu/aat/300412070"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="pt">{"id": "1e518528-5d5e-49a1-95c8-1ac8c03ed368", "value": "aquarela"}</skos:prefLabel> - <skos:prefLabel xml:lang="en-us">{"id": "ebdf038f-f86b-4f3f-86d3-31789b9eac39", "value": "aquarelle (technique)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "b1511923-8e4e-4faa-b301-5b88b763942a", "value": "http://vocab.getty.edu/aat/300053363"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "132378ed-ce7f-4053-aba4-5bf474ab8db1", "value": "Watercolor painting done in transparent washes of color as distinguished from the opaque method using gouache."}</skos:scopeNote> - <skos:scopeNote xml:lang="pt">{"id": "216d6b68-173e-4835-939f-a92ebbc15ca0", "value": "Pintura em aquarela feita em lavagens transparentes da cor, diferenciando-se do m\u00e9todo opaco usando guache."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "29e2bd9b-aca6-4300-b9c9-ec2aa91c229c", "value": "ells (units of length)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "0e74d21f-d71f-45f5-902c-d9ef63666f1b", "value": "Units of length, now obsolete, used in several European countries. In England, one ell corresponded to approximately 45 inches. In Scotland, 37.2 inches. The Flemish ell corresponded to 27 inches. "}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7156f8e2-d534-4f02-8f31-71f9a9a3a4aa"> - <dcterms:identifier xml:lang="en">{"id": "2cd138a6-c24a-4c43-b55a-366255a18a68", "value": "http://vocab.getty.edu/aat/300265866"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "72bb5965-7644-4df1-934c-2fd40421754d", "value": "bits (computing)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "0dd8ca4b-d160-4bd4-8e4e-fb383c7fdaac", "value": "A contraction of \"binary digit,\" bits are units of information that represent either a zero or one, on or off, and are the smallest elements a computer is able to process."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/6897ba2a-f1ca-4011-a863-b32a5970ee8a"> - <skos:prefLabel xml:lang="en">{"id": "7fe1d184-e56b-465b-8aa1-da893cd72874", "value": "Visual Work Techniques"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/9266b424-a051-47ce-8743-1b5ae9a20ed7"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/9d30b6a3-e948-4a87-97a8-f145984694bb"> - <skos:narrower rdf:resource="http://localhost:8000/cbc2485e-0e8b-4884-9045-e764078bbbb2"/> - <skos:narrower rdf:resource="http://localhost:8000/96c6ba52-ac8b-4c26-a020-a8199a851e42"/> + <skos:Concept rdf:about="http://localhost:8000/6d997904-184c-4825-8807-83e2dddb124f"> + <skos:prefLabel xml:lang="fr">{"id": "ffd6d970-d59a-4978-b247-c6b6d324a132", "value": "japonais"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "3166aeb8-a8a8-45fe-8fd5-50b0a45950ee", "value": "Japanese (language)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "09265a24-1ba7-491d-9770-655a60335d6e", "value": "http://vocab.getty.edu/aat/300388486"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/94bb858b-3d17-41c7-a145-d70fda1822c5"/> - <skos:narrower rdf:resource="http://localhost:8000/5b5b8456-900a-4a9b-8382-ebb9390d5fc8"/> - <dcterms:identifier xml:lang="en">{"id": "8990f09b-dc0a-4dfa-a337-ab92d2994104", "value": "http://localhost:8000/9d30b6a3-e948-4a87-97a8-f145984694bb"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/b1a3bc7a-441a-48c8-9cfa-d37627b021a5"/> - <skos:prefLabel xml:lang="en">{"id": "5f70a114-c4a2-46dd-a72b-a230ee3df74d", "value": "painting techniques"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/07edfe46-dc43-40ab-aeec-3103e2673bab"/> + <skos:prefLabel xml:lang="de">{"id": "190296c1-27f8-411e-8f4a-0cd43115b5db", "value": "Japanisch"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "18f17148-8fba-4fd7-94cd-4302ec2f1469", "value": "East Asian language spoken primarily in Japan. Held by many modern scholars to be a member of the Japonic (or Japanese-Ryukyuan) family of languages, while others maintain that it is a language isolate."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "c9970c1e-d758-45da-9361-45c2af23b562", "value": "http://localhost:8000/6897ba2a-f1ca-4011-a863-b32a5970ee8a"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/30c6d071-88cf-4778-912b-b04bd4b856cd"> + <skos:Concept rdf:about="http://localhost:8000/8ead46b7-39b3-4f6a-b9d0-08994a595bb7"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/879c7e4e-2bce-490c-bb05-bf9ac6c3fe28"/> - <skos:narrower rdf:resource="http://localhost:8000/b2a36d1a-3f90-4b23-a35d-837482891be1"/> - <skos:narrower rdf:resource="http://localhost:8000/f74ebcee-1474-423a-98e0-eec4a6f70599"/> - <skos:prefLabel xml:lang="en">{"id": "eb6f9430-944a-4bdd-87ce-7f9e624124c0", "value": "photography techniques"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/b96656eb-094b-48c3-a491-148df2d5fec0"/> - <dcterms:identifier xml:lang="en">{"id": "c1530cd5-9098-4cbe-923f-5875a347fc53", "value": "http://localhost:8000/30c6d071-88cf-4778-912b-b04bd4b856cd"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "4f4092c7-403e-4848-a02f-3a4e3418f2c1", "value": "danois"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "353e5d50-a634-4334-a786-c7ae03cb03d2", "value": "http://vocab.getty.edu/aat/300388204"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "d5087595-8648-454f-bb4c-a09439d32c13", "value": "D\u00e4nisch"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "ca9217eb-0c77-4196-8fd4-b8cb6239070e", "value": "Danish (language)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/bdb0f548-836b-4619-a9b5-3e1a349ca358"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/324861e0-21c5-4bb4-9702-2ff478038a2e"> - <dcterms:identifier xml:lang="en">{"id": "e20b0678-6180-4c3b-acc2-95c741b16b28", "value": "http://localhost:8000/324861e0-21c5-4bb4-9702-2ff478038a2e"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "27d93656-7d87-48fa-8b13-9eb735e4fc59", "value": "fiber optics reflectance spectroscopy (FORS)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/5bb6ff4f-33c1-4804-9768-e1aa876d5150"> + <dcterms:identifier xml:lang="en">{"id": "45886c57-b3ed-4d8e-84e1-95f5ea73a88f", "value": "http://vocab.getty.edu/aat/300389645"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "655dd09c-57bb-411a-a961-628fa4ee5de5", "value": "Nicht zu entscheiden"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "dcfb76cd-dd1e-4d45-bb0a-d0f9de3e1b8f", "value": "undetermined (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "8bd96cde-6628-43b5-86d3-f4b56603a286", "value": "ind\u00e9termin\u00e9e"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c2456fbc-83c6-49c8-9959-552bba0b2efd"> + <skos:Concept rdf:about="http://localhost:8000/ec0f84da-5fff-44d0-a539-ed7099fb75ce"> + <skos:prefLabel xml:lang="de">{"id": "ccfef9f0-1dbd-4dea-a256-8c3dc6b9afd7", "value": "Spanisch"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "dea62be7-780c-43e9-970f-3081679336f2", "value": "http://vocab.getty.edu/aat/300389311"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "69e7c74b-5b13-4bbc-a417-5dd04718c7b5", "value": "Spanish (language)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "0e1a0097-acd6-4520-890e-e6b3a653f97e", "value": "http://vocab.getty.edu/aat/300379518"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "10e84351-7bad-4f09-8b40-2d4f611832b8", "value": "The application of testing methods to materials or objects in order to analyze their composition and manufacture. In a conservation science context, this may refer to movable art works and artifactual objects in a conservation lab. For a broader range of testing methods, prefer \"scientific analysis.\" "}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "f232c66a-be1f-48e7-906f-3b0b3bcc9ab7", "value": "technical analysis"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "d568bd89-3fe6-430c-8305-45dde2700ccc", "value": "Refers broadly to the Romance language that developed from Vulgar Latin with contributions from the pre-Roman languages that were spoken in the territory of the Astures, an ancient tribe of the Iberian peninsula. It is now spoken in Spain and as a first language by around 360 million people worldwide. Given that the Castilian dialect is the source from which modern standard Spanish developed, this language overall may be called \"Castilian\"; however, for the dialect spoken in Castile and elsewhere in northern and central Spain, use \"Castilian Spanish.\""}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "f29694d4-eb9a-404b-91e4-050aefdf9f70", "value": "espagnol"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e3a980ee-faa4-4ac9-b0cd-c567ce0d22ce"> - <dcterms:identifier xml:lang="en">{"id": "499e3a8b-a3c3-42d0-b89d-c35683ed9c40", "value": "http://vocab.getty.edu/aat/300266192"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/c7954ef2-0053-400b-997c-d56a9f64940b"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "b55fc792-4e3e-4ed8-bf88-42f6d075bb93", "value": "Technique of scattering a monochromatic light, such as a laser, changing the vibrational, rotational, or electronic energy of a sample, the results of which help determine its molecular structure. Discovered by Indian physicist Sir Chandrasekhara Venkata Raman (1888-1970)."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "9eae4a70-545e-4cc5-b593-19fef69074c8", "value": "Raman spectroscopy"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "02a71d90-26a4-4271-bf83-43a570eab49f", "value": "Chinese (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "911bc483-3eba-44b9-92d3-4119bf7db0d7", "value": "chinois"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "8ad1af57-1f3d-43d4-9f91-641dcf974ee6", "value": "Chinesisch"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "8f84f7e5-9606-4cc6-b73a-7aee7c8abbd9", "value": "http://vocab.getty.edu/aat/300388113"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "53906ca3-187a-4d0f-9e00-1b14a148b1b8", "value": "http://localhost:8000/bdb0f548-836b-4619-a9b5-3e1a349ca358"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "662f9c19-f2fa-46d0-9935-cb73795b3950", "value": "Project Techniques"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "ef81354a-9f8c-4ec3-9826-c796adbeaa45", "value": "http://localhost:8001/9266b424-a051-47ce-8743-1b5ae9a20ed7"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/aec56d59-9292-42d6-b18e-1dd260ff446f"> - <dcterms:identifier xml:lang="en">{"id": "cab420c2-2891-4fee-b06b-914716b15842", "value": "http://vocab.getty.edu/aat/300224161"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "285f5303-f3db-41ba-9cf1-e01b7bf9ac37", "value": "x-ray fluorescence"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/2b43ddad-7ab5-44c8-b943-020f7771de06"> + <dcterms:identifier xml:lang="en">{"id": "c0b8dc76-5899-4d37-8d38-11efac252677", "value": "http://vocab.getty.edu/aat/300389115"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "4518612f-0b87-44c3-bd19-0d3455046261", "value": "Portugiesisch"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "486e69eb-11af-4cd4-a0fa-f2722c9b6c2b", "value": "Fluorescence stimulated by x-rays; when the emissions are examined by spectrometry, useful in determining chemical composition of a substance."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "8338c1d8-632f-4df3-8dc3-9acadefbda9d", "value": "portugais"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "04e4e15e-3eb6-4285-853e-cd0e532052b5", "value": "Portuguese (language)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/082b3c01-0c6a-43e6-bac5-7ce2bdbcdeec"> - <skos:prefLabel xml:lang="en">{"id": "3fe36bac-fdd5-4fde-969a-c17f06e2cfbd", "value": "comparative analysis"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "4d6c6459-f3bd-4293-9c8d-845beb729e0e", "value": "http://vocab.getty.edu/aat/300379522"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "5d7efdb7-ef7d-438e-b11c-cbbfe7f8d621", "value": "In science, business, policy, and other fields, a careful item-by-item comparison of two or more comparable characteristics, alternatives, processes, products, qualifications, sets of data, or other features."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/90426117-4930-4fac-9c26-16aa06c451ac"> + <skos:prefLabel xml:lang="fr">{"id": "45bcc032-a953-4805-b25c-342046cffb29", "value": "finnois"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "29bbe003-f900-4278-bb7d-1e9e820a605f", "value": "Finnisch"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "1fab59d7-ea8b-4351-8f9e-b2859103762f", "value": "http://vocab.getty.edu/aat/300388299"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "f4de426f-0684-4981-b5fc-1ebaf119365c", "value": "Finnish (language)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e683fc2f-c24f-4cad-9e52-582f960de82e"> - <dcterms:identifier xml:lang="en">{"id": "c2f0e7fe-8a3e-43ab-8b89-d90ca4b9b171", "value": "http://vocab.getty.edu/aat/300379372"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/6d302f17-decd-4f33-9606-c1df25e306ee"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "526a5a81-d497-4b0c-938b-5218934b6cdc", "value": "Detailed examination principles and empirical processes of discovery and demonstration considered characteristic of scientific investigation, generally involving the observation, formulation of a hypothesis, experimentation, and development of a conclusion."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "71f1d2fd-b43b-4ec9-aabd-d36c24444db0", "value": "scientific analysis"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "22755b7f-bb95-4d63-963e-9ba8d46343eb", "value": "Russian (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "28ddc051-fbbe-4031-8b3e-fe7745d76e6e", "value": "Russisch"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f67a1a8c-13b5-47bd-beb8-dc1d2dc77a2d", "value": "http://vocab.getty.edu/aat/300389168"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "4919eee1-3657-4a8b-b315-52f50b3d235a", "value": "russe"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/a7c83cb3-d116-4fb4-907c-c394fa3a63e0"> - <skos:prefLabel xml:lang="en">{"id": "3f3ea410-bf40-46d4-9e26-4377047f9908", "value": "insect damage"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "a3b3667e-525b-4e46-832a-a69051651e5d", "value": "Damage caused by insects."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "a68bb2d9-fdc8-4c75-a05d-8623be7debd1", "value": "http://vocab.getty.edu/aat/300230031"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1b162cc8-1f31-4fb3-81f9-2479b21d01aa"> - <skos:scopeNote xml:lang="en">{"id": "432b214f-7ea4-43d8-b599-611c53b181e6", "value": "A formal statement of the copyright or licensing of a work, and/or any restrictions placed on it. "}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "47e5072a-b6aa-44d5-b561-a8ec190e3f42", "value": "copyright/licensing statement"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "ddaab46b-72e1-444d-9668-4e23e05bfeb8", "value": "http://vocab.getty.edu/aat/300435434"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/135ccd63-25ca-4e3e-919f-ff09bf062274"> - <skos:prefLabel xml:lang="de">{"id": "5289bf7e-0bb7-459e-916d-0b4a411bc95d", "value": "Sanskrit"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "94097f20-1852-45b3-acc3-d8b6f5828059", "value": "http://vocab.getty.edu/aat/300389205"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "0d1e9df0-aedf-40e8-a55b-364b33fdc88b", "value": "sanskrit"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "bf09fa87-45a3-4dea-ac29-4ad19f94c8cd", "value": "Sanskrit (language)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5d9da344-2f3a-4f35-a5cd-3cb3f4a3535c"> - <skos:scopeNote xml:lang="en">{"id": "2f02a548-c5d4-46d8-b812-3e870ea71e28", "value": "Refers to the style associated with Laos located in the valley of the Upper Mekong. The hybrid style reflects Myanmar, Thai, and Khmer influences. The basis of the artistic style of this region is religion and tradition, characterized by Buddhist and Hindu iconography and narrative relief panels rooted in Theravada Buddhist and Hindu principles. Folk arts in this style feature basket making, wood and ivory carvings, and silver and gold works. In architecture, the style features temples patterned after Khmer temple mountains with sloping, stepped roofs comprised of small flat tiles, and the wihan, a rectangular building containing an altar with Buddhist images. In sculpture, the style is mostly devoted to the representation of Buddha in royal attire. Sculpture is constructed in bronze, lacquered wood, and sometimes stone and is adorned with inlaid glass or mother-of-pearl. Bas-relief sculpture is rare and is mostly found as wood murals, though mural scenes in lime mortar, stucco, or cement exist. Textile arts in the style feature silk cloth with ikat and weft designs that include dot patterns, geometric and zoomorphic motifs."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "37054d3e-bef7-4051-83cc-1cb3ed4fdb77", "value": "Laotian"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "0d69e940-a223-4ea7-974c-abd4c5cc8ec8", "value": "http://vocab.getty.edu/aat/300019195"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/043f82e6-540c-4c3c-a37c-365509c12cbe"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "edc2c0e0-6352-4499-9a23-22a56869bc6d", "value": "cadastre number"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "949f2b96-a0ea-45cd-bd44-be0a89b64f63", "value": "http://localhost:8000/043f82e6-540c-4c3c-a37c-365509c12cbe"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e37e4f70-b839-4127-9489-845946fec971"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/22b51542-05e5-482f-97ba-0283336ef91b"> - <skos:scopeNote xml:lang="en">{"id": "6e810f10-da23-4004-b2a3-f89dd4d9ea62", "value": "A conceptual grouping of visual arts works, literary works, or performance art created in succession by the same author, artist, or studio and intended by the creator(s) to be seen together or in succession as a cycle of works. Works in a series typically share the same or related subjects, the same or similar media, or other characteristics, but their defining characteristic is that they were intended to be conceptually related as a series. Individual items in a series may be cataloged separately and linked to the series. "}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "7f0d9766-2e86-49a7-b12d-7c27f9bb2f8a", "value": "http://vocab.getty.edu/aat/300027349"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "ab815cae-7931-45f9-a03c-243dae276f6d", "value": "Serie (Gruppe)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "089ae4ff-e13d-4896-b0d1-412670a75586", "value": "s\u00e9rie"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "9629017a-5895-45c1-87b5-a42b9fde15e2", "value": "series (object groupings)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "50de4abb-d288-462e-8453-53547b782a2e", "value": "Gruppe von separaten bibliographischen Objekten, miteinander in Beziehung stehend,durch die Tatsache, dass jedes zus\u00e4tzlich zu seinen eigenen Titel einen Sammeltitel f\u00fcr die Gruppe als Ganzes enth\u00e4lt; sie werden sukzessive herausgegeben; in der bildenden Kunst wird der Begriff f\u00fcr eine Gruppe von Werken eines einzelnen K\u00fcnstlers verwendet, die eine spezifische und sinnhafte Beziehung zwischen den Arbeiten besitzen."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/135ccd63-25ca-4e3e-919f-ff09bf062274"> + <skos:prefLabel xml:lang="fr">{"id": "0d1e9df0-aedf-40e8-a55b-364b33fdc88b", "value": "sanskrit"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "5289bf7e-0bb7-459e-916d-0b4a411bc95d", "value": "Sanskrit"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "bf09fa87-45a3-4dea-ac29-4ad19f94c8cd", "value": "Sanskrit (language)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "94097f20-1852-45b3-acc3-d8b6f5828059", "value": "http://vocab.getty.edu/aat/300389205"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a9cda9b2-9379-4626-9ed7-d6ef44bf13b5"> - <skos:prefLabel xml:lang="de">{"id": "a1384def-81c1-4132-b8ea-03f8a9de546c", "value": "Verwaltungsberichte"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "a1d413e4-cddf-48db-badf-efcf08c38a25", "value": "Official or formal records outlining administrative details, or events sucha as functions, proceedings, or investigations."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "6de1e9b3-7eca-4380-b8cc-61113c575350", "value": "http://vocab.getty.edu/aat/300027268"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/5ab6901a-1d94-4769-9a8c-3ca83d9aa519"> + <skos:prefLabel xml:lang="en">{"id": "41a2b558-1b71-4af9-a439-46885905d0d9", "value": "Tamil (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "bb8739f4-b88b-42c5-8c8c-45d7e19d118f", "value": "Tamil"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "15b24186-9193-4600-87a8-8d5f51f0ad33", "value": "tamoul"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "ae07e731-8188-4c3a-ba16-ebce0f29b84c", "value": "http://vocab.getty.edu/aat/300389365"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "b39810b5-55c8-4147-a829-5fb3e983a2f0", "value": "compte rendu administratif"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "8e117897-d7ef-484f-af9c-90c96a91f7d1", "value": "administrative reports"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b42fd6eb-b396-4ae0-926c-09f9a516f873"> - <skos:scopeNote xml:lang="en">{"id": "59cd3b2d-4bd5-4a0e-beda-cb25da051f3e", "value": "Publications that document the works displayed in an exhibition."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/38729dbe-6d1c-48ce-bf47-e2a18945600e"> + <dcterms:identifier xml:lang="en">{"id": "2c186001-d011-4edc-99c9-8927c09cd325", "value": "http://vocab.getty.edu/aat/300388277"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "bf48b2c6-3485-470c-be5d-37e53f76bade", "value": "anglais"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "e32d8c6d-319a-4382-8c26-06e4afb153bf", "value": "Englisch"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "f664cf1b-5a1f-4fc5-a412-bbf745fef031", "value": "http://vocab.getty.edu/aat/300026096"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "b5e2684b-ba38-4b3d-b8ac-642d87ef196c", "value": "exhibition catalogs"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "f0ef2c80-a5f0-40fe-a826-adbd3ec60971", "value": "Ausstellungskatalog"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "55857c84-1d9b-422f-9c02-acad60fd4356", "value": "Druckwerk, das die in einer Ausstellung gezeigten Werke dokumentiert."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "bc35776b-996f-4fc1-bd25-9f6432c1f349", "value": "English (language)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "6db05732-ad45-4ace-b187-bd624b66e1c0", "value": "West Germanic language of the Indo-European language family that is closely related to Frisian, German, and Dutch (in Belgium called Flemish) languages. It is spoken in England and also used in many varieties throughout the world."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6bea9a27-6b4b-4133-8ad9-105e9fee5dcb"> + <skos:Concept rdf:about="http://localhost:8000/fea87de8-c1e5-4978-aa18-7df19382d7d6"> + <skos:prefLabel xml:lang="fr">{"id": "7618d2a4-a277-4921-8bae-daeca6d43795", "value": "turc"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "0477af66-e956-4c79-bec2-541223ce8b17", "value": "Web pages (documents)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "6b328c12-d1da-4c7b-b194-13dfc9959f46", "value": "Hypertextdokument mit Text oder Bildern, das \u00fcber das World Wide Web abrufbar ist und auf einer Website gehostet wird."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "3c42c966-b117-4208-8629-fc67fe601fcc", "value": "http://vocab.getty.edu/aat/300264578"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "326060a0-c831-4087-a1f7-e4797c490484", "value": "Hypertext documents of text or images that are accessible via the World Wide Web, hosted on a web site."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "3b3f6de4-400e-42fd-9ca8-f41e3d9f7a1f", "value": "Webseite"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "d6fd7371-46f9-48c7-9e71-60f8cc4503ed", "value": "http://vocab.getty.edu/aat/300389470"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "3b1c9e9d-155b-4c43-af8b-4da01949c84d", "value": "Turkish (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "89237d47-e916-4f90-a99d-8e5d448d6b76", "value": "T\u00fcrkisch"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5a7be6de-f130-472a-931e-635d830be28e"> - <skos:scopeNote xml:lang="de">{"id": "702d251b-c044-40b0-a961-8bcfaca3d685", "value": "Periodische Ver\u00f6ffentlichung, meistens mit wissenschaftlichen Artikeln oder anderen, zur Verbreitung von Informationen \u00fcber Entwicklungen in bestimmten Fachgebieten bestimmt."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "ba40a930-8995-4a1c-8398-85d337b3b145", "value": "journals (periodicals)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "d2d01373-a03c-4f46-a005-eb7def3bbecc", "value": "http://vocab.getty.edu/aat/300215390"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "6a4e39df-f702-4832-902b-380a0b33749f", "value": "Periodical publications, particularly those containing scholarly articles or otherwise disseminating information on developments in a particular subject field."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "2bf7eb0d-8baa-4c19-b5c8-68ab0aa993ce", "value": "Zeitschrift"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/7dcd9b95-ab41-4fb0-94ba-f6173d2e6e1a"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "9ff49782-7214-4763-a725-a33002ee9691", "value": "Dutch (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "65d4c69e-0f11-4f3c-b26d-adf8c6d112bb", "value": "n\u00e9erlandais"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6529981e-06a0-4592-a6a2-0695206c97bf", "value": "http://vocab.getty.edu/aat/300388256"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "f5daedf3-6534-459c-a177-5531b709171c", "value": "Niederl\u00e4ndisch"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "dfaea21a-00ed-4be7-b61b-e52b83918ebb", "value": "West Germanic language that is the national language of the Netherlands; it largely developed in the historical province of Holland. Although it is basically the same language that is, with French and German, one of the three official languages of Belgium, for the language as used in Belgium prefer \"Flemish.\""}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a45e32f8-3025-49d7-9ad3-f0f960b4f772"> + <skos:Concept rdf:about="http://localhost:8000/c3c3b964-007c-434d-8df9-ac687a3be542"> + <skos:prefLabel xml:lang="fr">{"id": "b8297baf-9a4d-45e2-a37e-423cb69cf28e", "value": "cor\u00e9en"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c0c7c231-bf8b-400a-a6d7-e0c45d43961c", "value": "http://vocab.getty.edu/aat/300388633"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "06eeea4e-6b45-4297-929c-f852eea16251", "value": "Korean (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "0d24da18-5655-449b-ae73-de8a8d19f802", "value": "Koreanisch"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "62488c87-b10c-4b67-8c7c-024dbf2d017e", "value": "http://vocab.getty.edu/aat/300027316"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "3569db0e-f4ff-42be-9200-4b5d7727ce86", "value": "Tagungsbericht"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "22c74097-3ae2-4306-96ff-03ce172bb8dd", "value": "proceedings (reports)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "e2d86e76-25dc-4f47-a0be-408978d73e04", "value": "actes"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "02614f39-93b4-4939-8398-116fb28abba8", "value": "Records of meetings, conferences, learned societies, or other organizations, usually published, and frequently accompanied by abstracts or reports of papers presented. "}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "29d3c99e-04e4-4f21-b614-c20f05eb25f3", "value": "Bericht \u00fcber die Sitzungen einer Konferenz, Gesellschaft oder anderen Organisation, der normalerweise ver\u00f6ffentlicht wird, meist mit Kurzfassungen oder Berichten \u00fcber die gehaltenen Vortr\u00e4ge."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en-us">{"id": "c5665fb4-f127-4f4d-ae52-2a7e60951e1f", "value": "Languages"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a480c815-461a-470a-b012-81df75aef74e"> - <skos:prefLabel xml:lang="en">{"id": "46d229c5-82c0-413f-be5f-b2083b2e5697", "value": "chapters (layout features)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c55060f5-6d4a-4629-9785-ce19f36d1c6c", "value": "http://vocab.getty.edu/aat/300311699"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "a0efe06e-0112-42b8-9b02-7d73caab64ee", "value": "Main divisions or sections of a book, typically designated in some way, such as with a special heading, title, number, or layout."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/0dfb95af-dcd3-4edd-8763-a3939e65f1e7"> + <dcterms:identifier xml:lang="en">{"id": "8cb889be-f138-4280-9a45-d7f440e6988b", "value": "http://vocab.getty.edu/aat/300389525"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "222379ee-d360-4193-a43c-8065e3947994", "value": "Vietnamese (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "7713588d-99f4-4385-8cd7-cda971d0f832", "value": "vietnamien"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "d313b2d3-3fa4-46d6-91fa-04b3feaa8058", "value": "Vietnamesisch"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/bdb42273-5581-4554-956f-c8f41c67798d"/> + <skos:narrower rdf:resource="http://localhost:8000/825d0d98-cdd9-461e-8e96-609159286bd9"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5864a6e2-5d38-42d5-bfc3-e7a4972cebed"> - <dcterms:identifier xml:lang="en">{"id": "ca316059-1028-40df-8209-4068d0aecf60", "value": "http://vocab.getty.edu/aat/300028045"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "58df5d41-8e21-4b51-a8f3-5ec8f44ebd1a", "value": "audiovisual materials"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "d2577757-a558-4fdb-9bb9-589a6966e115", "value": "Nonprint materials, such as slides, transparencies, motion pictures, or filmstrips, that make use of sight and sound to convey information; refers especially to such materials when used for instruction."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/28e25c2d-2a00-440d-8cac-3f357dd737c9"> + <dcterms:identifier xml:lang="en">{"id": "8907f61f-eb56-4b64-8de0-e42cdfa40a19", "value": "http://vocab.getty.edu/aat/300388191"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "eae726ea-6793-4f04-975e-f6aa0651b1ac", "value": "Czech (language)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="fr">{"id": "e2a2135a-f91d-4263-8c4e-077d639c7cfb", "value": "tch\u00e8que"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "7685021f-ec34-4b5b-a39e-bd22c3eb8a84", "value": "Tschechisch"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/d3a32755-c1ab-4e04-9a3b-9bc1b20583b1"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f3612d52-0bdb-471d-afec-a3378c25b452"> - <skos:scopeNote xml:lang="de">{"id": "04724e42-000f-41b2-be5c-4c624bed3c16", "value": "Katalog, in dem Gegenst\u00e4nde aufgelistet sind, die zum Verkauf stehen."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "94078058-66ac-4482-8147-02259347aaa5", "value": "http://vocab.getty.edu/aat/300026074"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "4f97dadf-4446-41aa-aeec-57ab6bfdc945", "value": "Catalogs that enumerate items that are for sale."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "56d4229c-6587-45a1-9335-ec92672ae0ea", "value": "Verkaufskatalog"}</skos:prefLabel> - <skos:prefLabel xml:lang="en-us">{"id": "0a19915f-4400-45ec-a966-08a58713b010", "value": "sales catalogs"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/6195ff8c-5970-41b6-9480-e92ce21dc0df"> + <skos:prefLabel xml:lang="de">{"id": "a3fe54fb-9455-4416-8cd5-859671dda964", "value": "Hebr\u00e4isch"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "4cac01c8-4d62-4d5e-80d0-6bd5836ce283", "value": "http://vocab.getty.edu/aat/300388401"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "f6935403-373b-40c4-bf76-bec518b846cc", "value": "h\u00e9breu"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "3a32f9ff-b6e9-4eed-ba6d-e887865d4158", "value": "Hebrew (language)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5fc4650f-5791-4351-bc52-1c5308eb730e"> - <skos:prefLabel xml:lang="de">{"id": "d1c360d8-13ca-4534-a4d6-8d8c7534b37b", "value": "Anmerkung"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "b528083d-16ed-416f-9651-06184b2fde93", "value": "Notes added as comment or explanation, such as those accompanying an entry in a bibliography, reading list, or catalogue intended to describe, explain, or evaluate the publication referred to."}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "83ff73fb-d29b-409d-8789-9b6e2b134332", "value": "Erg\u00e4nzung, die als Kommentar oder Erkl\u00e4rung hinzugef\u00fcgt wird, wie beispielsweise jene, die einem Titel in einer Bibliografie, einer Leseliste oder einem Katalog beigef\u00fcgt ist und die betreffende Publikation beschreiben, erkl\u00e4ren oder bewerten soll."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "a295c086-134d-4981-be72-94ce18619261", "value": "annotations"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/ffc79063-a21e-46b3-9441-0c8dac5b6161"> + <skos:prefLabel xml:lang="de">{"id": "0c1b9942-f3e3-48c0-a3f8-7e6bfcb788f5", "value": "Polnisch"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "0a8bdb4e-7b42-468a-acb6-8406a88c2d08", "value": "http://vocab.getty.edu/aat/300026100"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "6e9ac348-1552-4e1f-834e-c13c90df73e3", "value": "http://vocab.getty.edu/aat/300389109"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "b785f139-8b23-41f4-8e40-4f785ca15f11", "value": "Polish (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "72601ba3-d5bd-4be4-8910-9067162d2c1a", "value": "polonais"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/7894309c-220d-4a2f-910a-8f412095f9f7"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/4c10d2b0-92c1-4752-a991-c6c051c3d9c2"> + <skos:Concept rdf:about="http://localhost:8000/0870ac7d-edd3-4214-ba2b-185396528024"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d6308bac-fa4b-4302-90a1-76ea53da0d56", "value": "Includes offers by one person or organization to another of terms and conditions with reference to some work or undertaking and plans or schemes put forward for consideration, discussion, or adoption."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "506f95f1-51cb-4a42-9e19-19a00b380814", "value": "proposals"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "2748fba7-c1ab-4a05-abef-4ea10aba9ab8", "value": "http://vocab.getty.edu/aat/300027261"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "33a585c5-3c4a-434a-9ff9-f96f3f7eadf3", "value": "http://vocab.getty.edu/aat/300389336"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "b2af99bb-41d6-4fcb-b098-5d6aa7f0f1b4", "value": "Swedish (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "6de08f07-8668-469c-8227-7d7571c8bdb8", "value": "su\u00e9dois"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "459b5fe6-8de5-4bbb-b6de-e9c9be9f179d", "value": "Schwedisch"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0b9b05f5-9b5b-44ab-8090-98e195953043"> + <skos:Concept rdf:about="http://localhost:8000/b9845f81-8de2-43be-a243-b91cc6924cdf"> + <skos:prefLabel xml:lang="de">{"id": "229ad85a-6ef5-4650-943e-583040306409", "value": "Griechisch"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6f5f694a-dbb5-45d7-95aa-bbfec25f6544", "value": "http://vocab.getty.edu/aat/300387827"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "45c98d6a-e785-4265-bca9-a3b1cc12f894", "value": "Ancient Greek (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "2d441966-a978-4126-b702-aa56fa3a40ad", "value": "grec ancien (jusqu'\u00e0 1453)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "e5443385-a70c-4db7-a2d8-2da74be28ea2", "value": "http://vocab.getty.edu/aat/300027201"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "6100add2-9586-40f9-9fd9-00dda8e42c04", "value": "note de terrain"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "33714b40-9c92-4f2c-b24b-1e1d87bad781", "value": "field notes"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "1eb249f8-9a4d-4014-b28a-88b81151f28f", "value": "Feldnotiz"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "40f0b553-9064-4e3a-bcc7-ff1dacfd6af1", "value": "Notiz, h\u00e4ufig in einem Buch, die von Forschern oder Landvermessern niedergeschrieben wird, w\u00e4hrend sie vor Ort sind."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "210c8c03-5878-42bc-8202-85d4c45620a1", "value": "Notes, often in books, kept by researchers or surveying parties while on site."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ac2a0b23-c92f-482e-8f55-292386f66b86"> + <skos:Concept rdf:about="http://localhost:8000/7e6c493b-6434-4b3a-9513-02df44b78d24"> + <skos:scopeNote xml:lang="en">{"id": "3a4747c9-8ab6-4afd-9970-d906acd9bb0d", "value": "West Germanic language that is the national language of Germany and Austria, one of the three official languages of Switzerland, and known in various communities in North and South America, South Africa, and Australia. As a written language German is quite uniform, although there are numerous regional differences in pronunciation and dialect."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "569bf84a-4882-41c9-8717-2de409b17962", "value": "Deutsch"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "3504fa03-dc72-4c7b-b64b-2bc92a6c3258", "value": "allemand"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "764354de-090c-4f35-bf96-1ccc27e6ae08", "value": "Technischer Bericht"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "87145d78-6aa0-438f-a2f1-e23a7d01c5a3", "value": "technical reports"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "3dc76a81-b432-4ea2-99db-d62a65e5459c", "value": "Reports giving details and results of a specific investigation of a scientific or technical problem."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "fb2f87ee-e305-42c6-91df-83738522a05f", "value": "http://vocab.getty.edu/aat/300027323"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "d47d75da-2fc9-4ca3-a875-240fdc661ebf", "value": "Bericht mit den Details und Ergebnissen einer Untersuchung \u00fcber ein wissenschaftliches oder technisches Problem."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "94eeed49-8def-4fbf-b1a2-4b1345c99b1a", "value": "German (language)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "051dad53-601b-468d-a8ab-708493f2aafe", "value": "http://vocab.getty.edu/aat/300388344"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/3ce7379e-24e2-4543-93be-d2a6353e197d"> - <skos:prefLabel xml:lang="de">{"id": "837ded72-15e9-4501-b628-d25fd6e7168e", "value": "Artikel (Dokument)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "483b1fef-da2a-4fbe-8a5c-6bfc5abd7aef", "value": "http://vocab.getty.edu/aat/300048715"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "ef97a6e3-ff66-4786-8852-e3bf0abe7e3d", "value": "Literary compositions prepared for publication as an independent portion of a magazine, newspaper, encyclopedia, or other work."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "a12f6577-4e4e-4cb0-a825-c0c4b1184ed1", "value": "articles"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/86d75104-eaba-4116-9201-0db856830aa4"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "261b8a0c-4ba6-46fe-8115-58724afbacd1", "value": "Literarisches Arbeit f\u00fcr die Ver\u00f6ffentlichung als eigenst\u00e4ndiger Teil einer Zeitschrift, Zeitung, Enzyklop\u00e4die, oder andere Arbeiten vorbereitet."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "50092f86-4c8f-4172-b3d6-6e414f2b6e90", "value": "Thai (language)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "a92f61d8-0e5a-41d9-8986-a059bbfe9020", "value": "http://vocab.getty.edu/aat/300389405"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "f80ddf36-25b5-46ab-a74f-64d4ea03089d", "value": "Thail\u00e4ndisch"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "6f0cf6f9-2ac6-479b-99da-07d812447560", "value": "tha\u00ef"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6f91f3d7-bb19-4d23-9ba4-e18d37825054"> + <skos:Concept rdf:about="http://localhost:8000/a5e9ba49-12ce-4440-9db9-484c8519c785"> + <skos:prefLabel xml:lang="fr">{"id": "04f1992b-3c22-401c-a222-a233db8cebc0", "value": "hindi"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "15567cbb-2825-40ec-a4ee-a0efa8455997", "value": "folios (leaves)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "42590d37-c580-4278-9081-9bc962e97c47", "value": "The individual leaves of a book or manuscript numbered on the recto only. The two sides of the folio are typically numbered using 'r' for recto, meaning the front or righ-hand page, and 'v' for verso, meaning the back or left-hand side. Reference to a folio is distinguished from reference to a \"page\" in that a page is numbered on both sides."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "47161a67-43e1-445b-9c03-1e180b6f62f1", "value": "http://vocab.getty.edu/aat/300189604"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "0199ad64-f063-4c6b-a677-d7c8e625655f", "value": "http://vocab.getty.edu/aat/300388412"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "5dd7cac0-475d-4cb1-bf25-6472352e61a6", "value": "Hindi (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "c3daa156-3cdd-487a-85eb-60f98dfc4a6d", "value": "Hindi"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b655bf98-5a16-4641-8362-c78624d8d171"> - <skos:scopeNote xml:lang="de">{"id": "444c7644-ea1c-4e05-ae89-69fc1d0702e0", "value": "Dokument, der \u00d6ffentlichkeit durch Verkauf oder sonstige Eigentums\u00fcbertragung oder durch Miete, Leasing oder Kredit zug\u00e4nglich."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/a1d82c77-ebd6-4215-ab85-2c0b6a68a0e8"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "a1dca26c-ef6c-4348-b65e-3ac07f7f5a2e", "value": "http://vocab.getty.edu/aat/300111999"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "9da17be2-a7bc-40d9-8fe6-11c2461d3160", "value": "Ver\u00f6ffentlichung"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "4300667c-a62f-437e-ae26-5a57003059b7", "value": "Documents distributed to the public by sale or other transfer of ownership, or by rental, lease, or lending."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "0d95a8ef-a598-4c20-9d2e-6725cd7d0273", "value": "publications (documents)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c18b3cbb-6f1d-473d-98b9-a789589c9959", "value": "http://vocab.getty.edu/aat/300388306"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "c09fcdf0-39c0-47d5-8738-fd80f049547d", "value": "French (language)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "8c842ffd-ada8-484d-afad-9bd319ef3a10", "value": "General term for the French language."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "dda98624-bc29-46a9-96d6-66d541b12c58", "value": "Franz\u00f6sisch"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "97a38c7c-41d0-49c6-83c8-c0211fbf9fca", "value": "fran\u00e7ais"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "065fa5fb-a33e-4bca-a85f-42216c8d85f0", "value": "Document Types"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/90dbeb41-afa5-4e24-ba2c-bbc04779130d"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "34f4d0f6-b418-4062-9892-2e36f81c91e0", "value": "print groupings"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "af80e3ed-e4f8-44ae-988f-5b0a66bfeb54", "value": "http://vocab.getty.edu/aat/300189630"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "2226053c-5586-40a0-bfd3-efbca0cd9373", "value": "Prints collected and grouped together, and that are usually related in theme."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/5dc2c5f1-bccd-44e2-be0e-f34f3d1ac8db"> + <skos:scopeNote xml:lang="en">{"id": "92336ee0-b5dc-4cb3-845f-9ee0a55ed02f", "value": "Unit of French currency of varying value, known from the Middle Ages until the French Revolution. "}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "03efc4af-cb4f-4569-9ee1-5f250c461def", "value": "\u00e9cu"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "c58ac326-9432-48d9-8c4c-f14e7f987cb5", "value": "\u00e9cu (system of money)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "1113a8e7-f5dd-40e1-bde1-b83aa574e196", "value": "http://vocab.getty.edu/aat/300412159"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/5f0e4350-cacd-41d8-a2bb-5efbfa5915b5"> + <dcterms:identifier xml:lang="en">{"id": "f54824ac-ae2a-4b29-b059-f4dd43a4771a", "value": "http://localhost:8000/5f0e4350-cacd-41d8-a2bb-5efbfa5915b5"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "934ec77a-e952-468f-a48e-601c1d17ada6", "value": "design"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/48e08437-a15d-4f0f-adfc-77c1587f17b9"> + <dcterms:identifier xml:lang="en">{"id": "88fb78eb-45c9-4fce-b62d-5be84cdab5a7", "value": "http://vocab.getty.edu/aat/300419273"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "b53bab04-2e5b-4bf0-970d-10dae57b1217", "value": "thoroughfare names"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "f9147c49-2064-476d-87b9-64f097ef8a18", "value": "Designations for streets, highways, roads, or other thoroughfares, either proper names or numeric indicators."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/0e95cff7-5df1-4281-a896-d3bbb295b11e"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "3d44eb5f-677d-41a2-b0f4-e03e92631a5a", "value": "burning"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ae55d75c-695e-4914-969a-728debcdfad5", "value": "The process of altering, injuring, or consuming something by fire or heat. For events where something is totally or partially consumed by fire, whether intentionally or by accident, use \"fires.\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "60c91251-ead6-4004-a12f-456fb8a5df59", "value": "http://vocab.getty.edu/aat/300228062"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/84554ae9-0437-4ef3-94a3-6718fef184fe"> + <dcterms:identifier xml:lang="en">{"id": "15af88b7-fe4c-4610-af6f-074bfd1d777b", "value": "http://vocab.getty.edu/aat/300018322"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "2d61756e-7c1f-439a-9d07-68e60cbf9cce", "value": "Chinese (culture or style)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b04ccbd1-1dde-469d-bba8-208f8177c7b4", "value": "The cultures, styles, and periods characteristic of China. To specifically refer to the cultures of ancient Chine, use \"Ancient Chinese.\""}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="fr">{"id": "3aa9054a-2ab9-44da-aaf6-17bd07c39283", "value": "chinoise"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/9f336e9a-17bd-45bc-a4a2-f816a551d196"> + <skos:prefLabel xml:lang="en">{"id": "a1637323-dd13-41bb-98f1-80f963c6e0ea", "value": "3D Data Measurement"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0784c9bd-32c4-424f-a8cd-143b6f05703e"> + <skos:Concept rdf:about="http://localhost:8000/fa1d6a48-4e82-4d23-8747-c4fa10f3301a"> + <skos:prefLabel xml:lang="en">{"id": "fb0bb706-b082-4387-85cf-5ca59b3259bc", "value": "3D Raman Measurement"}</skos:prefLabel> + <skos:altLabel xml:lang="en">{"id": "6feab2ec-b592-11ee-8d43-2b9f097c6e15", "value": "3D Raman spectroscopy Measurement"}</skos:altLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "042b2384-de4b-4171-8647-607beb61ef88", "value": "surveys (documents)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "de914028-6ae7-4f1f-bd14-34a6afbe7593", "value": "Documentation of examinations or inspections conducted in order to achieve a comprehensive view, as of a place, a group of related items, or to ascertain condition or value. For detailed lists of items on hand, or of items in a given category, use \"inventories.\" For sets of questions submitted to a number of persons to obtain information, use \"questionnaires.\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "c31df325-7a50-4308-9fa7-1e4dfad48650", "value": "http://vocab.getty.edu/aat/300226986"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a5ae03f5-d2c0-4336-b170-2019d7cae51b"> - <dcterms:identifier xml:lang="en">{"id": "7d2dedb4-ab0f-41bc-a79a-1fdc1efef0a7", "value": "http://vocab.getty.edu/aat/300028028"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "b2671630-2e7d-4ed3-83be-8ba6f92d21a7", "value": "theses"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/d5c7a90b-fd87-4d2c-86f8-01909795e73e"> + <skos:prefLabel xml:lang="en">{"id": "3e40bee5-736b-42b6-a51b-c7a5cc143b80", "value": "RIS Measurement"}</skos:prefLabel> + <skos:altLabel xml:lang="en">{"id": "6fea9406-b592-11ee-8d43-53781a3bdb9a", "value": "Reflectance imaging spectroscopy (RIS) Measurement"}</skos:altLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "aebd5f34-a48a-41b8-8874-e7e3b86f7949", "value": "Discourses advancing an original point of view as a result of research, especially as a requirement for an academic degree."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "a6975cf7-2511-4702-be9f-7cf41578326f", "value": "th\u00e8ses"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/9b1c5d1b-7ff9-400a-acde-c9a081eff7e1"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2c1b54ac-bcba-48bc-975c-108961fe3036"> - <skos:scopeNote xml:lang="en">{"id": "faaf33b5-7144-4716-aca1-d691dba29eff", "value": "Separate treatises on a particular subject, typically written expositions of a subject narrow enough in scope to exclude all but a single aspect of the subject, for example, a study of the works of a single artist. In book cataloging, non-serial bibliographic items complete in one part or in a finite number of separate parts."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/091a244e-6532-4fc7-8b70-63364c4a4569"> + <skos:altLabel xml:lang="en">{"id": "6fea860a-b592-11ee-8d43-73f8857e256c", "value": "3D X-ray fluorescence (XRF) spectroscopy Measurement"}</skos:altLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "47e06234-6423-4742-a564-cb80620f067a", "value": "http://vocab.getty.edu/aat/300060417"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "e0ea00fe-7ce1-438e-897a-cf5f0b922509", "value": "monographs"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "17de9b07-66e5-4c97-a968-224fd31506e7", "value": "3D XRF Measurement"}</skos:prefLabel> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/eedcb6df-656b-4a3b-b808-be00a7a4daf9"> + <skos:prefLabel xml:lang="de">{"id": "a8d2cf40-dd51-4309-9201-d25a5927af10", "value": "Grisaillemalerei"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "68390d5c-12a4-4c56-b6e3-8514b1af647c", "value": "Painting of images in monochrome, usually gray tones; employed in paintings, stained glass, enamels, and on pottery and other objects."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "bf56290f-6be8-4802-ab85-9e99edd9881b", "value": "Gemaltes Bild in Schwarz-Wei\u00df, in der Regel mit Graut\u00f6nen; etabliert in der Malerei, Glasmalerei, Emaillekunst, auf Keramik und anderen Objekten."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "4def8e0c-e5cb-4405-9c29-abf7c07232e9", "value": "http://vocab.getty.edu/aat/300053386"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "91bb8dec-6760-41f7-973c-42a1855adb9b", "value": "grisaille"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/87137493-fef9-4485-b17b-7e390962ecfc"> + <skos:scopeNote xml:lang="en">{"id": "dd06a711-7ce1-4c1d-9ee8-7a574b7f46b8", "value": "General term for the method of acquiring property through transference by one person or institution to another person or institution, voluntarily and without any payment required."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "d7c3d933-3609-4107-b96c-4829e2d3cc43", "value": "gift (method of acquisition)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "3ce79821-3d8b-4e77-a8c0-bb0ef4712a83", "value": "http://vocab.getty.edu/aat/300417637"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f37e69ea-ce89-4a5c-924b-172a2ac7e9a0"> + <skos:scopeNote xml:lang="en">{"id": "c32b0e57-d432-443d-b136-ef64370757c8", "value": "Institutions that maintain places where objects of value such as works of art, antiquities, scientific specimens, or other artifacts are housed and displayed for public benefit. An institution devoted to the procurement, care, documentation, study and display of objects of lasting interest or value."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="de">{"id": "010b8b2c-7aa7-4c39-9298-34b72dd134f6", "value": "Eine Einrichtung, in denen Objekte von Wert wie Kunstwerke, Antiquit\u00e4ten, wissenschaftliche Pr\u00e4parate oder andere Artefakte bewahrt und f\u00fcr die \u00d6ffentlichkeit ausgestellt werden. Eine Einrichtung, die sich mit der Sammlung, der Pflege, der Dokumentation, dem Studium und der Pr\u00e4sentation von Objekten von \u00fcberdauerndem Interesse und Wert besch\u00e4ftigen. "}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "b8411320-53e1-4729-ad99-125444686a3d", "value": "Museum (institution)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "28277b44-96bf-4b53-80fd-1e3ff26bab89", "value": "http://vocab.getty.edu/aat/300312281"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "9f293d7b-5e26-4d46-9b74-7c2f41c44546", "value": "museums (institutions)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/9966b87c-8914-472c-ac0c-cc5378c7127d"> + <skos:prefLabel xml:lang="en">{"id": "750178f6-f231-4091-b99c-b2033e9e9e89", "value": "historical events"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "47ece86f-9b8b-4527-9622-5dc4897b5c26", "value": "http://localhost:8000/9966b87c-8914-472c-ac0c-cc5378c7127d"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/4b2ed1f9-3b31-47c1-975e-1e114f0fe099"> + <skos:prefLabel xml:lang="en">{"id": "0460e745-cf3f-42e8-94f3-08a31b5cc245", "value": "shipping"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "16d10530-66c6-4a9e-9436-27c0e2a3f30d", "value": "http://vocab.getty.edu/aat/300053899"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "3d13f0f5-bbfb-4c67-ab38-025328fdc420", "value": "Process of transporting goods sending goods to people, stores, or other destinations."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/7882a788-a6ba-42d7-bb02-7c2776d82353"> + <skos:scopeNote xml:lang="en">{"id": "c0b70a46-d0fe-4b83-a28c-898aaf172bbf", "value": "The length of a straight line passing through the center of a circle or sphere, terminated at each end by its circumference or surface."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "0667e7a8-45df-4a99-84df-10e77c6252e3", "value": "diameter"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "8b24bbb8-1309-46bc-81fb-ca11f9812f61", "value": "http://vocab.getty.edu/aat/300055624"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e37e4f70-b839-4127-9489-845946fec971"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/58800805-b0f0-4a6b-947a-8b98fec4c33a"> - <skos:prefLabel xml:lang="en">{"id": "6541653f-2080-49f3-9e69-713f58e60a04", "value": "registers (lists)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "5f645555-21b1-482c-bbbf-7bdb2e06bc0b", "value": "Official lists of entries of any information considered sufficiently important to be exactly and formally recorded, typically maintained in numerical or chronological order in a regular manner."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/4916b590-691a-4bcd-9fdd-bcc756484682"> + <skos:scopeNote xml:lang="de">{"id": "25f32b5d-0a3f-4f06-abd8-24843bc37fce", "value": "Aufgezeichnete Information, nicht an ein bestimmtes Medium gebunden; produziert, empfangen und gef\u00fchrt von einer Beh\u00f6rde, Institution, Organisation oder Einzelperson, um gesetzlichen Verpflichtungen nachzukommen oder zur Aufrechterhaltung des Gesch\u00e4ftsbetriebes."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "dfbd2504-44ac-4378-8999-ed625b89d1a5", "value": "records (documents)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "f3b11d3b-77fb-460b-9fe2-70a82fd92bff", "value": "Akte"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "1e192879-c49d-4668-9822-d870f0ff9c78", "value": "http://vocab.getty.edu/aat/300026685"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "492e0a39-3dbf-48d1-b48b-13fca39b93f3", "value": "Recorded information, often standardized in format and content and treated as a unit. Records include such compilations of data regardless of medium, that are created, received, and maintained by a project, agency, institution, organization, or individual in pursuance of legal obligations, in the transaction of business, for the storage of research and knowledge, or for other purposes."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "acdabea3-1717-42ba-ab24-de1a1089b791", "value": "Offizielle Liste von Eintr\u00e4gen mit Informationen, die als wichtig genug erachtet werden, um genau und in formeller Weise verzeichnet zu werden, in der Regel in numerischer oder chronologischer Reihenfolge."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "57b320ce-015b-4e64-8109-bfba1497b827", "value": "Register (list)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a83a985b-e660-4bc4-9132-28f1fbaad751", "value": "http://vocab.getty.edu/aat/300027168"}</dcterms:identifier> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/cbf70ed1-44ea-4079-92b0-2c98834e808c"> - <skos:prefLabel xml:lang="en">{"id": "e53d1028-e1a2-4550-80f6-a42c8b6d7cba", "value": "pages (components)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b79adab0-582a-4dac-9705-4f90bdb300e0", "value": "http://vocab.getty.edu/aat/300194222"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "531eb311-8361-4abc-a9e3-38b8af5ef5d1", "value": "Einzelne Seite eines Blattes, Vorderseite oder R\u00fcckseite; auch die einzelne Fl\u00e4chen nach dem Falten eines Blattes, kann aus Papier oder Pergament bestehen, unabh\u00e4ngig ob diese leer, beschrieben oder bedruckt sind. Unterscheidet sich von \"Folio\", da ein Folio nur auf der Vorderseite nummeriert wird."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "90f3aa5d-41f3-4d73-9d4e-bb57ca8b18ea", "value": "Individual sides of a leaf, recto or verso; the individual sides of leaves resulting from folding a sheet, as of paper or parchment, whether blank or containing writing, printing, or other matter. Distinguished from a \"folio\" in that a folio is numbered on only the front side."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "99de342e-fc21-4ecd-ade1-5655d1ed71a2", "value": "Seite (Buchbindung)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> <skos:Concept rdf:about="http://localhost:8000/f903e2b8-5579-4159-b28d-9d8544c88c4b"> + <skos:prefLabel xml:lang="en">{"id": "38290c96-5b98-4bdb-93b4-56e9d20f04bc", "value": "issues (object groupings)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:scopeNote xml:lang="en">{"id": "3bde5fd6-efa8-4eb4-b47e-17c436e2c6a6", "value": "All examples of a set number or amount of multiples, such as coins, notes, stamps, prints, copies of a newspaper, books, periodicals, etc. that were issued at one time or otherwise sharply distinguished in pattern, design, color, or identifying numbers from those issued at another time."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "38290c96-5b98-4bdb-93b4-56e9d20f04bc", "value": "issues (object groupings)"}</skos:prefLabel> <dcterms:identifier xml:lang="en">{"id": "90cfb494-3d77-4bf1-9173-b523c297e4fa", "value": "http://vocab.getty.edu/aat/300312349"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fc767b12-ec83-49a9-bf4e-dc11d1d63bc9"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "bde75ce4-2ba1-4e0a-8842-e584196c91e3", "value": "laboratory notes"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "72129da6-dd5e-42d5-9715-25ddd97dbf89", "value": "Labornotiz"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "e0570585-907f-4fc8-9353-0e00ef418abc", "value": "Notiz, die bei einer wissenschaftlichen Untersuchung in einer kontrollierten Umgebung verfasst wird."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "0d55670e-e4b2-47c5-b869-80ee7f9375ef", "value": "http://vocab.getty.edu/aat/300027202"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "45994828-e104-40d9-bd37-55ca3d2a4db2", "value": "Notes made in the course of scientific inquiry conducted in a controlled environment."}</skos:scopeNote> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/4916b590-691a-4bcd-9fdd-bcc756484682"> - <dcterms:identifier xml:lang="en">{"id": "1e192879-c49d-4668-9822-d870f0ff9c78", "value": "http://vocab.getty.edu/aat/300026685"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "25f32b5d-0a3f-4f06-abd8-24843bc37fce", "value": "Aufgezeichnete Information, nicht an ein bestimmtes Medium gebunden; produziert, empfangen und gef\u00fchrt von einer Beh\u00f6rde, Institution, Organisation oder Einzelperson, um gesetzlichen Verpflichtungen nachzukommen oder zur Aufrechterhaltung des Gesch\u00e4ftsbetriebes."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "dfbd2504-44ac-4378-8999-ed625b89d1a5", "value": "records (documents)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/f73e0b59-f329-4b8f-932e-7c9426567c2c"> + <skos:scopeNote xml:lang="de">{"id": "60ca8766-181d-47ae-bc63-6d531531f7e7", "value": "Buch, in das finanzielle Transaktionen eingetragen werden. "}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "825535de-65e6-40c5-b83f-55a9c8f5e324", "value": "Gesch\u00e4ftsbuch"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "e88b49ec-0efc-4405-9a48-b8b5c4305047", "value": "Books in which financial accounts are kept."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "fac1389f-8c64-4d44-83e9-e5987fc5962e", "value": "http://vocab.getty.edu/aat/300027483"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "492e0a39-3dbf-48d1-b48b-13fca39b93f3", "value": "Recorded information, often standardized in format and content and treated as a unit. Records include such compilations of data regardless of medium, that are created, received, and maintained by a project, agency, institution, organization, or individual in pursuance of legal obligations, in the transaction of business, for the storage of research and knowledge, or for other purposes."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "f3b11d3b-77fb-460b-9fe2-70a82fd92bff", "value": "Akte"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "aeacf832-01bb-4bb1-a83c-7358e8b277b9", "value": "account books"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/24b56b86-97c4-4fe5-a6e2-4a7a5d5ba8f1"> - <skos:prefLabel xml:lang="en">{"id": "9c926114-8422-4f93-908f-1fba2c749e0b", "value": "manuscripts for publication"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "d2c6937d-13c4-45b7-942c-04bf3f682bfc", "value": "Manuscripts that have been reviewed and prepared to be published."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/22b51542-05e5-482f-97ba-0283336ef91b"> + <dcterms:identifier xml:lang="en">{"id": "7f0d9766-2e86-49a7-b12d-7c27f9bb2f8a", "value": "http://vocab.getty.edu/aat/300027349"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "6e810f10-da23-4004-b2a3-f89dd4d9ea62", "value": "A conceptual grouping of visual arts works, literary works, or performance art created in succession by the same author, artist, or studio and intended by the creator(s) to be seen together or in succession as a cycle of works. Works in a series typically share the same or related subjects, the same or similar media, or other characteristics, but their defining characteristic is that they were intended to be conceptually related as a series. Individual items in a series may be cataloged separately and linked to the series. "}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "ab815cae-7931-45f9-a03c-243dae276f6d", "value": "Serie (Gruppe)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "089ae4ff-e13d-4896-b0d1-412670a75586", "value": "s\u00e9rie"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "50de4abb-d288-462e-8453-53547b782a2e", "value": "Gruppe von separaten bibliographischen Objekten, miteinander in Beziehung stehend,durch die Tatsache, dass jedes zus\u00e4tzlich zu seinen eigenen Titel einen Sammeltitel f\u00fcr die Gruppe als Ganzes enth\u00e4lt; sie werden sukzessive herausgegeben; in der bildenden Kunst wird der Begriff f\u00fcr eine Gruppe von Werken eines einzelnen K\u00fcnstlers verwendet, die eine spezifische und sinnhafte Beziehung zwischen den Arbeiten besitzen."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b57a9a1f-3092-454c-b8f4-ec6cd7379c0b", "value": "http://vocab.getty.edu/aat/300028579"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "9629017a-5895-45c1-87b5-a42b9fde15e2", "value": "series (object groupings)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/c17e82b5-450c-43d4-a66d-b4796532316a"/> <skos:narrower> <skos:Concept rdf:about="http://localhost:8000/b4d7567c-09f8-4039-b15f-67cada5cb57d"> <skos:scopeNote xml:lang="de">{"id": "60a58df7-33a3-4cf2-a047-a625a645194f", "value": "Vollst\u00e4ndiges, systematisches und kritisches Verzeichnis aller bekannten Werke eines einzelnen K\u00fcnstlers, das ausf\u00fchrliche Informationen \u00fcber jedes Einzelwerk bietet, einschlie\u00dflich seiner Herkunft."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "86148708-5e26-448b-ba38-2591310b671e", "value": "Werkverzeichnis"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <dcterms:identifier xml:lang="en">{"id": "827990f4-5e70-4100-936b-5b9b10bb35d8", "value": "http://vocab.getty.edu/aat/300026061"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "2a8a52db-911f-42d8-bc2e-9eb298726903", "value": "Complete, systematic, and critical listings of all the known works of a single artist, providing comprehensive information, including provenance, for each work."}</skos:scopeNote> <skos:prefLabel xml:lang="en">{"id": "f5042bad-209b-4d10-92bd-0f4c8fbc8f5b", "value": "catalogues raisonn\u00e9s"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "86148708-5e26-448b-ba38-2591310b671e", "value": "Werkverzeichnis"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "2a8a52db-911f-42d8-bc2e-9eb298726903", "value": "Complete, systematic, and critical listings of all the known works of a single artist, providing comprehensive information, including provenance, for each work."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f73e0b59-f329-4b8f-932e-7c9426567c2c"> - <skos:prefLabel xml:lang="en">{"id": "aeacf832-01bb-4bb1-a83c-7358e8b277b9", "value": "account books"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "e88b49ec-0efc-4405-9a48-b8b5c4305047", "value": "Books in which financial accounts are kept."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "825535de-65e6-40c5-b83f-55a9c8f5e324", "value": "Gesch\u00e4ftsbuch"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "60ca8766-181d-47ae-bc63-6d531531f7e7", "value": "Buch, in das finanzielle Transaktionen eingetragen werden. "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/3ce7379e-24e2-4543-93be-d2a6353e197d"> + <skos:scopeNote xml:lang="de">{"id": "261b8a0c-4ba6-46fe-8115-58724afbacd1", "value": "Literarisches Arbeit f\u00fcr die Ver\u00f6ffentlichung als eigenst\u00e4ndiger Teil einer Zeitschrift, Zeitung, Enzyklop\u00e4die, oder andere Arbeiten vorbereitet."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a12f6577-4e4e-4cb0-a825-c0c4b1184ed1", "value": "articles"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ef97a6e3-ff66-4786-8852-e3bf0abe7e3d", "value": "Literary compositions prepared for publication as an independent portion of a magazine, newspaper, encyclopedia, or other work."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "fac1389f-8c64-4d44-83e9-e5987fc5962e", "value": "http://vocab.getty.edu/aat/300027483"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "483b1fef-da2a-4fbe-8a5c-6bfc5abd7aef", "value": "http://vocab.getty.edu/aat/300048715"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "837ded72-15e9-4501-b628-d25fd6e7168e", "value": "Artikel (Dokument)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d1cfab03-ce07-4800-9b89-d6129b602228"> - <dcterms:identifier xml:lang="en">{"id": "c7faa03e-49f7-41e2-bca6-b03a64bd144f", "value": "http://vocab.getty.edu/aat/300265632"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "7b6a1386-df5d-4ade-bc4b-d967996aede9", "value": "Sammlung von beschriebenen oder bedruckten Bl\u00e4ttern, die zu einem Buch gebunden wurde. Die Bezeichnung kann sich auch auf den einzeln gebundenen Teil oder Abschnitt eines schriftlichen Werks beziehen, das in zwei oder mehr Teilen erscheint, jeder in einem separaten Einband; im Allgemeinen sind mehrere B\u00e4nde desselben Werks oder derselben Reihe \u00e4hnlich gro\u00df und haben einen \u00e4hnlichen Einband."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/24b56b86-97c4-4fe5-a6e2-4a7a5d5ba8f1"> + <dcterms:identifier xml:lang="en">{"id": "b57a9a1f-3092-454c-b8f4-ec6cd7379c0b", "value": "http://vocab.getty.edu/aat/300028579"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "0788c3fc-1f2f-4b14-921b-96eaf939c87a", "value": "volumes (documents by form)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "0edad61e-e50b-4338-8ad8-dd4ec49d559f", "value": "Objects comprising sheets of paper, vellum, papyrus, or another material that are bound together. Volumes may include printed books, manuscripts, sketchbooks, or albums. Where the parts of a historical volume have been dispersed, records for the individual sheets may be linked as a historical volume for research purposes. Given that an album contains individual drawings, prints, or other art works that have been mounted, the drawings, etc. in an album may be cataloged as items and linked to the record for the volume. For intact books, manuscripts, and sketchbooks, the illuminations or other parts may be better cataloged as components rather than items. The term may also refer to a separately bound portion or division of a written work or series that is divided into two or more sections, each contained in a separate binding; generally, multiple volumes of the same work or series are of similar dimensions and contained in similar bindings. "}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "60bb21b3-db86-4541-95f8-bf4c3ec1cb9e", "value": "Band (document by form)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "d2c6937d-13c4-45b7-942c-04bf3f682bfc", "value": "Manuscripts that have been reviewed and prepared to be published."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "9c926114-8422-4f93-908f-1fba2c749e0b", "value": "manuscripts for publication"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "64250944-7652-48d8-8dc3-f0755145ddf3", "value": "http://localhost:8000/e37e4f70-b839-4127-9489-845946fec971"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6cf9b53f-7e44-4264-8fa4-5d828ff3de72"> - <skos:scopeNote xml:lang="en">{"id": "040ebc23-1027-48df-96a6-eb1c85f2ebd5", "value": "Grants made by a government to an inventor, assuring the inventor the sole right to make, use, and sell the invention for a certain period of time."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "4b92b92b-0354-4589-b436-4e78b07254cd", "value": "http://vocab.getty.edu/aat/300027832"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "60aa8954-abde-41cf-a8ba-50348acd9e0b", "value": "patents"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/a5ae03f5-d2c0-4336-b170-2019d7cae51b"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "31524c6c-d5c6-437d-92d3-c6e773d57b30", "value": "brevets"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "cf81689c-707f-4c72-8b69-64df1988ddf5", "value": "Patent (Regierungsakte)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "aefddd04-28c1-4d35-8faf-ff0a8fe6726d", "value": "Das von einer Regierung an einen Erfinder erteilte alleinige Recht, die Erfindung f\u00fcr eine bestimmte Dauer zu produzieren, zu nutzen und zu verkaufen."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "aebd5f34-a48a-41b8-8874-e7e3b86f7949", "value": "Discourses advancing an original point of view as a result of research, especially as a requirement for an academic degree."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "a6975cf7-2511-4702-be9f-7cf41578326f", "value": "th\u00e8ses"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "7d2dedb4-ab0f-41bc-a79a-1fdc1efef0a7", "value": "http://vocab.getty.edu/aat/300028028"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "b2671630-2e7d-4ed3-83be-8ba6f92d21a7", "value": "theses"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5bf90b5e-37eb-45af-b326-e4609208fcb0"> - <dcterms:identifier xml:lang="en">{"id": "34dc414a-dbc1-4068-9dd7-c437eb75763d", "value": "http://localhost:8000/5bf90b5e-37eb-45af-b326-e4609208fcb0"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "5c034bb5-0316-41fb-828b-54e9fca80055", "value": "Joining as Participant"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5f400d39-3b6b-4b8a-939b-4e49787c7444"> - <skos:prefLabel xml:lang="en">{"id": "8f40c740-3c02-4839-b1a4-f1460823a9fe", "value": "preferred terms"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "63f56784-1b98-4b52-b4a4-ac640fae533c", "value": "Terms or names that are designated among all synonyms or lexical variants for a concept, to be used as the default term or name in displays and other situations; distinguished from \"nonpreferred terms.\""}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "f961772a-1216-4f1a-8fb5-a268ee0c3310", "value": "http://vocab.getty.edu/aat/300404670"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0d660e45-fde0-47d8-b0c8-949a9ad397ef"> - <dcterms:identifier xml:lang="en">{"id": "3385f92d-0a15-46a6-a89c-dbd8bf0133c7", "value": "http://localhost:8000/0d660e45-fde0-47d8-b0c8-949a9ad397ef"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "0714f10f-f47d-44bb-88a8-93e2dcefa3c7", "value": "land registry ID"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/825d0d98-cdd9-461e-8e96-609159286bd9"> - <skos:prefLabel xml:lang="en">{"id": "c2e23a00-1b15-4450-8b3d-c6d938b22f13", "value": "Latin (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "e994bead-771f-432e-9d4f-7dadd83f57a1", "value": "Latein"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "ad44d361-f800-4d79-963c-06bca5a845a1", "value": "latin (language)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "05a6948f-1333-4726-a94f-fae6ba571b86", "value": "http://vocab.getty.edu/aat/300388693"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "e49c071f-3c7a-404b-ad84-eb971bff2801", "value": "The Indo-European language in the Italic group that was originally spoken by small groups of people living along the lower Tiber River, and later spread around the world with the increase of Roman political power The oldest existing example of Latin dates to the 7th century BCE."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1bcdf300-a595-43e5-b17e-fdb8abc37a3f"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "816be7f2-bcb5-4b12-8121-ee5d7678d749", "value": "Refers to the action of effacing, rubbing out, or removing something written, drawn, engraved, or recorded on any media."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "e071910b-3978-49ad-b4a3-bc18bf029d8c", "value": "http://vocab.getty.edu/aat/300053088"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "b66429d5-dbef-4208-8a34-fa4e4661e428", "value": "erasing"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/9266b424-a051-47ce-8743-1b5ae9a20ed7"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c3c3b964-007c-434d-8df9-ac687a3be542"> + <skos:Concept rdf:about="http://localhost:8000/6bea9a27-6b4b-4133-8ad9-105e9fee5dcb"> + <dcterms:identifier xml:lang="en">{"id": "3c42c966-b117-4208-8629-fc67fe601fcc", "value": "http://vocab.getty.edu/aat/300264578"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "0477af66-e956-4c79-bec2-541223ce8b17", "value": "Web pages (documents)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "326060a0-c831-4087-a1f7-e4797c490484", "value": "Hypertext documents of text or images that are accessible via the World Wide Web, hosted on a web site."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "b8297baf-9a4d-45e2-a37e-423cb69cf28e", "value": "cor\u00e9en"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "06eeea4e-6b45-4297-929c-f852eea16251", "value": "Korean (language)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c0c7c231-bf8b-400a-a6d7-e0c45d43961c", "value": "http://vocab.getty.edu/aat/300388633"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "0d24da18-5655-449b-ae73-de8a8d19f802", "value": "Koreanisch"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "3b3f6de4-400e-42fd-9ca8-f41e3d9f7a1f", "value": "Webseite"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "6b328c12-d1da-4c7b-b194-13dfc9959f46", "value": "Hypertextdokument mit Text oder Bildern, das \u00fcber das World Wide Web abrufbar ist und auf einer Website gehostet wird."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0dfb95af-dcd3-4edd-8763-a3939e65f1e7"> - <skos:prefLabel xml:lang="de">{"id": "d313b2d3-3fa4-46d6-91fa-04b3feaa8058", "value": "Vietnamesisch"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "7713588d-99f4-4385-8cd7-cda971d0f832", "value": "vietnamien"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/cbf70ed1-44ea-4079-92b0-2c98834e808c"> + <skos:scopeNote xml:lang="en">{"id": "90f3aa5d-41f3-4d73-9d4e-bb57ca8b18ea", "value": "Individual sides of a leaf, recto or verso; the individual sides of leaves resulting from folding a sheet, as of paper or parchment, whether blank or containing writing, printing, or other matter. Distinguished from a \"folio\" in that a folio is numbered on only the front side."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "e53d1028-e1a2-4550-80f6-a42c8b6d7cba", "value": "pages (components)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "531eb311-8361-4abc-a9e3-38b8af5ef5d1", "value": "Einzelne Seite eines Blattes, Vorderseite oder R\u00fcckseite; auch die einzelne Fl\u00e4chen nach dem Falten eines Blattes, kann aus Papier oder Pergament bestehen, unabh\u00e4ngig ob diese leer, beschrieben oder bedruckt sind. Unterscheidet sich von \"Folio\", da ein Folio nur auf der Vorderseite nummeriert wird."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "99de342e-fc21-4ecd-ade1-5655d1ed71a2", "value": "Seite (Buchbindung)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "222379ee-d360-4193-a43c-8065e3947994", "value": "Vietnamese (language)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "8cb889be-f138-4280-9a45-d7f440e6988b", "value": "http://vocab.getty.edu/aat/300389525"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "b79adab0-582a-4dac-9705-4f90bdb300e0", "value": "http://vocab.getty.edu/aat/300194222"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b9845f81-8de2-43be-a243-b91cc6924cdf"> - <skos:prefLabel xml:lang="de">{"id": "229ad85a-6ef5-4650-943e-583040306409", "value": "Griechisch"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "6f5f694a-dbb5-45d7-95aa-bbfec25f6544", "value": "http://vocab.getty.edu/aat/300387827"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "45c98d6a-e785-4265-bca9-a3b1cc12f894", "value": "Ancient Greek (language)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/5fc4650f-5791-4351-bc52-1c5308eb730e"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "2d441966-a978-4126-b702-aa56fa3a40ad", "value": "grec ancien (jusqu'\u00e0 1453)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "d1c360d8-13ca-4534-a4d6-8d8c7534b37b", "value": "Anmerkung"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "83ff73fb-d29b-409d-8789-9b6e2b134332", "value": "Erg\u00e4nzung, die als Kommentar oder Erkl\u00e4rung hinzugef\u00fcgt wird, wie beispielsweise jene, die einem Titel in einer Bibliografie, einer Leseliste oder einem Katalog beigef\u00fcgt ist und die betreffende Publikation beschreiben, erkl\u00e4ren oder bewerten soll."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "0a8bdb4e-7b42-468a-acb6-8406a88c2d08", "value": "http://vocab.getty.edu/aat/300026100"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "b528083d-16ed-416f-9651-06184b2fde93", "value": "Notes added as comment or explanation, such as those accompanying an entry in a bibliography, reading list, or catalogue intended to describe, explain, or evaluate the publication referred to."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a295c086-134d-4981-be72-94ce18619261", "value": "annotations"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8ead46b7-39b3-4f6a-b9d0-08994a595bb7"> - <skos:prefLabel xml:lang="fr">{"id": "4f4092c7-403e-4848-a02f-3a4e3418f2c1", "value": "danois"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "353e5d50-a634-4334-a786-c7ae03cb03d2", "value": "http://vocab.getty.edu/aat/300388204"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "ca9217eb-0c77-4196-8fd4-b8cb6239070e", "value": "Danish (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "d5087595-8648-454f-bb4c-a09439d32c13", "value": "D\u00e4nisch"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/b655bf98-5a16-4641-8362-c78624d8d171"> + <skos:scopeNote xml:lang="de">{"id": "444c7644-ea1c-4e05-ae89-69fc1d0702e0", "value": "Dokument, der \u00d6ffentlichkeit durch Verkauf oder sonstige Eigentums\u00fcbertragung oder durch Miete, Leasing oder Kredit zug\u00e4nglich."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "0d95a8ef-a598-4c20-9d2e-6725cd7d0273", "value": "publications (documents)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "9da17be2-a7bc-40d9-8fe6-11c2461d3160", "value": "Ver\u00f6ffentlichung"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "4300667c-a62f-437e-ae26-5a57003059b7", "value": "Documents distributed to the public by sale or other transfer of ownership, or by rental, lease, or lending."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "a1dca26c-ef6c-4348-b65e-3ac07f7f5a2e", "value": "http://vocab.getty.edu/aat/300111999"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/c7954ef2-0053-400b-997c-d56a9f64940b"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7dcd9b95-ab41-4fb0-94ba-f6173d2e6e1a"> - <skos:prefLabel xml:lang="en">{"id": "9ff49782-7214-4763-a725-a33002ee9691", "value": "Dutch (language)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/5864a6e2-5d38-42d5-bfc3-e7a4972cebed"> + <skos:prefLabel xml:lang="en">{"id": "58df5d41-8e21-4b51-a8f3-5ec8f44ebd1a", "value": "audiovisual materials"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "d2577757-a558-4fdb-9bb9-589a6966e115", "value": "Nonprint materials, such as slides, transparencies, motion pictures, or filmstrips, that make use of sight and sound to convey information; refers especially to such materials when used for instruction."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "65d4c69e-0f11-4f3c-b26d-adf8c6d112bb", "value": "n\u00e9erlandais"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "dfaea21a-00ed-4be7-b61b-e52b83918ebb", "value": "West Germanic language that is the national language of the Netherlands; it largely developed in the historical province of Holland. Although it is basically the same language that is, with French and German, one of the three official languages of Belgium, for the language as used in Belgium prefer \"Flemish.\""}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "f5daedf3-6534-459c-a177-5531b709171c", "value": "Niederl\u00e4ndisch"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "6529981e-06a0-4592-a6a2-0695206c97bf", "value": "http://vocab.getty.edu/aat/300388256"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "ca316059-1028-40df-8209-4068d0aecf60", "value": "http://vocab.getty.edu/aat/300028045"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "ef81354a-9f8c-4ec3-9826-c796adbeaa45", "value": "http://localhost:8001/9266b424-a051-47ce-8743-1b5ae9a20ed7"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0870ac7d-edd3-4214-ba2b-185396528024"> - <dcterms:identifier xml:lang="en">{"id": "33a585c5-3c4a-434a-9ff9-f96f3f7eadf3", "value": "http://vocab.getty.edu/aat/300389336"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/fc767b12-ec83-49a9-bf4e-dc11d1d63bc9"> + <dcterms:identifier xml:lang="en">{"id": "0d55670e-e4b2-47c5-b869-80ee7f9375ef", "value": "http://vocab.getty.edu/aat/300027202"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "e0570585-907f-4fc8-9353-0e00ef418abc", "value": "Notiz, die bei einer wissenschaftlichen Untersuchung in einer kontrollierten Umgebung verfasst wird."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "45994828-e104-40d9-bd37-55ca3d2a4db2", "value": "Notes made in the course of scientific inquiry conducted in a controlled environment."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "72129da6-dd5e-42d5-9715-25ddd97dbf89", "value": "Labornotiz"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "459b5fe6-8de5-4bbb-b6de-e9c9be9f179d", "value": "Schwedisch"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "6de08f07-8668-469c-8227-7d7571c8bdb8", "value": "su\u00e9dois"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "b2af99bb-41d6-4fcb-b098-5d6aa7f0f1b4", "value": "Swedish (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "bde75ce4-2ba1-4e0a-8842-e584196c91e3", "value": "laboratory notes"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fea87de8-c1e5-4978-aa18-7df19382d7d6"> - <skos:prefLabel xml:lang="de">{"id": "89237d47-e916-4f90-a99d-8e5d448d6b76", "value": "T\u00fcrkisch"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "7618d2a4-a277-4921-8bae-daeca6d43795", "value": "turc"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/c17e82b5-450c-43d4-a66d-b4796532316a"> + <skos:scopeNote xml:lang="de">{"id": "49ecbd22-fab2-41af-abe5-36e87db0c506", "value": "Kurze Angabe \u00fcber eine Tatsache oder ein Erlebnis, niedergeschrieben zur \u00dcberpr\u00fcfung oder als Erinnerungshilfe, oder um jemand anderen zu informieren; schlie\u00dft auch kurze, formlose Briefe mit ein."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "d6fd7371-46f9-48c7-9e71-60f8cc4503ed", "value": "http://vocab.getty.edu/aat/300389470"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "3b1c9e9d-155b-4c43-af8b-4da01949c84d", "value": "Turkish (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "4671dfe5-feba-4e29-9c8c-0325a43ceff5", "value": "notes (documents)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "99603a67-98d2-486f-95e0-a606d4a1cdfc", "value": "Notiz (Dokumentengattung)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "a2d1c888-b49e-450a-b5c8-2e51dcf5e7df", "value": "http://vocab.getty.edu/aat/300027200"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "5144bc06-5845-4339-bfe7-6e21c3a3a459", "value": "note"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "41df376a-da4b-43c2-af43-8804638d6821", "value": "Brief statements of a fact or experience, written down for review, or as an aid to memory, or to inform someone else; also includes short, informal letters."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a1d82c77-ebd6-4215-ab85-2c0b6a68a0e8"> - <skos:prefLabel xml:lang="en">{"id": "c09fcdf0-39c0-47d5-8738-fd80f049547d", "value": "French (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "dda98624-bc29-46a9-96d6-66d541b12c58", "value": "Franz\u00f6sisch"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "8c842ffd-ada8-484d-afad-9bd319ef3a10", "value": "General term for the French language."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "c18b3cbb-6f1d-473d-98b9-a789589c9959", "value": "http://vocab.getty.edu/aat/300388306"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "97a38c7c-41d0-49c6-83c8-c0211fbf9fca", "value": "fran\u00e7ais"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/2c1b54ac-bcba-48bc-975c-108961fe3036"> + <skos:prefLabel xml:lang="en">{"id": "e0ea00fe-7ce1-438e-897a-cf5f0b922509", "value": "monographs"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "faaf33b5-7144-4716-aca1-d691dba29eff", "value": "Separate treatises on a particular subject, typically written expositions of a subject narrow enough in scope to exclude all but a single aspect of the subject, for example, a study of the works of a single artist. In book cataloging, non-serial bibliographic items complete in one part or in a finite number of separate parts."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "47e06234-6423-4742-a564-cb80620f067a", "value": "http://vocab.getty.edu/aat/300060417"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "64250944-7652-48d8-8dc3-f0755145ddf3", "value": "http://localhost:8000/e37e4f70-b839-4127-9489-845946fec971"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/28e25c2d-2a00-440d-8cac-3f357dd737c9"> - <skos:prefLabel xml:lang="fr">{"id": "e2a2135a-f91d-4263-8c4e-077d639c7cfb", "value": "tch\u00e8que"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "7685021f-ec34-4b5b-a39e-bd22c3eb8a84", "value": "Tschechisch"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/a45e32f8-3025-49d7-9ad3-f0f960b4f772"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "8907f61f-eb56-4b64-8de0-e42cdfa40a19", "value": "http://vocab.getty.edu/aat/300388191"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "eae726ea-6793-4f04-975e-f6aa0651b1ac", "value": "Czech (language)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "02614f39-93b4-4939-8398-116fb28abba8", "value": "Records of meetings, conferences, learned societies, or other organizations, usually published, and frequently accompanied by abstracts or reports of papers presented. "}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "e2d86e76-25dc-4f47-a0be-408978d73e04", "value": "actes"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "29d3c99e-04e4-4f21-b614-c20f05eb25f3", "value": "Bericht \u00fcber die Sitzungen einer Konferenz, Gesellschaft oder anderen Organisation, der normalerweise ver\u00f6ffentlicht wird, meist mit Kurzfassungen oder Berichten \u00fcber die gehaltenen Vortr\u00e4ge."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "3569db0e-f4ff-42be-9200-4b5d7727ce86", "value": "Tagungsbericht"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "22c74097-3ae2-4306-96ff-03ce172bb8dd", "value": "proceedings (reports)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "62488c87-b10c-4b67-8c7c-024dbf2d017e", "value": "http://vocab.getty.edu/aat/300027316"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6195ff8c-5970-41b6-9480-e92ce21dc0df"> - <skos:prefLabel xml:lang="de">{"id": "a3fe54fb-9455-4416-8cd5-859671dda964", "value": "Hebr\u00e4isch"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/6f91f3d7-bb19-4d23-9ba4-e18d37825054"> + <dcterms:identifier xml:lang="en">{"id": "47161a67-43e1-445b-9c03-1e180b6f62f1", "value": "http://vocab.getty.edu/aat/300189604"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "42590d37-c580-4278-9081-9bc962e97c47", "value": "The individual leaves of a book or manuscript numbered on the recto only. The two sides of the folio are typically numbered using 'r' for recto, meaning the front or righ-hand page, and 'v' for verso, meaning the back or left-hand side. Reference to a folio is distinguished from reference to a \"page\" in that a page is numbered on both sides."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "f6935403-373b-40c4-bf76-bec518b846cc", "value": "h\u00e9breu"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "4cac01c8-4d62-4d5e-80d0-6bd5836ce283", "value": "http://vocab.getty.edu/aat/300388401"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "3a32f9ff-b6e9-4eed-ba6d-e887865d4158", "value": "Hebrew (language)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "15567cbb-2825-40ec-a4ee-a0efa8455997", "value": "folios (leaves)"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/ac2a0b23-c92f-482e-8f55-292386f66b86"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6d997904-184c-4825-8807-83e2dddb124f"> - <skos:prefLabel xml:lang="en">{"id": "3166aeb8-a8a8-45fe-8fd5-50b0a45950ee", "value": "Japanese (language)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/5a7be6de-f130-472a-931e-635d830be28e"> + <skos:scopeNote xml:lang="en">{"id": "6a4e39df-f702-4832-902b-380a0b33749f", "value": "Periodical publications, particularly those containing scholarly articles or otherwise disseminating information on developments in a particular subject field."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "d2d01373-a03c-4f46-a005-eb7def3bbecc", "value": "http://vocab.getty.edu/aat/300215390"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ba40a930-8995-4a1c-8398-85d337b3b145", "value": "journals (periodicals)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "702d251b-c044-40b0-a961-8bcfaca3d685", "value": "Periodische Ver\u00f6ffentlichung, meistens mit wissenschaftlichen Artikeln oder anderen, zur Verbreitung von Informationen \u00fcber Entwicklungen in bestimmten Fachgebieten bestimmt."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "ffd6d970-d59a-4978-b247-c6b6d324a132", "value": "japonais"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "190296c1-27f8-411e-8f4a-0cd43115b5db", "value": "Japanisch"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "18f17148-8fba-4fd7-94cd-4302ec2f1469", "value": "East Asian language spoken primarily in Japan. Held by many modern scholars to be a member of the Japonic (or Japanese-Ryukyuan) family of languages, while others maintain that it is a language isolate."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "09265a24-1ba7-491d-9770-655a60335d6e", "value": "http://vocab.getty.edu/aat/300388486"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "2bf7eb0d-8baa-4c19-b5c8-68ab0aa993ce", "value": "Zeitschrift"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/38729dbe-6d1c-48ce-bf47-e2a18945600e"> - <skos:prefLabel xml:lang="de">{"id": "e32d8c6d-319a-4382-8c26-06e4afb153bf", "value": "Englisch"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "bf48b2c6-3485-470c-be5d-37e53f76bade", "value": "anglais"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "bc35776b-996f-4fc1-bd25-9f6432c1f349", "value": "English (language)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/f3612d52-0bdb-471d-afec-a3378c25b452"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "6db05732-ad45-4ace-b187-bd624b66e1c0", "value": "West Germanic language of the Indo-European language family that is closely related to Frisian, German, and Dutch (in Belgium called Flemish) languages. It is spoken in England and also used in many varieties throughout the world."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "2c186001-d011-4edc-99c9-8927c09cd325", "value": "http://vocab.getty.edu/aat/300388277"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "0a19915f-4400-45ec-a966-08a58713b010", "value": "sales catalogs"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "56d4229c-6587-45a1-9335-ec92672ae0ea", "value": "Verkaufskatalog"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "94078058-66ac-4482-8147-02259347aaa5", "value": "http://vocab.getty.edu/aat/300026074"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "4f97dadf-4446-41aa-aeec-57ab6bfdc945", "value": "Catalogs that enumerate items that are for sale."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "04724e42-000f-41b2-be5c-4c624bed3c16", "value": "Katalog, in dem Gegenst\u00e4nde aufgelistet sind, die zum Verkauf stehen."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2b43ddad-7ab5-44c8-b943-020f7771de06"> - <skos:prefLabel xml:lang="fr">{"id": "8338c1d8-632f-4df3-8dc3-9acadefbda9d", "value": "portugais"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "4518612f-0b87-44c3-bd19-0d3455046261", "value": "Portugiesisch"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/a480c815-461a-470a-b012-81df75aef74e"> + <dcterms:identifier xml:lang="en">{"id": "c55060f5-6d4a-4629-9785-ce19f36d1c6c", "value": "http://vocab.getty.edu/aat/300311699"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "46d229c5-82c0-413f-be5f-b2083b2e5697", "value": "chapters (layout features)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "c0b8dc76-5899-4d37-8d38-11efac252677", "value": "http://vocab.getty.edu/aat/300389115"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "04e4e15e-3eb6-4285-853e-cd0e532052b5", "value": "Portuguese (language)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a0efe06e-0112-42b8-9b02-7d73caab64ee", "value": "Main divisions or sections of a book, typically designated in some way, such as with a special heading, title, number, or layout."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/825d0d98-cdd9-461e-8e96-609159286bd9"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5ab6901a-1d94-4769-9a8c-3ca83d9aa519"> - <skos:prefLabel xml:lang="en">{"id": "41a2b558-1b71-4af9-a439-46885905d0d9", "value": "Tamil (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "15b24186-9193-4600-87a8-8d5f51f0ad33", "value": "tamoul"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/0b9b05f5-9b5b-44ab-8090-98e195953043"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "ae07e731-8188-4c3a-ba16-ebce0f29b84c", "value": "http://vocab.getty.edu/aat/300389365"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "bb8739f4-b88b-42c5-8c8c-45d7e19d118f", "value": "Tamil"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "40f0b553-9064-4e3a-bcc7-ff1dacfd6af1", "value": "Notiz, h\u00e4ufig in einem Buch, die von Forschern oder Landvermessern niedergeschrieben wird, w\u00e4hrend sie vor Ort sind."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "210c8c03-5878-42bc-8202-85d4c45620a1", "value": "Notes, often in books, kept by researchers or surveying parties while on site."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "6100add2-9586-40f9-9fd9-00dda8e42c04", "value": "note de terrain"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "1eb249f8-9a4d-4014-b28a-88b81151f28f", "value": "Feldnotiz"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "33714b40-9c92-4f2c-b24b-1e1d87bad781", "value": "field notes"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e5443385-a70c-4db7-a2d8-2da74be28ea2", "value": "http://vocab.getty.edu/aat/300027201"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/90426117-4930-4fac-9c26-16aa06c451ac"/> - <skos:narrower rdf:resource="http://localhost:8000/135ccd63-25ca-4e3e-919f-ff09bf062274"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/bdb42273-5581-4554-956f-c8f41c67798d"> - <skos:prefLabel xml:lang="de">{"id": "9f9f51b4-7f77-4bd2-af9e-652ff16c9adc", "value": "Italienisch"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "53416d9d-9e47-4a41-9b6b-10eaeab5d710", "value": "italien"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "adb3492a-4a95-4147-a308-a7af305882bf", "value": "http://vocab.getty.edu/aat/300388474"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "813e4a54-08d3-4f36-bcd7-37eda038991a", "value": "Italian (language)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/6cf9b53f-7e44-4264-8fa4-5d828ff3de72"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "cf81689c-707f-4c72-8b69-64df1988ddf5", "value": "Patent (Regierungsakte)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "040ebc23-1027-48df-96a6-eb1c85f2ebd5", "value": "Grants made by a government to an inventor, assuring the inventor the sole right to make, use, and sell the invention for a certain period of time."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "aefddd04-28c1-4d35-8faf-ff0a8fe6726d", "value": "Das von einer Regierung an einen Erfinder erteilte alleinige Recht, die Erfindung f\u00fcr eine bestimmte Dauer zu produzieren, zu nutzen und zu verkaufen."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "4b92b92b-0354-4589-b436-4e78b07254cd", "value": "http://vocab.getty.edu/aat/300027832"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "31524c6c-d5c6-437d-92d3-c6e773d57b30", "value": "brevets"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "60aa8954-abde-41cf-a8ba-50348acd9e0b", "value": "patents"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ec0f84da-5fff-44d0-a539-ed7099fb75ce"> - <skos:prefLabel xml:lang="de">{"id": "ccfef9f0-1dbd-4dea-a256-8c3dc6b9afd7", "value": "Spanisch"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/4c10d2b0-92c1-4752-a991-c6c051c3d9c2"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "dea62be7-780c-43e9-970f-3081679336f2", "value": "http://vocab.getty.edu/aat/300389311"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "d568bd89-3fe6-430c-8305-45dde2700ccc", "value": "Refers broadly to the Romance language that developed from Vulgar Latin with contributions from the pre-Roman languages that were spoken in the territory of the Astures, an ancient tribe of the Iberian peninsula. It is now spoken in Spain and as a first language by around 360 million people worldwide. Given that the Castilian dialect is the source from which modern standard Spanish developed, this language overall may be called \"Castilian\"; however, for the dialect spoken in Castile and elsewhere in northern and central Spain, use \"Castilian Spanish.\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "69e7c74b-5b13-4bbc-a417-5dd04718c7b5", "value": "Spanish (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "f29694d4-eb9a-404b-91e4-050aefdf9f70", "value": "espagnol"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "d6308bac-fa4b-4302-90a1-76ea53da0d56", "value": "Includes offers by one person or organization to another of terms and conditions with reference to some work or undertaking and plans or schemes put forward for consideration, discussion, or adoption."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "506f95f1-51cb-4a42-9e19-19a00b380814", "value": "proposals"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "2748fba7-c1ab-4a05-abef-4ea10aba9ab8", "value": "http://vocab.getty.edu/aat/300027261"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5bb6ff4f-33c1-4804-9768-e1aa876d5150"> - <skos:prefLabel xml:lang="en">{"id": "dcfb76cd-dd1e-4d45-bb0a-d0f9de3e1b8f", "value": "undetermined (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "655dd09c-57bb-411a-a961-628fa4ee5de5", "value": "Nicht zu entscheiden"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/58800805-b0f0-4a6b-947a-8b98fec4c33a"> + <dcterms:identifier xml:lang="en">{"id": "a83a985b-e660-4bc4-9132-28f1fbaad751", "value": "http://vocab.getty.edu/aat/300027168"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "45886c57-b3ed-4d8e-84e1-95f5ea73a88f", "value": "http://vocab.getty.edu/aat/300389645"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "8bd96cde-6628-43b5-86d3-f4b56603a286", "value": "ind\u00e9termin\u00e9e"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "acdabea3-1717-42ba-ab24-de1a1089b791", "value": "Offizielle Liste von Eintr\u00e4gen mit Informationen, die als wichtig genug erachtet werden, um genau und in formeller Weise verzeichnet zu werden, in der Regel in numerischer oder chronologischer Reihenfolge."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "6541653f-2080-49f3-9e69-713f58e60a04", "value": "registers (lists)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "57b320ce-015b-4e64-8109-bfba1497b827", "value": "Register (list)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "5f645555-21b1-482c-bbbf-7bdb2e06bc0b", "value": "Official lists of entries of any information considered sufficiently important to be exactly and formally recorded, typically maintained in numerical or chronological order in a regular manner."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "c5665fb4-f127-4f4d-ae52-2a7e60951e1f", "value": "Languages"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/86d75104-eaba-4116-9201-0db856830aa4"> - <skos:prefLabel xml:lang="de">{"id": "f80ddf36-25b5-46ab-a74f-64d4ea03089d", "value": "Thail\u00e4ndisch"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a92f61d8-0e5a-41d9-8986-a059bbfe9020", "value": "http://vocab.getty.edu/aat/300389405"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/0784c9bd-32c4-424f-a8cd-143b6f05703e"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "50092f86-4c8f-4172-b3d6-6e414f2b6e90", "value": "Thai (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "6f0cf6f9-2ac6-479b-99da-07d812447560", "value": "tha\u00ef"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "042b2384-de4b-4171-8647-607beb61ef88", "value": "surveys (documents)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "de914028-6ae7-4f1f-bd14-34a6afbe7593", "value": "Documentation of examinations or inspections conducted in order to achieve a comprehensive view, as of a place, a group of related items, or to ascertain condition or value. For detailed lists of items on hand, or of items in a given category, use \"inventories.\" For sets of questions submitted to a number of persons to obtain information, use \"questionnaires.\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "c31df325-7a50-4308-9fa7-1e4dfad48650", "value": "http://vocab.getty.edu/aat/300226986"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6d302f17-decd-4f33-9606-c1df25e306ee"> - <skos:prefLabel xml:lang="en">{"id": "22755b7f-bb95-4d63-963e-9ba8d46343eb", "value": "Russian (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "4919eee1-3657-4a8b-b315-52f50b3d235a", "value": "russe"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "28ddc051-fbbe-4031-8b3e-fe7745d76e6e", "value": "Russisch"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "f67a1a8c-13b5-47bd-beb8-dc1d2dc77a2d", "value": "http://vocab.getty.edu/aat/300389168"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/b42fd6eb-b396-4ae0-926c-09f9a516f873"> + <skos:prefLabel xml:lang="de">{"id": "f0ef2c80-a5f0-40fe-a826-adbd3ec60971", "value": "Ausstellungskatalog"}</skos:prefLabel> + <skos:prefLabel xml:lang="en-us">{"id": "b5e2684b-ba38-4b3d-b8ac-642d87ef196c", "value": "exhibition catalogs"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "55857c84-1d9b-422f-9c02-acad60fd4356", "value": "Druckwerk, das die in einer Ausstellung gezeigten Werke dokumentiert."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "59cd3b2d-4bd5-4a0e-beda-cb25da051f3e", "value": "Publications that document the works displayed in an exhibition."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "f664cf1b-5a1f-4fc5-a412-bbf745fef031", "value": "http://vocab.getty.edu/aat/300026096"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7894309c-220d-4a2f-910a-8f412095f9f7"> - <skos:prefLabel xml:lang="de">{"id": "30fad719-d53e-46b7-871d-7e23130c1a79", "value": "Arabisch"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/d1cfab03-ce07-4800-9b89-d6129b602228"> + <skos:scopeNote xml:lang="de">{"id": "7b6a1386-df5d-4ade-bc4b-d967996aede9", "value": "Sammlung von beschriebenen oder bedruckten Bl\u00e4ttern, die zu einem Buch gebunden wurde. Die Bezeichnung kann sich auch auf den einzeln gebundenen Teil oder Abschnitt eines schriftlichen Werks beziehen, das in zwei oder mehr Teilen erscheint, jeder in einem separaten Einband; im Allgemeinen sind mehrere B\u00e4nde desselben Werks oder derselben Reihe \u00e4hnlich gro\u00df und haben einen \u00e4hnlichen Einband."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "58dff838-c170-4755-9f09-dcea453c65ad", "value": "Arabic (language)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "97bf8263-541b-44b8-971d-296d134036dc", "value": "http://vocab.getty.edu/aat/300387843"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "9f8664aa-3938-4c1b-8131-a7cebfae8759", "value": "arabe"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c7faa03e-49f7-41e2-bca6-b03a64bd144f", "value": "http://vocab.getty.edu/aat/300265632"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "0788c3fc-1f2f-4b14-921b-96eaf939c87a", "value": "volumes (documents by form)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "60bb21b3-db86-4541-95f8-bf4c3ec1cb9e", "value": "Band (document by form)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "0edad61e-e50b-4338-8ad8-dd4ec49d559f", "value": "Objects comprising sheets of paper, vellum, papyrus, or another material that are bound together. Volumes may include printed books, manuscripts, sketchbooks, or albums. Where the parts of a historical volume have been dispersed, records for the individual sheets may be linked as a historical volume for research purposes. Given that an album contains individual drawings, prints, or other art works that have been mounted, the drawings, etc. in an album may be cataloged as items and linked to the record for the volume. For intact books, manuscripts, and sketchbooks, the illuminations or other parts may be better cataloged as components rather than items. The term may also refer to a separately bound portion or division of a written work or series that is divided into two or more sections, each contained in a separate binding; generally, multiple volumes of the same work or series are of similar dimensions and contained in similar bindings. "}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a5e9ba49-12ce-4440-9db9-484c8519c785"> - <skos:prefLabel xml:lang="fr">{"id": "04f1992b-3c22-401c-a222-a233db8cebc0", "value": "hindi"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "c3daa156-3cdd-487a-85eb-60f98dfc4a6d", "value": "Hindi"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/d3a32755-c1ab-4e04-9a3b-9bc1b20583b1"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "5dd7cac0-475d-4cb1-bf25-6472352e61a6", "value": "Hindi (language)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "0199ad64-f063-4c6b-a677-d7c8e625655f", "value": "http://vocab.getty.edu/aat/300388412"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "a8985417-e18c-4491-8f11-748a4f100d79", "value": "auction catalogs"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "d78df7cb-a017-4bf9-a9b7-79ffaba4a935", "value": "A listing of items, including works of art, manuscripts, books, or other items, that are for sale by auction."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "14efcb68-3643-487e-ba65-b710cc628381", "value": "http://vocab.getty.edu/aat/300026068"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:prefLabel xml:lang="en-us">{"id": "065fa5fb-a33e-4bca-a85f-42216c8d85f0", "value": "Document Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ffc79063-a21e-46b3-9441-0c8dac5b6161"> + <skos:Concept rdf:about="http://localhost:8000/a9cda9b2-9379-4626-9ed7-d6ef44bf13b5"> + <skos:prefLabel xml:lang="en">{"id": "8e117897-d7ef-484f-af9c-90c96a91f7d1", "value": "administrative reports"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6de1e9b3-7eca-4380-b8cc-61113c575350", "value": "http://vocab.getty.edu/aat/300027268"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "b39810b5-55c8-4147-a829-5fb3e983a2f0", "value": "compte rendu administratif"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "a1384def-81c1-4132-b8ea-03f8a9de546c", "value": "Verwaltungsberichte"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a1d413e4-cddf-48db-badf-efcf08c38a25", "value": "Official or formal records outlining administrative details, or events sucha as functions, proceedings, or investigations."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "b785f139-8b23-41f4-8e40-4f785ca15f11", "value": "Polish (language)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "0c1b9942-f3e3-48c0-a3f8-7e6bfcb788f5", "value": "Polnisch"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "6e9ac348-1552-4e1f-834e-c13c90df73e3", "value": "http://vocab.getty.edu/aat/300389109"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "72601ba3-d5bd-4be4-8910-9067162d2c1a", "value": "polonais"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/7e6c493b-6434-4b3a-9513-02df44b78d24"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/6c400200-8763-49ad-9928-8135a918b5d5"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "13655cdc-2643-417f-b542-c1272d78ed75", "value": "Hungarian"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "09707166-b782-41b3-822e-d3a166826de3", "value": "http://vocab.getty.edu/aat/300111195"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "c8c73e88-c3de-42f2-b135-8854a073d93f", "value": "Refers to the culture of the modern nation of Hungary, or in general to the cultures that have occupied the area of modern Hungary in central Europe. More broadly, it may refer to the culture of the Magyars, a Finno-Ugric people who settled in the middle basin of the Danube River in the late ninth century CE."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/2ebb9a11-2d7d-47de-90da-e728635cb76b"> - <skos:prefLabel xml:lang="en">{"id": "058d34d1-8a7a-444d-87e1-5eec0222f9f7", "value": "columns (layout features)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "3a037fd1-151c-4c58-8ba0-ee9e8a3b3be1", "value": "http://vocab.getty.edu/aat/300200012"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "74f715d0-9bbc-4574-bb8d-37ba08fd014d", "value": "Vertical lists of items or vertical sections into which the text of a manuscript or printed page are divided, separated by rules or blank spaces. For texts written from side to side across the page, use \"long line format.\""}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"> - <skos:scopeNote xml:lang="en">{"id": "78e2eb4d-af8c-4310-905e-77869e8ea9ce", "value": "Documents comprising texts that are relatively short in length, sometimes but not always abbreviated versions of longer texts."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/ca88ef39-c76c-412a-bf9b-e9c8e3e89e08"> + <skos:scopeNote xml:lang="en">{"id": "a6558455-2ad7-46ea-81b0-9febd41a225b", "value": "The fundamental units of length in the metric system (International Systems of Units, SI), equivalent to approximately 39.37 inches. Defined as the distance travelled by light in a vacuum in 1/299,792,458 second. Historically, the meter was defined by the French Academy of Sciences in 1791 as 1/10,000,000 of the quadrant of the Earth\u2019s circumference from the North Pole through Paris to the equator. "}</skos:scopeNote> + <skos:prefLabel xml:lang="en-us">{"id": "35f1ddbc-651f-4f16-9d71-d2a9e01144cd", "value": "meters (units for distance)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "72202a9f-1551-4cbc-9c7a-73c02321f3ea", "value": "brief text"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "0cd39704-9d55-4576-8652-f2c45e4d0828", "value": "http://vocab.getty.edu/aat/300418049"}</dcterms:identifier> - <arches:sortorder xml:lang="en-us">{"id": "eb83103e-1eb4-4724-a00e-34ec70d5e4f5", "value": "6"}</arches:sortorder> + <dcterms:identifier xml:lang="en">{"id": "4b5194a1-f4df-4d72-a14e-c0c080b843e6", "value": "http://vocab.getty.edu/aat/300379099"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/04823117-0f18-42b6-b42e-f9f51bde4c16"> - <skos:prefLabel xml:lang="en">{"id": "72082ff7-c840-46c4-8dd7-3c600d244b35", "value": "Name Types - Generic"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/5f400d39-3b6b-4b8a-939b-4e49787c7444"/> - <dcterms:identifier xml:lang="en">{"id": "c07e88e4-9d1d-413f-b633-387f585b9170", "value": "http://localhost:8000/04823117-0f18-42b6-b42e-f9f51bde4c16"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/999692fa-3c5f-4d4a-8efa-44e792c45592"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ae171d08-208e-48b4-ab41-43c34a2e2559"> - <skos:scopeNote xml:lang="en">{"id": "2ddcf206-8135-4c3d-81b8-f9b490b05806", "value": "Titles that vary from the primary title. Distinguished from \"alternative titles.\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "07a02341-a872-4b8e-a01a-d55169071636", "value": "http://vocab.getty.edu/aat/300417227"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/a71fd54f-7765-4908-ae89-0a4593d3cf69"> + <skos:scopeNote xml:lang="en">{"id": "cb926adf-0de3-4247-ae5c-afbabc337ef1", "value": "Listing items on hand."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "1a0dbab5-aab1-4d4e-a4f5-9267ab382fa2", "value": "alternate titles"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "b9f997f7-4b11-4bbb-8fd6-1fd984fd92be", "value": "inventorying"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "000cc7ce-adc4-4896-a609-452ba5b057b3", "value": "http://vocab.getty.edu/aat/300077506"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/18610abd-e0e5-48bb-9a7a-3830d75755d0"> - <dcterms:identifier xml:lang="en">{"id": "5843b79a-1ebb-487b-8bea-06a42e28e3bc", "value": "http://localhost:8000/18610abd-e0e5-48bb-9a7a-3830d75755d0"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/bb623e4d-e3e0-4e81-9213-7e80ab00e389"> + <skos:narrower rdf:resource="http://localhost:8000/8889c48f-504f-410d-8eb1-737f062d85f3"/> + <skos:narrower rdf:resource="http://localhost:8000/3774b3a4-96bc-4643-b260-c0fce1127bcf"/> + <skos:narrower rdf:resource="http://localhost:8000/e26bc6aa-28c3-4462-8f15-5015ed64c3fe"/> + <skos:narrower rdf:resource="http://localhost:8000/f5b916fc-e129-4391-9545-26871ddf3975"/> + <skos:prefLabel xml:lang="en">{"id": "ca43d853-04f4-4db9-adf8-7f3d1c8436c7", "value": "Visual Work Creation Event"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/72006c28-5bee-4c31-9b64-64d06ca3ab8b"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "7d069762-bd96-44b8-afc8-4761389105c5", "value": "primary title"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/fe6ad26d-48c2-407d-b438-7859c5f1c301"/> + <skos:narrower rdf:resource="http://localhost:8000/efd96a8d-da15-4a59-a7e4-0e08a6e5c1c4"/> + <skos:narrower rdf:resource="http://localhost:8000/6ecfc5d9-6082-465b-8294-670ad9c9270e"/> + <skos:narrower rdf:resource="http://localhost:8000/f56d47fa-10d9-4e37-a009-9b77a96e3f50"/> + <dcterms:identifier xml:lang="en">{"id": "1509799e-74b9-4125-8d2e-d64615cc8eed", "value": "http://localhost:8000/bb623e4d-e3e0-4e81-9213-7e80ab00e389"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1afc6b14-2401-49f1-b2b1-33290fcbccfa"> - <skos:scopeNote xml:lang="en">{"id": "dc598be8-30d1-4190-90fa-0945f5f0bfac", "value": "Thermoplastic polyester used in glazing, including bullet- and explosion-resistant laminates."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "3b85b805-75e1-45b4-a564-262e99a2b9b2", "value": "polycarbonate"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "b2078cef-10e9-4919-bdf5-b15e943efa38", "value": "http://vocab.getty.edu/aat/300014473"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "253b4c46-c767-4630-a844-0685d9747477", "value": "polycarbonate"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "92b2b3c9-3a8f-41ed-bc78-6536cecadf5e", "value": "http://vocab.getty.edu/aat/300027200"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "5e89d4e0-392c-4ad4-bd02-e5254e8a4740", "value": "note"}</skos:prefLabel> - <skos:altLabel xml:lang="de">{"id": "7b2be39c-a566-47fa-9da0-fbdc6b6595c9", "value": "Notiz (Dokumentengattung)"}</skos:altLabel> - <skos:scopeNote xml:lang="en">{"id": "84657b06-b204-46c0-b603-2672fb9ece97", "value": "Brief statements of a fact or experience, written down for review, or as an aid to memory, or to inform someone else; also includes short, informal letters."}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "5bc68a4a-6e25-49e4-9e41-7aee5406311d", "value": "Kurze Angabe \u00fcber eine Tatsache oder ein Erlebnis, niedergeschrieben zur \u00dcberpr\u00fcfung oder als Erinnerungshilfe, oder um jemand anderen zu informieren; schlie\u00dft auch kurze, formlose Briefe mit ein."}</skos:scopeNote> - <arches:sortorder xml:lang="en-us">{"id": "82321f00-84db-4855-87b5-af64c6dd1a2d", "value": "1"}</arches:sortorder> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5bc20189-e804-45e2-bb65-b8d6c0ceda3b"> - <skos:prefLabel xml:lang="en-us">{"id": "9ea45e65-2f28-4c29-9bb2-54d94c1c32fc", "value": "Getty Digital Object Repository (DOR) Integer Identifier (ID)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "f3c89e35-334c-454d-868c-0ffdcdca9029", "value": "https://data.getty.edu/museum/ontology/linked-data/dor-id"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1dfca74c-101d-4089-b553-d03156750e19"> - <skos:prefLabel xml:lang="de">{"id": "2f4cf26f-4b5d-4815-90b8-08d1b234faa1", "value": "Foto"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "07a047e6-fd03-4827-b3d1-107ed0313777", "value": "photographs"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "88a4ca5e-8612-4efd-bee9-30503811934e", "value": "photographies"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "3ad5947c-34a1-4edb-9e4e-c82b9ddaaf58", "value": "http://vocab.getty.edu/aat/300046300"}</dcterms:identifier> - <skos:scopeNote xml:lang="en"><![CDATA[{"id": "8eae90d7-c5fb-40cd-9862-e7ee91e164d8", "value": "Refers to still images produced from radiation-sensitive materials (sensitive to light, electron beams, or nuclear radiation), generally by means of the chemical action of light on a sensitive film, paper, glass, or metal. Photographs may be positive or negative, opaque or transparent. The concept does not include reproductive prints of documents and technical drawings, for which descriptors found under \"<reprographic copies>\" are more appropriate. The concept may include photographs made by digital means."}]]></skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c418eb94-c435-4f87-b7fc-122dd776bec7"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/41d71deb-c14b-46b2-b174-074c9abd5e3f"> - <dcterms:identifier xml:lang="en">{"id": "c2d64cdd-9cee-4621-b926-d102392ba0ce", "value": "http://localhost:8000/41d71deb-c14b-46b2-b174-074c9abd5e3f"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "f0fcac66-a454-4652-a67c-07569753bffd", "value": "informal title"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/9954b805-ada9-45c5-a9aa-56d8481f34fc"> + <skos:prefLabel xml:lang="en">{"id": "b8cd9e8b-86d9-46fb-855b-e6e867e56a51", "value": "collections management"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6c09f54e-096a-43dd-bd54-508cc07af1c7", "value": "http://vocab.getty.edu/aat/300137819"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "9ae68081-8fae-4247-87e0-e4aae2580945", "value": "Sammlungsverwaltung"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "0a8796d0-a89d-4136-8615-e6f15fce87f0", "value": "gestion des collections"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b2d560b4-9d6c-4f42-af8a-6f5f0eac0f32", "value": "General term for the gathering, organization, description, provision of access, storage, and overall maintenance of a collection of objects, documents, or other materials."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "79500bd3-940c-4781-bd39-6a94537868a6", "value": "Object Name Types"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "67356382-4911-4b01-b5f5-34c6931ab9d6", "value": "Creation Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/934467ee-a5a4-4bdf-b377-0ffa5e51c009"> - <dcterms:identifier xml:lang="en">{"id": "6c2ff425-2502-452d-b6c5-6d5275ed9cf5", "value": "http://vocab.getty.edu/aat/300404672"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "b8d1993b-1fb9-43df-9efd-02d7dcd3418f", "value": "inverted terms"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/bbb0bdd9-3524-4ae7-85ea-410ebeb90b68"> + <skos:narrower rdf:resource="http://localhost:8000/2f7aa8c7-8162-41a2-a742-92103bc838e2"/> + <skos:narrower rdf:resource="http://localhost:8000/2d8ddf38-37c9-4bd9-8bb1-75ac2b7f13d4"/> + <skos:narrower rdf:resource="http://localhost:8000/62fdcff5-5abc-4477-a916-bbae886f38af"/> + <skos:narrower rdf:resource="http://localhost:8000/541c4e7c-8a87-4604-804a-76b85b4948cd"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "fb738dc0-2a0a-46e4-8ab3-d73f09e4aa38", "value": "Multiple-word terms or names that are arranged in the form used in back-of-book indexing or other similar situations. Examples are Wren, Christopher and buttresses, flying. Distinguished from natural order terms or names."}</skos:scopeNote> + <skos:narrower rdf:resource="http://localhost:8000/0e099c0e-663a-4330-8597-d39eb9fda10a"/> + <skos:narrower rdf:resource="http://localhost:8000/95d56de2-7c29-4a03-b0b1-4f8d5ea3aaed"/> + <skos:prefLabel xml:lang="en">{"id": "843acd0c-fdb9-4fd2-8a77-0fe6d46851fd", "value": "Creation Technique"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "fc8530d1-de7f-410c-bc78-159400983d7e", "value": "http://localhost:8000/bbb0bdd9-3524-4ae7-85ea-410ebeb90b68"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/6f88b717-088e-48cd-9c4a-f3c08c5ed8fd"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/48b2dd36-2148-4ce6-a00a-40be229da73d"> + <skos:Concept rdf:about="http://localhost:8000/c9c98daf-a9c9-449e-aeb7-d7fb33973251"> + <skos:scopeNote xml:lang="en">{"id": "d8d21afb-38fd-4833-94ff-f6cd92d5f9dc", "value": "Converting, sound, motion pictures, images, or other analog data to binary form to be stored or altered with a computer."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "d690f5b9-1d0e-4263-9982-2d03d4331040", "value": "formal title"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "01fe738c-2df4-4202-8726-afe454651dce", "value": "http://localhost:8000/48b2dd36-2148-4ce6-a00a-40be229da73d"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "95f3ff6c-0e8b-44d3-b356-9a052bd35bd6", "value": "digitizing"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "799b1e38-168f-4b5c-a1f1-8706ad7ea41f", "value": "http://vocab.getty.edu/aat/300202383"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "af65ffbd-07ee-491f-9baa-8d328b9977b0", "value": "http://localhost:8000/999692fa-3c5f-4d4a-8efa-44e792c45592"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/09c5997e-86f4-4689-bc6e-169e299acb9b"> - <dcterms:identifier xml:lang="en">{"id": "f3fc2d80-0d0f-4123-a211-b8aec724db80", "value": "http://localhost:8000/09c5997e-86f4-4689-bc6e-169e299acb9b"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/43091db4-2651-4a75-b69e-f97bb2a80ee2"> + <skos:prefLabel xml:lang="en">{"id": "9144aef3-841d-4653-b1eb-56f295db98da", "value": "curating"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "e7d4b0bf-f37a-4af3-aa0b-4f63152ef9f6", "value": "primary name"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "bfe1297a-3e6a-42df-95e4-8b688ecf514a", "value": "Superintending or managing the collections, exhibitions, research activities, and personnel of a museum, art gallery, zoo, or other place of exhibit; also, the superintending or managing of a single collection or subject of study in such an institution."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "ba1984f8-2abb-41c3-a5c0-3d211e66b0a6", "value": "http://vocab.getty.edu/aat/300054277"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/05a7e094-5bd7-4b2a-9cf2-98d43866e8f7"> - <skos:prefLabel xml:lang="de">{"id": "90576d5b-1046-465b-9be3-24af7bab6f5c", "value": "Titel (Teildokument)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/f43bfa7f-e3de-4364-9735-0459b8ac5b8b"> + <dcterms:identifier xml:lang="en">{"id": "5293e87e-45c3-4c8d-a351-439cd762b450", "value": "http://vocab.getty.edu/aat/300054636"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "f9ee451d-e7e9-41c4-a59a-94faa6e8eca6", "value": "Creating and manipulating data in machine-readable form by means of computers, including inputting, storage, conversion, editing, and printing."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "2fe420ca-37b3-4ddc-9f6f-58e7bbdbe282", "value": "data processing"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "50ae1ee8-8911-4c6c-b580-ea817aa0c086", "value": "http://vocab.getty.edu/aat/300195168"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "8ece3d7b-352e-4e6b-abb4-ec8caa8431e9", "value": "titles (partial documents)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "1c1f1f79-3a20-47ca-90dd-8eb995ae9a21", "value": "Words, phrases, sentences, single characters, sequences of characters, or other distinguishing names appearing on or in an item, naming the work for purposes of identification and reference. Examples are descriptive headings in books or legal documents. For titles as a general concept, particularly when assigned to a work, including works of art, but not necessarily appearing on it, prefer \"titles (general, names).\""}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "afd18477-3281-4d22-b7e6-3ae18cb6dcf0", "value": "Charakteristischer Name, der einem einzelnen Werk, einer Gruppe oder Reihe von Werken gegeben wird, gilt f\u00fcr alle Medien."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ba5bbea8-8984-41ff-9b29-f4069003edbf"> - <dcterms:identifier xml:lang="en">{"id": "393b89a0-38f2-42df-8153-604b94f6e4bd", "value": "http://vocab.getty.edu/aat/300404669"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "0fa02b3a-eb9b-4e6c-a0fd-3e948795df10", "value": "display information"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "6174b05d-b3bd-4b6f-825d-ff082445e9a0", "value": "Information that is formatted and presented in a form that is easily legible and understood by users, often allowing expressions of uncertainty and nuance. Display information is often used in conjunction with \"indexing information.\""}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/265d5422-709a-4e7b-bc0a-88e4a87608f7"> + <skos:scopeNote xml:lang="en">{"id": "310703b0-7428-4989-af0c-37c08d8ef002", "value": "Recording the entry of items into a collection in the order of acquisition."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "c30c8618-d9bd-4cab-a934-668ad92b1969", "value": "accessioning (collections management)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0f51587f-aaa2-4fa3-a7ea-54c937ffcc56", "value": "http://vocab.getty.edu/aat/300054626"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/75e09bc6-2208-41c0-bcb1-a740c58782e6"> - <skos:prefLabel xml:lang="en-us">{"id": "eee61848-cfea-45de-8d42-3c7d630e3a34", "value": "gallery label"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/6f24e63e-3e66-4232-a7ff-bfe95082e2d8"> + <skos:prefLabel xml:lang="en">{"id": "2a665185-d407-44c1-a8cc-481885f2bed1", "value": "collecting"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "f389fe1a-b6bd-4c5f-84c8-d58611434142", "value": "Gathering things in order to retain them."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "463b06b5-b2ed-4e66-bbf7-6a79a158ca5d", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/titles/gallery-label"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "80202f95-294d-49b9-b387-75a638969ea5", "value": "http://vocab.getty.edu/aat/300077121"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "7aaa3ac7-3d1c-49da-90a2-395cc4913350", "value": "http://localhost:8001/c418eb94-c435-4f87-b7fc-122dd776bec7"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/3e105447-bca4-4819-a674-e0773ce6df8e"> - <skos:prefLabel xml:lang="en">{"id": "2c7f9340-67db-4a9b-9ba9-e7ff293051e0", "value": "collaboration"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "e97792d1-cf45-4238-9526-ee319597e8df", "value": "Refers to any venture in which individuals or organizations work together, especially in an intellectual endeavor."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "9edff51d-0753-479b-bdfe-283e11717f8e", "value": "http://vocab.getty.edu/aat/300379517"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1421293e-ad4d-4166-a199-d076622b2596"> - <skos:scopeNote xml:lang="en">{"id": "cc28beca-4882-4760-adc1-89f0db122020", "value": "In the context of personal names, particularly in western culture, a first name is the name given to a person at birth or an early period of life, historically at baptism and historically chosen to signify or honor a saint, an earlier family member, or a personal characteristic. In modern western usage, a first name is combined with a family name or other names to distinguish between multiple people having the same first name. In other traditions, such as Islamic tradition, the first name may be a religious name or another sort of name."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "fa5eeca3-1869-4a18-943b-7a9d9fce7bd8", "value": "first names"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "c1421cce-f90b-4d6c-90d4-45a8e683e3f2", "value": "http://vocab.getty.edu/aat/300404651"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7db49ae3-80dd-4c2e-83f3-842446415f13"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "9b0ead1c-19a0-4172-b7cb-8a06d321aec9", "value": "catalogue number"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "98f295cd-7c59-4a8b-a9b4-6ca36a5a58ce", "value": "http://localhost:8000/7db49ae3-80dd-4c2e-83f3-842446415f13"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/fa579432-0d81-4d5e-a721-01015f8fbfe5"> - <dcterms:identifier xml:lang="en">{"id": "7f83b58c-481a-44fe-a658-e20b40debf2b", "value": "http://vocab.getty.edu/aat/300404679"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "67fa9f61-f296-43f9-952d-39097d24741f", "value": "stage names"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "e38ca71b-103b-4407-86d1-7ffdad3b4134", "value": "Regarding personal names, assumed names used by actors and other performers rather than their real names."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/29fb8dc0-61e3-4d99-a705-bf5ce8a7c61d"> - <dcterms:identifier xml:lang="en">{"id": "56d0aafe-c1a0-4751-b26a-00264206675f", "value": "http://localhost:8000/29fb8dc0-61e3-4d99-a705-bf5ce8a7c61d"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ac3c260d-a77a-4ebb-8281-43282e53f0d2"> - <dcterms:identifier xml:lang="en">{"id": "e147fc06-53a3-4ab3-bb81-6d668e409f46", "value": "http://vocab.getty.edu/aat/300435688"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "ad7fa9a8-7ac9-4311-975b-d5936eb46af2", "value": "telephone numbers"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "c82bd30c-cdc7-432f-80a3-9c0e24427cf7", "value": "Identifying numbers assigned to a telephone or group of telephones; the numbers are dialled in order to make a connection to telephonic devices."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/aa549433-7624-4575-8e27-b6e0a9503cad"> + <skos:prefLabel xml:lang="en">{"id": "a0045115-04e2-4711-b9f3-32da5e099331", "value": "making"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "39deceb9-ed31-46a1-a21b-9c12a665a09f", "value": "http://vocab.getty.edu/aat/300404387"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "3aac9463-0864-40b8-afe3-6d935691c808", "value": "The activities surrounding the production or conception of a work, particularly a work of visual art, literary art, or performing arts."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/725a5deb-3ed2-4b66-9979-8590ad6a6d6e"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/9a0fb1f3-0d1b-480a-ae3d-382d5bc4256c"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d6d36746-2a09-495c-817e-18ceca57a25a"> - <skos:prefLabel xml:lang="en">{"id": "ca1ff4ee-2b37-457b-b4d6-043acdec4de2", "value": "street addresses"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "2903f0ec-c296-4c44-a7c9-ea370d2a9a98", "value": "http://vocab.getty.edu/aat/300386983"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/535e70a2-5dca-4796-bbd4-35a4f4b4d33f"> + <skos:prefLabel xml:lang="en">{"id": "08e1d7ca-78eb-4742-a502-0aae0e0ae29f", "value": "3D Printer"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "5249ee49-01d3-4f70-9f2e-a31f3e383a50", "value": "Particulars of the place where a person, organization, building, or monument can be found on a street or other thoroughfare; typically consisting of a number, street name, the name of the administrative area (a town or district). May also include a postcode, as the street address may also be the \"mailing address.\""}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "c6f8f0ac-ef81-4eb0-9143-a464e2f8366c", "value": "imprimante 3d"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c0977b74-5528-49a1-8715-4364cd404336", "value": "Machines used to create a physical object from a three-dimensional digital model, typically by laying down thin layers of a material in succession."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "bdc1e761-bd37-46c6-ab06-dd66f8dab5c6", "value": "http://vocab.getty.edu/aat/300391466"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c1046e53-a3c7-4e1e-b9a3-5051b5fb2e33"> + <skos:Concept rdf:about="http://localhost:8000/d5e68b90-83be-4307-8583-f7e5e939832c"> + <dcterms:identifier xml:lang="en">{"id": "8ad9de47-4296-4b75-89a0-dcf3052f0755", "value": "http://vocab.getty.edu/aat/300444123"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "061b1f2a-c2c7-470b-ba55-d8eed3711a3f", "value": "3D digital microscopes"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "67866409-b50a-4244-bf25-2602dfa7320a", "value": "Digital microscopes that combine three-dimensional image capture, image stitching, and modelling data. These scan an object through multiple focal planes and compiles this data into a three-dimensional image."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "c25cd78a-fe2e-4f00-b28a-c83c0e1363a4", "value": "http://vocab.getty.edu/aat/300435686"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "50941146-8c4c-410b-8abf-ddffacf876da", "value": "Strings of characters that uniquely identify a location on the internet or other network to which email can be sent; the email address is typically a point of contact for a particular individual or organization."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "e421b5ff-3586-4616-985f-e13056465946", "value": "email addresses"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "b8692280-85c2-4b85-9b5a-83ff1d15db74", "value": "Contact Point"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/89d67de0-53ea-464e-8a28-448e6c267d87"> - <skos:scopeNote xml:lang="en">{"id": "b575cc0f-70f2-4e88-bfc4-6716320b214d", "value": "Phone numbers connected to a fax machine, fax service, or fax server, rather than to a voice telephonic device."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "495c7519-9de8-4e2a-8c62-5f319314dd81", "value": "fax numbers"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/8331ba52-065a-4ab7-8883-f6cfc14e8a08"> + <skos:narrower rdf:resource="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"/> + <skos:prefLabel xml:lang="de">{"id": "16f695a1-a1c7-4910-910e-42ab2567201b", "value": "Chromatometer"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "a0d108f1-dab3-4dd3-92ac-c3940a5c21fc", "value": "chromatom\u00e8tres"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "e2ade6a2-5832-49fc-9d22-e3e8fe999f80", "value": "Ger\u00e4t zur Messung der Farbwahrnehmung."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "9549813d-dba5-42a8-a784-e497c3e906dc", "value": "chromatometers"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "64761326-8609-4b30-a453-5cb4667c3f66", "value": "http://vocab.getty.edu/aat/300435689"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "bf76aa36-a79f-4a85-9a31-935927e50cce", "value": "http://vocab.getty.edu/aat/300195965"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "12be9e28-0916-4fd2-8750-1c4b8ae8f4c2", "value": "Instruments for measuring color perception."}</skos:scopeNote> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/be56d99a-4be6-4e2e-ab58-2432d8a77e46"> - <skos:scopeNote xml:lang="en">{"id": "8449ef7c-4e25-459d-932f-9f5219b4db38", "value": "Distinguishing identification numbers or codes assigned to either a plot of land or a batch of items, such as at an auction."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "c8339308-930a-4fd2-821e-b550eafdfa45", "value": "Lot Number"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "8f42229f-35e7-4a52-9ac8-935ec96b4a6b", "value": "http://vocab.getty.edu/aat/300404628"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/fbdf6081-0cfa-4594-aa96-1453e6b703d7"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d00363dc-a126-48da-98e8-1433b6bb86bc", "value": "The action of joining two discontinuous lengths of material together into one, as in weaving together two ends of rope, making a joint in magnetic tape or film, or lapping two pieces of timber into a continuous length."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "9adfd4a7-1b56-4949-bca3-dabbeedfd06a", "value": "splicing"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "5e02e039-fc0e-4f26-9b96-22194eb0d943", "value": "http://vocab.getty.edu/aat/300053025"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/662b53c0-2e26-4b87-a6d0-109b7f611e05"> - <skos:scopeNote xml:lang="de">{"id": "3ec0243a-f1e6-4f68-8c49-655667578774", "value": "Elektronisch gespeicherter, strukturierter Datensatz, insbesondere solcher mit integrierter Software, die ihn auf vielf\u00e4ltige Weise verf\u00fcgbar macht. Eine Datenbank wird verwendet, um Informationen zu speichern, sie abzufragen und wiederaufzufinden, besteht typischerweise aus einer Sammlung logisch zusammenh\u00e4ngender Informationen, die als Einheit verarbeitet, in maschinenlesbarer Form gespeichert und als Datens\u00e4tze organisiert und strukturiert werden, welche in einem standardisierten Format vorliegen, um mit Hilfe eines Computers schnelles Durchsuchen und Finden zu erm\u00f6glichen."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "bab94d12-f866-4c31-bddc-5862fc78ac86", "value": "databases"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "5b8e0762-1651-4c74-a9aa-8ec0cb4864c9", "value": "Structured sets of data held in computer storage, especially those that incorporate software to make them accessible in a variety of ways. A database is used to store, query, and retrieve information, typically comprising a logical collection of interrelated information that is managed as a unit, stored in machine-readable form, and organized and structured as records that are presented in a standardized format in order to allow rapid search and retrieval by a computer."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "33e50774-a077-48b4-8656-711efc2f39c1", "value": "Datenbank"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "85ff890b-9a31-4c47-b442-fb0e4add816f", "value": "http://vocab.getty.edu/aat/300028543"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "2a4eb0ae-03e6-4e89-8559-d219c758942e", "value": "base de donn\u00e9es"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/254161a9-5063-42e7-a718-05e1b6baebea"> - <skos:scopeNote xml:lang="en">{"id": "27eb60a4-f2a5-4b45-a0d2-7e64bed66f23", "value": "Electromagnetic radiation with wavelength shorter than that of visible light and longer than that of x-rays."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "cb7b3294-d1ff-4243-9ab7-61c8eeeccf7d", "value": "http://vocab.getty.edu/aat/300056056"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "818371ea-2e7c-4bcc-b9eb-1abfe2c3fcd4", "value": "ultraviolet radiation"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/edcb51e8-6c01-440f-8ace-d707c352148a"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "0fb1e517-0f69-4e1a-991b-580802ea85e9", "value": "collecting"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "06a03c9d-78ff-4e77-bef1-b9efa442c7b5", "value": "Gathering things in order to retain them."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "becf0ac4-e253-4a2a-903b-1f694b93a19c", "value": "http://vocab.getty.edu/aat/300077121"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b391c967-2a6b-4972-9289-17130cf96557"> - <dcterms:identifier xml:lang="en">{"id": "1d393d34-0f71-4b07-b4d4-27b50ec00df3", "value": "http://vocab.getty.edu/aat/300056240"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "f729dd3e-c92c-4ebc-95d1-7e765c5606eb", "value": "weight (heaviness attribute)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "cd2bc895-fbeb-4552-a7d1-b998e67f27d3", "value": "Measurement of the relative heaviness of an object or other body; the force with which a body is attracted toward the earth or a celestial body by gravity."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/371aae9e-044a-475b-8933-2275236232df"> - <dcterms:identifier xml:lang="en">{"id": "0afe13ba-78f5-4097-9228-a0f57b8f1428", "value": "http://vocab.getty.edu/aat/300404626"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "56324fd0-d7f3-413c-b80f-ae0f85bdb0d4", "value": "Numeric, alphanumeric, or other codes assigned to a thing, concept, person, or other entity in order identify it and distinguish it from other similar entities. Often a sequence of integers or characters arbitrarily devised."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "a86f2460-7af8-4735-b9d1-ff9396d372ef", "value": "identification numbers"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/f3fed7aa-eae6-41f6-aa0f-b889d84c0552"> - <skos:scopeNote xml:lang="en">{"id": "a6d579e1-962b-433b-95c1-784cc840d501", "value": "Method of acquiring property with the expectation that the recipient will sell, rent, or loan this property to a third party, for the mutual benefit of the consignor and consignee."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "337707d2-0716-4573-b527-66a1dcfc4d6a", "value": "http://vocab.getty.edu/aat/300417650"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "2bdd5f51-87dc-4d05-b5b7-2943cdd12c8a", "value": "consignment (method of acquisition)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b2a36d1a-3f90-4b23-a35d-837482891be1"> - <dcterms:identifier xml:lang="en">{"id": "5d3dc27a-003a-47bc-8163-042e7183df6b", "value": "http://vocab.getty.edu/aat/300265124"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "896b973d-f31c-4f0c-b19d-1425563bb4fa", "value": "pinhole photography"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "71a50074-3ae8-485b-9ba4-14110b189839", "value": "Refers to the practice of making photographs with a pinhole camera. Light-sensitive film or paper is exposed through a tiny, lensless aperture: the resulting images have very great depth of field, but lack critical sharpness."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7b5c17fd-f3ab-4745-85f9-88a6c30e0842"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "2a23e9c1-56c4-4b15-8cc8-d0ad2adcbf7a", "value": "http://vocab.getty.edu/aat/300424602"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "e2692741-5276-40e4-8a20-7b8dc81dab9c", "value": "document num\u00e9rique"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/21121df1-9699-469d-924c-50f575c1ba83"> - <skos:prefLabel xml:lang="en">{"id": "174573b6-6ebf-4c68-907e-8cc8fa6e23bd", "value": "Web pages (documents)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "83021bad-6ca3-43a3-a39a-c47c9534abcc", "value": "Webseite"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "4d6d75c9-f626-4ba2-b5d2-10333d701179", "value": "Hypertextdokument mit Text oder Bildern, das \u00fcber das World Wide Web abrufbar ist und auf einer Website gehostet wird."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "699496ba-f839-4994-805e-ac97a474b536", "value": "http://vocab.getty.edu/aat/300264578"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "c5ab7c38-3bd4-4967-b80f-3cee29619e7a", "value": "Hypertext documents of text or images that are accessible via the World Wide Web, hosted on a web site."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/d9de4418-386a-4563-a212-ed3994ef8fbe"> - <skos:scopeNote xml:lang="en">{"id": "1773b715-8ed8-4793-92b1-a8b1b3b069e4", "value": "The placing of consecutive numbers one on each folio of a book; may also refer to the overall configuration of the numbering in the book."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "ba21a6bd-7c51-45bb-b8b9-1555ec4d5eb3", "value": "foliation"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "92ed2ca2-3fdd-464f-894c-157601d17267", "value": "http://vocab.getty.edu/aat/300200662"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0c67ce57-dcd1-4cac-8e4c-899acacfe7d9"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/25e3f334-ac84-49ff-abdb-85959a16cb8a"> - <skos:scopeNote xml:lang="en">{"id": "17762714-8d78-4934-ba0d-ee4935165ca6", "value": "Institutions that collect and maintain works of art displayed for public benefit."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/fe766393-d00d-463e-b706-4ca9ad772b7d"> + <skos:scopeNote xml:lang="en">{"id": "46e5d09a-6085-4b39-af90-84fd02cfc7b3", "value": "Instruments that measure color by comparing a given color to a standard color, a scale of colors, or certain combinations of primary colors."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "0d448925-2c00-4c84-b0f5-73af5df37f47", "value": "http://vocab.getty.edu/aat/300196006"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "c85c1363-2c13-48d5-a99c-a7b665fc9773", "value": "colorimeters"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "7c409a84-7708-4eb9-bddc-f5dab7fc4949", "value": "Ger\u00e4t zur Farbmessung, das eine gegebene Farbe mit einer Standardfarbe, einer Farbskala oder bestimmten Kombinationen von Prim\u00e4rfarben vergleicht."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "dff9771b-c07c-4579-b34b-65d4c25ba901", "value": "colorim\u00e8tre"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "ed69c1ff-2910-4522-ac06-f2dcfc27f963", "value": "Kolorimeter"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "6db830e4-ed31-4c06-a197-c3847522e668", "value": "http://vocab.getty.edu/aat/300312302"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "c566ab4c-02d1-4c08-bca1-249898f0b668", "value": "Kunstmuseum (institution)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "e0b3ff53-33b2-4bd9-9a60-0ea50005595e", "value": "art museums (institutions)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "e93f0773-b7f8-409f-8c04-36be5e7def19", "value": "Einrichtung, die Kunstwerke im \u00f6ffentlichen Interesse sammelt und bewahrt."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "973fb04d-ca87-4df5-b028-5c16ee68fec0", "value": "http://localhost:8000/0c67ce57-dcd1-4cac-8e4c-899acacfe7d9"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5d471d02-cb7e-48bf-8fba-c367ffde2c07"> - <dcterms:identifier xml:lang="en">{"id": "0e17c0b6-0053-4a9c-abe8-7a1fc6fc7227", "value": "http://vocab.getty.edu/aat/300000771"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/0d9d0957-e2eb-4ba1-a848-a6e8231ab70d"> + <skos:prefLabel xml:lang="en">{"id": "3f795521-18fd-4911-90a0-dfc1bb07a739", "value": "microscopes"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "68d7651d-4f49-4ad7-addf-a65e760a486e", "value": "Mikroskop"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/3044ebe4-8d5f-446a-b618-5f39fbfc2364"/> + <skos:narrower rdf:resource="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"/> + <skos:scopeNote xml:lang="en">{"id": "23daceef-601b-4513-b7fd-3f6bcadb0d31", "value": "Optical instruments consisting of a lens or combination of lenses that allow the viewing of objects that are too small to be seen with the naked, unaided eye. The term may also be used for various types of instruments that use a stream of electrons (electron microscope), electromagnetic radiation (x-ray microscope), or other means other than light and lenses to magnify images of small objects."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "328cb19d-693c-4c41-8a18-e507973214be", "value": "http://vocab.getty.edu/aat/300024594"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "c56f1837-19e2-4919-9e50-e72d2565df9b", "value": "The domains or territories of counts. In current usage, usually refers to particular divisions that have been made to an area for administrative, judicial, and political purposes. In Britain, counties are defined by various official methods, and serve as the most important divisional units in the country. In the United States, counties are the political and administrative divisions below the state and above the city; a few U.S. states call such divisions \"districts\" or \"parishes\" rather than \"counties.\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "90a88521-b5b2-4190-a546-f2b3d3324315", "value": "counties"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "d11c2c4f-fb2b-4af1-a9ac-96d11789813f", "value": "Optisches Ger\u00e4t, das aus einer Linse oder einer Kombination von Linsen besteht, mit dessen Hilfe sich Objekte betrachten lassen, die zu klein f\u00fcr das blo\u00dfe Auge sind. Zudem werden auch andere Ger\u00e4tetypen so bezeichnet, die einen Elektronenstrom (Elektronenmikroskop), elektro-magnetische Strahlung (R\u00f6ntgenmikroskop) oder andere Hilfsmittel als Licht und Linsen einsetzen, um das Abbild von kleinen Gegenst\u00e4nden zu vergr\u00f6\u00dfern."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "838557c3-ac6a-4bbd-864c-6c57cff3df2b", "value": "microscope"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/599b2119-6e98-430b-8ae6-61bcdce15a47"/> - <skos:prefLabel xml:lang="en">{"id": "20521491-63a3-4985-9174-b0fd0c5bf9f0", "value": "Place Type"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/b759fb17-8868-45f9-889a-c4550b324e7c"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/365b90c8-adb8-4ce0-9896-db786023f0fc"> - <skos:prefLabel xml:lang="en">{"id": "a80f6f10-0bfa-4e24-bd2f-a184b415fbcc", "value": "institutes (buildings)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "b708eecc-1f49-4a4c-85e8-401b0066f30c", "value": "Buildings housing organizations, societies, or regular meetings for the promotion of a particular literary, scientific, artistic, professional, or educational endeavor that is labeled an \"institute.\""}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "dc79d904-ab3b-4d54-b953-76c4c77eba4a", "value": "Geb\u00e4ude, in dem eine Organisation oder Gesellschaft untergebracht ist oder in dem regelm\u00e4\u00dfig Treffen zur F\u00f6rderung einer speziellen literarischen, wissenschaftlichen, k\u00fcnstlerischen, fachgerechten oder p\u00e4dagogischen Aufgabe veranstaltet werden, die ein \"Institut\" kennzeichnet."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "47575bc7-cab2-4495-98e2-5d684a8e677a", "value": "Institut (Geb\u00e4ude)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/dfc9614b-86ea-4e07-bf9a-caa703058cee"> + <skos:prefLabel xml:lang="en">{"id": "ca179864-e673-4fae-a647-5366e4fd4cd6", "value": "sensors"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "807f9aa8-29e7-4dc9-b365-49652f391159", "value": "http://vocab.getty.edu/aat/300312291"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "ac7f923f-fdf3-4b45-81d4-37b334e5c7ff", "value": "http://vocab.getty.edu/aat/300379784"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "47944c87-c8f1-43c4-bc77-33103a4815dc", "value": "A device which operates as a feedback control system, emitting a signal that measures or detects a physical stimulus such as heat or motion to which it responds. "}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/ecb492a0-ece2-44cc-be2f-2773ba314d0d"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8af67f6d-3f1b-4313-9668-d3969a0c5469"> - <dcterms:identifier xml:lang="en">{"id": "884093dc-78b3-4af5-ac74-41dd97d5dc3c", "value": "http://vocab.getty.edu/aat/300070186"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/5435fb76-946f-414d-ad14-57a6b552c5d2"> + <skos:prefLabel xml:lang="de">{"id": "7fd4cde3-4b38-4b38-bb5f-24a57bcf9b70", "value": "Laser"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "1d147ab2-83ad-4e4a-839a-ae4dcd8d738d", "value": "Devices that generate electromagnetic radiation in the ultraviolet, visible, or infrared spectrum, in the form of a very narrow continuous or intermittent beam. Originally an acronym for \"light amplification by stimulated emission of radiation;\" the first functional laser was built by Theodore H. Maiman (1927-2007), and demonstrated in 1960. Lasers have multiple applications: they are used as components in information retrieval and transmission devices and systems, cutting, measuring, and medical tools, and as entertainment devices."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "ca0e0ceb-4d47-47dc-a717-06d6c4aa1d3f", "value": "Ger\u00e4t zur Erzeugung permanenter oder intermittierender elektromagnetischer Erzeugung eines d\u00fcnnen Lichtstrahls im ultravioletten, im sichtbaren oder im infraroten Bereich des Spektrums. \"Laser\" ist ein Akronym f\u00fcr \u201elight amplification by stimulated emission of radiation\"\" (Lichtverst\u00e4rkung durch stimulierte Emission von Strahlung). Das erste funktionale Laser-Ger\u00e4t wurde von Theodore H. Maiman (1927-2007) konstruiert und im Jahr 1960 vorgestellt. Laser werden in vielen Bereichen eingesetzt, als Komponenten f\u00fcr den Abruf oder die Wiedergewinnung elektronischer Informationen, in der Produktion zum Schneiden oder Messen, als medizinisches Werkzeug oder in der Unterhaltungselektronik."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "3d42cde5-d710-4ae9-95d7-d12902ffa845", "value": "The works produced by an artist or composer regarded collectively. For the collective body of works by a writer, use \"corpora.\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "fddb8dc5-5b3d-48a3-a06a-64bbe10d82b0", "value": "oeuvre"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "d8708d04-89cb-4df7-b1ba-79b77d338c06", "value": "lasers (optical instruments)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "59cd6593-3dd3-4f08-8f18-d756ee242b4d", "value": "http://vocab.getty.edu/aat/300024548"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b8bff485-6f60-45ea-a9bc-32861ade7861"> - <skos:scopeNote xml:lang="en">{"id": "1fd7db53-efbd-4504-b842-8442551c350a", "value": "In archival description, subordinate groups or subdivisions of a group; archival groups that are parts of larger groups."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "47a37a65-8061-4180-aac7-cf344d9c682e", "value": "subgroups (archival divisions)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "b7e2604a-3623-460f-9674-f11d046d0234", "value": "http://vocab.getty.edu/aat/300404023"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/26472e1f-7f73-4205-84e8-28c40b8e36ec"> + <dcterms:identifier xml:lang="en">{"id": "8e8fb533-6183-479c-a483-d91256a19f48", "value": "http://vocab.getty.edu/aat/300195893"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7e31ec7d-075a-446e-9481-fcdc0247cde6", "value": "calorimeters"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "80827c9a-9071-4494-932c-fa6b3594b2e6", "value": "calorim\u00e8tre"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="de">{"id": "c7eee12d-4b9d-4f6a-bbf4-67e82345d700", "value": "Ger\u00e4t zum Messen von W\u00e4rmemengen, wie beispielsweise Verbrennungsw\u00e4rme, der spezifischen W\u00e4rme oder der bei chemischen Prozessen wie dem Wechsel von Aggregatzust\u00e4nden entstehenden W\u00e4rme."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "3b37bf07-415e-4922-ba1b-322b59eb506b", "value": "Instruments for measuring heat quantities, such as the heat of combustion, specific heat, or vital heat in such processes as chemical reactions or changes of state."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "a407f7c0-4b36-495a-9fbf-982dd3e395bd", "value": "Kalorimeter"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/67ee8af0-c9a0-4e1d-8f2b-19b35fcb57e6"> - <dcterms:identifier xml:lang="en">{"id": "6076718b-7827-4511-a2e9-9dc2057ba223", "value": "http://vocab.getty.edu/aat/300311990"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "c00099fd-33c6-42b0-98b0-ca97b95478b4", "value": "special collections"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/61dbd5a2-79a4-43f3-8100-9e4c59aefa53"> + <skos:prefLabel xml:lang="en">{"id": "1d25db87-cac2-4670-8af0-a903e9aab523", "value": "scalpels"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "63ed9915-cb33-44b3-b370-0182446a2d07", "value": "scalpel"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "ef4d349c-e44d-417a-8465-cc428c3a2f73", "value": "http://vocab.getty.edu/aat/300262233"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "4009ca0d-7a19-4663-b937-996f56d6d70c", "value": "Kleines, in der Regel gerades Messer mit d\u00fcnner Klinge, manchmal auch mit austauschbaren Klingen, f\u00fcr pr\u00e4zises Schneiden oder vorsichtiges Entfernen eines Materials von einem anderen verwendet."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "06cd803b-e3ae-4dff-86a2-691310a354ad", "value": "Small, thin-bladed, usually straight knives, sometimes with changeable blades, used for precise cutting or delicate removal of one material from another."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "afab06ac-b68d-42c1-84ff-4830937dbb7c", "value": "Collections of library materials separated from the general collection because they are rare and valuable materials, such as prints and drawings, or they are of a certain form, subject, period, etc."}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "887c2f18-f41c-4516-92bb-571b6c23a491", "value": "Sammlung, die in einer Bibliothek vom allgemeinen Bestand gesondert aufbewahrt wird, weil es sich entweder um seltenes und besonders wertvolles Material wie beispielsweise Drucke und Zeichnungen oder um ein spezielles Sammelgebiet (Thema, Periode, Medienform etc.) handelt."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "2a517d84-5c34-4f15-a49e-19f4a2408ad9", "value": "Sondersammlung (Sammlung)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "337a3164-6849-44bf-8be1-5282a4dbdccd", "value": "Skalpell"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/90dbeb41-afa5-4e24-ba2c-bbc04779130d"> - <skos:prefLabel xml:lang="en">{"id": "34f4d0f6-b418-4062-9892-2e36f81c91e0", "value": "print groupings"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/b2af20c9-e820-4db2-ad65-3744a4202d2d"> + <skos:scopeNote xml:lang="de">{"id": "eac99aae-d37b-4b45-9b2b-24b066f3571b", "value": "Optisches Ger\u00e4t zur Messung der Strahlungsintensit\u00e4ten bei verschiedenen Wellenl\u00e4ngen oder der Richtungsablenkung durch beispielsweise ein lichtbrechendes Prisma."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "051e34e4-f311-42a9-a544-a0343478c159", "value": "spectrometers"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ff4a378d-f4a1-4cb8-b696-31b187c88889", "value": "Optical devices for measuring radiant intensities at various wavelengths or the deviation of refracted rays, as from the angles of prisms."}</skos:scopeNote> + <skos:narrower rdf:resource="http://localhost:8000/d29562a6-93e2-409e-9bb4-bcc58077113f"/> + <skos:narrower rdf:resource="http://localhost:8000/e3193f72-3a4c-4d54-8294-6a1af433a886"/> + <skos:narrower rdf:resource="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"/> + <skos:prefLabel xml:lang="de">{"id": "a2291891-74e9-47c9-bc85-703a6499709e", "value": "Spektrometer"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "f813b556-80dc-4ab1-8f48-f3ed4520f3fd", "value": "spectrom\u00e8tre"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/8201eb9f-7936-4220-8403-074ce3e9ea48"/> + <skos:narrower rdf:resource="http://localhost:8000/3c4df3ee-bf83-4b3e-b2d1-0dc42baf6088"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "2226053c-5586-40a0-bfd3-efbca0cd9373", "value": "Prints collected and grouped together, and that are usually related in theme."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "af80e3ed-e4f8-44ae-988f-5b0a66bfeb54", "value": "http://vocab.getty.edu/aat/300189630"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "fb9fc1b5-46c2-4f51-af0e-12a7d374e49b", "value": "http://vocab.getty.edu/aat/300203450"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c0029e45-bd2d-42b5-b2a4-77b9d1219159"> - <dcterms:identifier xml:lang="en">{"id": "0e521a68-3b6e-4184-b546-41339e999286", "value": "http://vocab.getty.edu/aat/300411912"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/13485eec-f4aa-456a-8250-71526797597d"> + <skos:prefLabel xml:lang="de">{"id": "89b631ba-f316-4cb5-aaf4-faa2aec422a6", "value": "Massenspektrometer"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "2ebc6abb-98d9-4e3e-b92b-71f39341e0e9", "value": "spectrom\u00e8tre de masse"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "57f2cb6d-86a4-4b10-b74d-7d835463567a", "value": "Collections, usually but not necessarily held by a public institution, that are made available for access by members of the public. The earliest recorded instance of a public body receiving a private art collection occurs in the 16th century, when the Grimani family gave their collection to the Venetian republic. For collections in private hands that are not available to the public, use \"private collections.\" "}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "38691c7e-4309-4337-838f-7244babd839e", "value": "public collections"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ad191450-3c74-4226-97b8-9790a6783126", "value": "Mass spectroscopes that identify and record the kinds and intensities of particles in a given substance."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "3e017e1b-67cd-4b3a-acc0-e403e1bdcb92", "value": "mass spectrometers"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"/> + <skos:scopeNote xml:lang="de">{"id": "d7cc0dc5-8463-4550-a3f1-7844e33b928b", "value": "Massenspektroskop, das die Arten und Intensit\u00e4ten von Partikeln in einer vorhandenen Substanz erkennt und aufzeichnet."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "61ce0aa0-a30e-4f3a-a9b1-e9a5c7120921", "value": "http://vocab.getty.edu/aat/300198980"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "7feffbf0-f644-4955-87ca-e57675c8e664", "value": "http://localhost:8000/ecb492a0-ece2-44cc-be2f-2773ba314d0d"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "2dec3908-35b3-4fe5-a12e-992d3bc34981", "value": "http://localhost:8000/9a0fb1f3-0d1b-480a-ae3d-382d5bc4256c"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "89fcc5d8-37ae-4f1a-a4ad-0007c8aa0113", "value": "Instrument Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fe2241bd-9fa0-463b-aa69-f26aca86f3ee"> + <skos:Concept rdf:about="http://localhost:8000/7962e30a-76e0-4eee-b85b-58c8c1a75141"> + <skos:scopeNote xml:lang="de">{"id": "5e63bcb2-b809-4f23-9fdb-e224586d0380", "value": "Ger\u00e4t, das auf verschiedene Weise den Brechungsindex von Stoffen misst."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "86f9489a-ac4a-4505-9e52-9f159738de1c", "value": "r\u00e9fractom\u00e8tre"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "57963d9b-3149-4e2c-8bf0-0c08f48bebc4", "value": "Bestandteil (Objekt)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "3f0b1afc-66d1-470e-bbe5-4494b73f16a7", "value": "Bestandteil von Objekten oder Strukturen."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "a6c2a176-323e-42b1-a589-64f6dfc58be2", "value": "Constituent parts of a larger object. A component differs from an item in that the item can stand alone as an independent work but the component typically cannot or does not stand alone. Examples are a panel of a polyptych or a discrete architectural component such as a dome."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "21257c37-5166-42c7-ac88-9abe3c58b9ee", "value": "http://vocab.getty.edu/aat/300241583"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "52a5d486-7cb2-4369-b0b1-2fec4f5ffdbf", "value": "components (objects parts)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "49091bdf-4f7c-4edc-8453-4187a2e5c6fa", "value": "Instruments used to measure the index of refraction of substances in any of several ways."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "f21df62a-afc0-4c7c-85d8-c758670cdc75", "value": "http://vocab.getty.edu/aat/300201594"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "5dd0fa25-325c-43da-bc2b-bce6887cc4fd", "value": "refractometers"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "8806c48f-d8c4-4d0b-bc13-b76df7afc02d", "value": "Refraktometer"}</skos:prefLabel> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/3774b3a4-96bc-4643-b260-c0fce1127bcf"> + <skos:scopeNote xml:lang="en">{"id": "a78871cc-fffe-4e5b-8bc2-0bebc16ceab8", "value": "Refers to the process of making still images appear to move, particularly by the technique of photographing drawings or objects in progressive stages of performing an action, so that movement is simulated when the images are projected as a series in quick succession."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "d985c00c-c330-42e9-8207-17bcaa944673", "value": "http://vocab.getty.edu/aat/300053160"}</dcterms:identifier> + <skos:prefLabel xml:lang="pt">{"id": "18ec2c0d-926f-4832-ab59-aa19790f6a7a", "value": "anima\u00e7\u00e3o"}</skos:prefLabel> + <skos:scopeNote xml:lang="pt">{"id": "f5442e5f-1086-41d8-9383-c65d7035f8d7", "value": "Refere-se ao processo de fazer com que as imagens paradas pare\u00e7am se mover, principalmente pela t\u00e9cnica de fotografar desenhos ou objetos em est\u00e1gios progressivos de execu\u00e7\u00e3o de uma a\u00e7\u00e3o, para que o movimento seja simulado quando as imagens s\u00e3o projetadas como uma s\u00e9rie em r\u00e1pida sucess\u00e3o.Refers to the process of making still images appear to move, particularly by the technique of photographing drawings or objects in progressive stages of performing an action, so that movement is simulated when the images are projected as a series in quick succession."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "c0ba7b3f-30c8-4c4c-b6ce-c3398e33051f", "value": "animation (process)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/fbdf6081-0cfa-4594-aa96-1453e6b703d7"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "5e02e039-fc0e-4f26-9b96-22194eb0d943", "value": "http://vocab.getty.edu/aat/300053025"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "d00363dc-a126-48da-98e8-1433b6bb86bc", "value": "The action of joining two discontinuous lengths of material together into one, as in weaving together two ends of rope, making a joint in magnetic tape or film, or lapping two pieces of timber into a continuous length."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "9adfd4a7-1b56-4949-bca3-dabbeedfd06a", "value": "splicing"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/3787d26c-11a1-447c-8a71-74b862714f5f"> + <skos:prefLabel xml:lang="de">{"id": "18f48dae-5f56-49d9-819a-9274b9fcd0fd", "value": "Fundkomplex (Objektgruppe)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "465c38c4-a7f4-4258-972d-46d7d59f8b0b", "value": "assemblages (archaeological artifacts)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "85ab8c52-68f6-4f82-a965-2b23caf9f795", "value": "Bezieht sich auf eine Ansammlung arch\u00e4ologischer Fundst\u00fccke, die zusammen gefunden wurden, entweder in einer Schicht, einem Arbeitsbereich oder einer Fundstelle, ungeachtet des Werkstoffes oder der Typologie."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "65695d8b-dec1-4de5-b509-b673a9e4b6e7", "value": "http://vocab.getty.edu/aat/300256847"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "f1606529-6e3c-466b-a89c-fceaa6bacf68", "value": "Refers to groups of archaeological artifacts found in association with each other, as from one level, activity area, or site, regardless of their material or type. "}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e257b6bf-0e30-495e-8cce-308328449649"> + <skos:scopeNote xml:lang="de">{"id": "e9dbcd58-72d0-4341-91d9-e189fd78693f", "value": "Druckgraphik, die geschaffen wurde, um als Kopie eines Gem\u00e4ldes oder einer Zeichnung eines anderen K\u00fcnstlers zu dienen, besonders in Europa vom 17. bis zum 19. Jahrhundert popul\u00e4r. Der Druck ist als Reproduktionsgraphik aufzufassen, wenn der Hauptzweck war, k\u00fcnstlerisches Erbe festzuhalten, auch wenn die pers\u00f6nliche Handschrift des Graphikers sich in kleinem Umfang behauptet hat. Der Begriff ist gew\u00f6hnlich Drucken vorbehalten, die andere zweidimensionale Kunstwerke reproduzieren; jedoch gelegentlich wird er auch in Bezug auf Drucke gebraucht, die Skulpturen oder Kunsthandwerk darstellen, wenn die vorrangige Absicht des Graphikers war, die originalen Kunstwerke f\u00fcr ein Massenpublikum festzuhalten. Drucke, die Architektur wiedergeben, werden nicht als Reproduktionsgraphik angesehen. Drucke, auf denen ein anderes Kunstwerk beil\u00e4ufig als Teil eines gr\u00f6\u00dferen Motivs dargestellt ist, sind keine Reproduktionsgraphik. Reproduktionsgraphiken werden gesch\u00e4tzt, weil sie die Verbreitung, Rezeption und Geschichtsschreibung von Originalwerken anschaulich machen. Sie waren in Europa vom 17. bis zum fr\u00fchen 19. Jahrhundert popul\u00e4r und kamen mit der Erfindung der Fotografie aus der Mode."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "1668515e-c743-4951-a7b7-3d3ec59c21b1", "value": "reproductive prints"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "7fb06efd-a1d1-402f-be38-e1dea503d68c", "value": "Prints created to serve as copies of a painting or drawing by another artist, particularly popular in 17th- to 19th-century Europe. The print is considered a reproductive print if the primary intention was to record artistic heritage, even if the personality of the printmaker has been asserted to a small extent. The term is usually reserved for prints that reproduce another two-dimensional art work; however, occasionally it is also used to refer to prints that portray sculpture or decorative arts, if the printmaker\u2019s primary intention was to record the original art works for a mass audience. Prints depicting architecture are not considered reproductive prints. Prints in which another art work is incidentally depicted as part of a larger subject are not reproductive prints. Reproductive prints are valued because they map the dissemination, reception, and historiography of original works. They were popular in Europe from the 17th through early 19th century, and fell out of fashion with the invention of photography."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "3b8514f9-20f0-4bd4-bbda-0d1302639ebb", "value": "Reproduktionsgrafik"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "2d3421ee-d686-4cff-abd8-b979a897ad2a", "value": "http://vocab.getty.edu/aat/300041569"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/c0561406-3cd4-414d-9a64-d75abf6570be"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "5dc5c14a-61bd-4dce-bcce-5d9dda49f363", "value": "street addresses"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "53bc61cf-daa1-43f7-90b1-bdd5340f57f2", "value": "Particulars of the place where a person, organization, building, or monument can be found on a street or other thoroughfare; typically consisting of a number, street name, the name of the administrative area (a town or district), and often a postcode."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "d4a6cc7e-04a8-42af-85e2-56540ec3a53b", "value": "http://vocab.getty.edu/aat/300386983"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/5627a014-3495-4d24-9543-21a577adaaaf"> + <skos:scopeNote xml:lang="en">{"id": "6d5bb7f8-ebce-4927-8082-d0417eafc90d", "value": "In bibliography, 10- or 13-digit number assigned before publication to a book or edition, which identifies the work\u2019s national, geographic, language, or other convenient group and its publisher, title, edition, and volume number."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "401b2f1d-aa2d-4877-b446-e3aff5bd850d", "value": "http://vocab.getty.edu/aat/300417443"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7b7431b6-7097-4757-ba9b-ad550e014a2e", "value": "ISBN"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/0d8ce64c-f83c-4994-bac5-21b33ae4055e"> + <skos:narrower rdf:resource="http://localhost:8000/e37e4f70-b839-4127-9489-845946fec971"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/759cca44-5219-4074-beda-214a81c201b0"> + <skos:Concept rdf:about="http://localhost:8000/0bcbfb86-1397-4c6b-a39c-5cc44427da1b"> + <skos:narrower rdf:resource="http://localhost:8000/102d6dc8-5a56-418e-afbf-799398a37ba8"/> + <dcterms:identifier xml:lang="en">{"id": "3275ca4c-f72e-4c0e-9223-3ba939b6376f", "value": "http://localhost:8001/0bcbfb86-1397-4c6b-a39c-5cc44427da1b"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "c8459b61-f670-4009-8348-7f719e536f78", "value": "sets (groups)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "df330848-baea-4f05-8d18-3c76bf490b18", "value": "Wird in Bezug auf eine Gruppe von Gegenst\u00e4nden verwendet, die zusammen benutzt oder betrachtet werden soll."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "e6241b43-94ff-4e4f-8d47-f0f41d9a0591", "value": "http://vocab.getty.edu/aat/300133146"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "4923980b-30ab-425b-936b-2c91702a8b3f", "value": "Set (Objektgruppe)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "0e02be5b-f3b6-4929-b444-f420c427b791", "value": "Assemblies of items that the creator intended to be kept or seen together, cuch as a tea set, a desk set, or a pair of terrestrial and celestial globes. A set differs from a collection in that it is typically smaller and it was intended by the creator to be grouped together. It is useful to catalog the set as a whole when the items in the set will not be cataloged separately or when there are characteristics of the whole set that may not be apparent in the individual records for the parts. "}</skos:scopeNote> + <skos:narrower rdf:resource="http://localhost:8000/2ebb9a11-2d7d-47de-90da-e728635cb76b"/> + <skos:narrower rdf:resource="http://localhost:8000/dd91e772-2e37-4e47-8306-a678ce7fd10c"/> + <skos:prefLabel xml:lang="en-us">{"id": "7bb5979f-1179-45e0-8c6a-38fd2011c8fc", "value": "Document Part Types"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/c5382a52-2102-4105-b96d-ddf6217d1a02"/> + <dcterms:identifier xml:lang="en">{"id": "e3c09db9-bc18-40b8-8813-b75f99ede85c", "value": "http://localhost:8000/0d8ce64c-f83c-4994-bac5-21b33ae4055e"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "14843376-bb96-451d-bf8e-ae10324c250a", "value": "Textual Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7ecee866-60e9-428d-85ef-c089ce047e2a"> - <dcterms:identifier xml:lang="en">{"id": "d56d9428-adef-4a4a-b58a-1159327c242b", "value": "http://vocab.getty.edu/aat/300404024"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/461bcd64-4dd9-4cab-a416-70462cd6f4c5"> + <dcterms:identifier xml:lang="en">{"id": "b04df3df-eb12-4535-9053-d17972f8801b", "value": "http://localhost:8000/461bcd64-4dd9-4cab-a416-70462cd6f4c5"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "905634e8-1558-4cb1-8ffd-e8ea765a5a62", "value": "Text Subject Type"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/75613ffa-549e-42cd-8a5a-b9ff66ae8c07"/> + <skos:narrower rdf:resource="http://localhost:8000/1ff831dd-8f7a-4331-9579-51e513725ca3"/> + <skos:narrower rdf:resource="http://localhost:8000/cddda87a-6281-4547-a2e0-4047994836c8"/> + <skos:narrower rdf:resource="http://localhost:8000/15f52617-f1cf-40c6-b31f-eccd2dc8c252"/> + <skos:narrower rdf:resource="http://localhost:8000/ca08a220-303e-4bee-92d9-8bd4f5302b49"/> + <skos:narrower rdf:resource="http://localhost:8000/89462b0b-71a7-4872-a6ca-18ded17f7568"/> + <skos:narrower rdf:resource="http://localhost:8000/4490453e-608e-40d6-9e39-79af0f1cc9fe"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "a990091f-06ba-4516-836f-af78c7304ad9", "value": "Individual objects or works. Most works in museums are cataloged as items. A stand-alone architectural work should generally be cataloged as an item. An item may be composed of multiple parts or components, and it may be desirable to catalog the parts separately, linking the records for the components to the record for the whole. An item differs from a component in that the component cannot stand alone as an independent work."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "1a624dd8-3b71-476d-aa83-4dc3fb7a5460", "value": "items (cataloging focus)"}</skos:prefLabel> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e576485c-36c1-41e0-be6e-67dde3c52d9f"> + <dcterms:identifier xml:lang="en">{"id": "298e8913-f3ac-41ed-a886-47b053feba5a", "value": "http://vocab.getty.edu/aat/300123578"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "72fce3be-d216-473e-8eda-87c7988b2929", "value": "Picking out or choosing in preference to another or others."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "48db74cd-8599-42e8-bcfc-0e79a9e077cd", "value": "selection (analytical function)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/df3c0aca-ef6f-4ea4-922a-3a15bc7d9673"> + <skos:prefLabel xml:lang="en">{"id": "c7812e3b-7576-4b78-a033-f82c6f96e6d2", "value": "Raman Dataset"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "caeba958-57e9-47f6-907f-734b0e23e41b", "value": "http://localhost:8000/df3c0aca-ef6f-4ea4-922a-3a15bc7d9673"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/99b83e37-2fab-4eb6-8d9c-ca88970f078f"> + <skos:narrower rdf:resource="http://localhost:8000/5f0e4350-cacd-41d8-a2bb-5efbfa5915b5"/> + <skos:prefLabel xml:lang="en">{"id": "024728c8-7b09-442e-a988-4448ec5fd512", "value": "Production Types - Textual Work "}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "656cafe1-ecdb-4fd1-b40e-77314b73870f", "value": "http://localhost:8000/99b83e37-2fab-4eb6-8d9c-ca88970f078f"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a0902fd9-0443-41ec-ab4b-203062bfa26b"> - <skos:prefLabel xml:lang="en">{"id": "1446e9d6-bd35-4fd4-bd1a-017cd51f8670", "value": "series (object groupings)"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "a2aedab7-5118-494d-ab6f-eed3b871dd8b", "value": "Serie (Gruppe)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/dfd2f1ed-4af4-4fcc-8dac-a001a0ddc523"> + <skos:prefLabel xml:lang="en">{"id": "1632cec3-6c95-4d40-8f7e-09596c48fa68", "value": "conception"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "843ee900-39b9-4005-8ac1-6a8823b832f2", "value": "http://localhost:8000/dfd2f1ed-4af4-4fcc-8dac-a001a0ddc523"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "f8b03ff2-f7fe-46a8-bf95-058a68d3a494", "value": "http://vocab.getty.edu/aat/300027349"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "b5e525ad-0711-4a9a-bd11-9011166773db", "value": "A conceptual grouping of visual arts works, literary works, or performance art created in succession by the same author, artist, or studio and intended by the creator(s) to be seen together or in succession as a cycle of works. Works in a series typically share the same or related subjects, the same or similar media, or other characteristics, but their defining characteristic is that they were intended to be conceptually related as a series. Individual items in a series may be cataloged separately and linked to the series. "}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "3f3af03a-b2e7-4fcd-9288-66e2d908f6f4", "value": "s\u00e9rie"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "62d03e43-f44a-44c0-b55a-02c95517e63f", "value": "Gruppe von separaten bibliographischen Objekten, miteinander in Beziehung stehend,durch die Tatsache, dass jedes zus\u00e4tzlich zu seinen eigenen Titel einen Sammeltitel f\u00fcr die Gruppe als Ganzes enth\u00e4lt; sie werden sukzessive herausgegeben; in der bildenden Kunst wird der Begriff f\u00fcr eine Gruppe von Werken eines einzelnen K\u00fcnstlers verwendet, die eine spezifische und sinnhafte Beziehung zwischen den Arbeiten besitzen."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/bf2a55ff-b9c6-4216-bb96-172825edef68"> - <dcterms:identifier xml:lang="en">{"id": "5f41e3a4-5f10-485d-978d-ac9e47e71b31", "value": "http://vocab.getty.edu/aat/300375748"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "3c649aff-dafb-4f85-8443-fcb36f18bc4a", "value": "Sammlung historischer Aufzeichnungen und anderer Prim\u00e4rquellen, die im Lauf des Lebens eines Individuums oder einer Institution entstanden sind und erhalten wird, um die Funktion oder Geschichte der Person oder der Einrichtung zu dokumentieren. Die Dokumente k\u00f6nnen materiell oder digital vorliegen."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "b24f07d6-9adc-4384-a444-a053fc9f6caf", "value": "Archiv (Objektgruppe)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "f563a6c4-954d-44e8-ac48-35604274d8df", "value": "archives (groupings)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/714dc5b5-f2f3-4daa-9a6c-ed07c385aeec"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "0ca70824-073b-492d-8c7f-9e67511d830d", "value": "Collections of historical records and primary source documents that have accumulated over the course of an individual's or organization's lifetime, and are kept to show the function or history of the person or an organization. Documents may be tangible or digital."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "b4db282b-c8bf-4fba-9ec7-485ed8def725", "value": "The activity of comprehending, analyzing, and expressing written or spoken material in a different language from the original."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "ba301092-b764-4ca0-bd2b-4b52e99bf62a", "value": "http://vocab.getty.edu/aat/300069831"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "4f517ea6-a609-4263-8b10-93bc10622d09", "value": "translation (function)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/4f4cf6d3-c30a-4f08-a733-c8bd1276067b"/> - <skos:prefLabel xml:lang="en-us">{"id": "ad5208d1-ab0b-45ec-8e4d-702225bf9a0d", "value": "Collection Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f3432589-1ec7-4f21-90ff-3582608bbbc4"> - <skos:scopeNote xml:lang="de">{"id": "8fc8f2a5-350b-4fde-b053-908764bb7b13", "value": "Bezieht sich auf eine Gruppe von Objekten oder Materialien mit einem einheitlichen Bezug, die von einem Individuum oder einer Organisation zusammengestellt wurde. Es kann sich um Kunstwerke in einem Museum oder Archiv handeln oder um separate literarische Werke, die nicht Teil einer Abhandlung oder einer Monographie zu einem Thema sind und dennoch kombiniert als Ganzheit publiziert wurden."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "de155f7b-041b-4528-b769-561f076907f5", "value": "collections (object groupings)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "a301cbe0-486b-4fea-b14f-b8cdd452a418", "value": "Accumulated groups of objects or materials having a focal characteristic and that have been brought together by an individual or organization. A collection comprises multiple items that are conceptually or physically arranged together for the purpose of cataloging or retrieval. A collection differs from an archival group because the items in a collection are bound informally for convenience and do not necessarily share a common provenance or otherwise meet the criteria for an archival group. Collection-level cataloging is appropriate for materials that share one or more common characteristics that make it useful for them to be clustered together. Individual items in a collection may be cataloged separately and linked to the collection. Examples of collections include a selected set of art works in a museum or archive, or separate literary works that do not form a treatise or monograph on a subject but have been combined and issued together as a whole."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "02cdf7e7-3664-4f09-adb3-b89c636bcf3e", "value": "Sammlung (Objektgruppe)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/7db37c5b-95a0-411c-a088-3ba245c2de27"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "512ef1b9-5a49-45ff-bf4d-dc32e71ac3a0", "value": "http://vocab.getty.edu/aat/300025976"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "63305ce4-62e1-49a6-9958-017f820b9353", "value": "http://localhost:8000/7db37c5b-95a0-411c-a088-3ba245c2de27"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "50d68af0-c78f-422f-9370-15cff8e73cc8", "value": "reconception"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2465ff6c-0185-479f-a545-13a1cdab4e69"> + <skos:Concept rdf:about="http://localhost:8000/d1a8cc2c-a671-4ecf-8034-9348e2f0a8c7"> + <skos:prefLabel xml:lang="en">{"id": "c82156dd-fbbb-48b2-8629-e20ab0d70a23", "value": "adaptations (literary works)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "7487c9f4-c368-4029-941f-1995a1b94ade", "value": "All examples of a set number or amount of multiples, such as coins, notes, stamps, prints, copies of a newspaper, books, periodicals, etc. that were issued at one time or otherwise sharply distinguished in pattern, design, color, or identifying numbers from those issued at another time."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "096149ff-b3a9-46d0-9d84-8986b91ca454", "value": "issues (object groupings)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "395345eb-5d00-40cd-847b-08022b7d77e5", "value": "http://vocab.getty.edu/aat/300312349"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "cfa2ed10-d68a-49a3-b82c-32cfea69317f", "value": "Written works or works derived from written works, where the second work is an alteration or amendment a text to make it suitable for another purpose. An example of an adaptation is a version of an earlier text made to better agree with a philosophy other than that intended by the original. Other examples are written works adapted for another medium, such as film, broadcasting, or stage production. For visual works adapted from another work, use \"adaptations (derivative objects).\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "9e7cf3f0-44c9-45f7-b920-dcd1bf44316d", "value": "http://vocab.getty.edu/aat/300410356"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/3787d26c-11a1-447c-8a71-74b862714f5f"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e3acac51-5f58-4a8d-8c25-0949b1f664df"> + <skos:narrower rdf:resource="http://localhost:8000/5627a014-3495-4d24-9543-21a577adaaaf"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c262b1b6-df83-42a7-9385-1e0cd2b9e706"> - <skos:scopeNote xml:lang="de">{"id": "60562dd4-c271-493d-8a46-a1f7301f27b4", "value": "Sammlung, die von einer nationalen Regierung unterhalten wird und in der Regel in einer Bibliothek, einem Archiv oder Museum untergebracht ist."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"> + <skos:prefLabel xml:lang="en">{"id": "86bbbbcb-f23e-48e8-9893-8d791a859077", "value": "temporary number"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d915197a-c849-431f-b66c-0bfcd692ab9f", "value": "Collections maintained by a nation's government and housed typically in a library, archive or museum."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "92c571fb-6171-48c0-8d6f-e8bff0d3fc95", "value": "http://vocab.getty.edu/aat/300263379"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "2c03e71b-7d06-484b-988c-048148df781f", "value": "national collections"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "109f73d4-10ba-4410-ba56-46cfb7bbbd6f", "value": "Nationalsammlung (Sammlung)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6dddc260-ab1f-42df-a56d-d64c50850163", "value": "http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2c1d1ac2-3f1c-4796-9f01-f0857b918c9e"> - <dcterms:identifier xml:lang="en">{"id": "9b973a47-22a4-4a28-bedb-b49785940138", "value": "http://vocab.getty.edu/aat/300411307"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"> + <skos:prefLabel xml:lang="en">{"id": "84d3a8fe-444e-4789-874a-1d5fb5adff73", "value": "universally unique identifier (UUID)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "5b089137-71b6-43bf-a2bd-2528467724e4", "value": "Groupings into which items are divided to be sold at an auction."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "0c7fbbaf-4b5a-490f-b71e-97137df715c8", "value": "auction lots"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "451ac0d7-cdb7-4fd0-94ec-254fab397bd9", "value": "http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7d9253fe-5b76-444d-84aa-34f35f0be80e"> + <skos:Concept rdf:about="http://localhost:8000/8d57caff-b29f-407c-b2c9-6ad0d21ab80f"> + <skos:prefLabel xml:lang="en">{"id": "088f9912-a19a-43c6-9cbb-5dadef720973", "value": "ORCID iD"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "da7c3ddf-7b44-469a-923d-1b366945aac8", "value": "The kind of object or work described, e.g., painting, book, cathedral."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "28a0315e-1672-4ef6-86a5-d3dd7ee3b31c", "value": "http://vocab.getty.edu/aat/300435443"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "0fccc7ca-50fd-4b67-abcd-aff15396cbfa", "value": "object/work type (category)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "69a4b36d-fe90-4532-ad6e-ded88f9a0258", "value": "http://localhost:8000/8d57caff-b29f-407c-b2c9-6ad0d21ab80f"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b3498065-2de2-43d1-945c-96713ffb1fb8"> - <skos:scopeNote xml:lang="en">{"id": "cb6e5970-92f1-4bc9-9bee-1b20d1d7c50c", "value": "Collections owned and maintained by private individuals, outside of the public domain."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "8aad3b58-1b0e-4e88-97cd-d69db5f7fdde", "value": "http://vocab.getty.edu/aat/300146236"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "afdfa077-538e-42bf-b222-0297f8b273bf", "value": "Sammlung, die ein Individuum zusammenstellt und besitzt und nicht \u00f6ffentliches Eigentum ist."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "a22cba05-467f-410d-bbcf-15ac4c700330", "value": "Privatsammlung"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/371aae9e-044a-475b-8933-2275236232df"> + <skos:scopeNote xml:lang="en">{"id": "56324fd0-d7f3-413c-b80f-ae0f85bdb0d4", "value": "Numeric, alphanumeric, or other codes assigned to a thing, concept, person, or other entity in order identify it and distinguish it from other similar entities. Often a sequence of integers or characters arbitrarily devised."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "d9ebad57-0a77-4dd7-bd0c-8f5a24095414", "value": "collections priv\u00e9es"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "edc4c395-1c5c-4839-9a72-26f06baf85d4", "value": "private collections"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "a86f2460-7af8-4735-b9d1-ff9396d372ef", "value": "identification numbers"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0afe13ba-78f5-4097-9228-a0f57b8f1428", "value": "http://vocab.getty.edu/aat/300404626"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en-us">{"id": "e6b76d25-ac44-402a-917e-6b7f60cb4af1", "value": "Identifier Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/905f6f3e-9cc0-479e-9e7d-e313a14f3297"> - <skos:scopeNote xml:lang="en">{"id": "72eba3b0-b715-4ad1-ae03-43f3a5d015c3", "value": "Archival groups are aggregates of items that share a common provenance. Archival groups may range in size from several thousand items (e.g., the entire body of drawings, models, and written documents from an architect's office) to just a few items (e.g., a handful of surviving drawings from one architectural project). Group-level cataloging focuses on the description of coherent, collective bodies of works. The description emphasizes the characteristics of the group as a whole, and highlights the unique and distinctive characteristics of the most important works in the group. Groups are usually defined by repositories, and may have several subgroups that are established by archival principles of provenance. The catalog record for a group normally corresponds to a physical group as it currently exists and is stored by the repository; however, historical groups may also be described. Groups may be divided into subgroups."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "3ab48791-c2ce-40ff-a55b-09a33aa72752", "value": "groups (archival divisions)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/be56d99a-4be6-4e2e-ab58-2432d8a77e46"> + <dcterms:identifier xml:lang="en">{"id": "8f42229f-35e7-4a52-9ac8-935ec96b4a6b", "value": "http://vocab.getty.edu/aat/300404628"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "0943ec2f-052e-405a-8909-58b4f2e370cb", "value": "http://vocab.getty.edu/aat/300404022"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "8449ef7c-4e25-459d-932f-9f5219b4db38", "value": "Distinguishing identification numbers or codes assigned to either a plot of land or a batch of items, such as at an auction."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "c8339308-930a-4fd2-821e-b550eafdfa45", "value": "Lot Number"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0fa2731d-a349-4cf4-979c-3a3de0375a79"> - <skos:prefLabel xml:lang="en">{"id": "0fd03c31-d290-48c5-b9e1-4908ed3f6eeb", "value": "corporate collections"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/080f39d1-b54b-4260-9506-57eb802e5b4e"> + <dcterms:identifier xml:lang="en">{"id": "36e4a2f8-2c4c-4fd0-9995-16c83060d740", "value": "http://localhost:8000/080f39d1-b54b-4260-9506-57eb802e5b4e"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "5f312ebf-0fe2-4bbe-8bd8-a51e301f9264", "value": "Accumulated groups of objects or materials having a focal characteristic and that have been brought together or are maintained by a corporate body."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "c5a016b1-c666-4257-9695-f220673bc248", "value": "http://vocab.getty.edu/aat/300025979"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "3fc85790-61ea-4b9e-95c0-db4418c8d36b", "value": "previous number"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1c9052ae-db51-4033-aba0-fc767330fd12"> - <dcterms:identifier xml:lang="en">{"id": "9f5131a8-b8a6-4559-bd3c-6874f6a08aa0", "value": "http://localhost:8000/1c9052ae-db51-4033-aba0-fc767330fd12"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/c24d6806-75bf-4127-9fd6-c870cc160063"> + <skos:prefLabel xml:lang="en">{"id": "7a4fd82d-e3fd-4099-9bbf-a7618114395b", "value": "sale record number"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "94dbc6e3-c17e-469e-bba7-db51371f9684", "value": "http://localhost:8000/c24d6806-75bf-4127-9fd6-c870cc160063"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "75575b99-fb14-45e2-867b-9f3f6147e59e", "value": "art collections"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/6a0a4e8b-dfc5-4b38-9c26-98cb05592621"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "439eda99-f9f8-4db9-88a0-4e434459963c", "value": "messagerie electronique"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "b0fc54cc-5bc5-41b8-b90d-d6116b7c9fc2", "value": "E-mail"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "87937761-c289-43d1-a8bf-d69f02f53ea8", "value": "http://vocab.getty.edu/aat/300149026"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "337c1221-e4a3-439d-8ddc-e69de60a52d6", "value": "Communication by means of a system that allows computer users to exchange messages in electronic format on a network, often but not always comprising messages from one individual to one or many others via telecommunications links between computers or terminals."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "19e04225-a821-491d-b653-b17d4fe4d1d1", "value": "electronic mail"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5745583d-2795-4305-995f-a85929f8bd54"> - <skos:prefLabel xml:lang="en">{"id": "d96b595d-11d0-48b8-a3dd-effe83d09ad1", "value": "Norwegian (culture)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "ee608400-f9bf-40b1-8563-451d1005bf6e", "value": "http://vocab.getty.edu/aat/300111201"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "40317e5d-6b3d-49ba-8b3d-14f3af67f96b", "value": "Refers to the culture of the modern nation of Norway, or in general to the cultures that have occupied the western part of the Scandinavian peninsula in northwestern Europe."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "d7c3fe92-cd95-4228-8157-7bfa2e1ca8ca", "value": "norv\u00e9gienne"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/999692fa-3c5f-4d4a-8efa-44e792c45592"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "af65ffbd-07ee-491f-9baa-8d328b9977b0", "value": "http://localhost:8000/999692fa-3c5f-4d4a-8efa-44e792c45592"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a71fd54f-7765-4908-ae89-0a4593d3cf69"> + <skos:Concept rdf:about="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "cb926adf-0de3-4247-ae5c-afbabc337ef1", "value": "Listing items on hand."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "000cc7ce-adc4-4896-a609-452ba5b057b3", "value": "http://vocab.getty.edu/aat/300077506"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "b9f997f7-4b11-4bbb-8fd6-1fd984fd92be", "value": "inventorying"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b2624860-380b-47c0-92cf-6377366c1661", "value": "http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "4bb3de41-d7bc-440c-b0bb-de5dfdb9358f", "value": "Arches Universally Unique Identifier (UUID)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/bbb0bdd9-3524-4ae7-85ea-410ebeb90b68"/> - <skos:narrower rdf:resource="http://localhost:8000/9954b805-ada9-45c5-a9aa-56d8481f34fc"/> - <skos:narrower rdf:resource="http://localhost:8000/bb623e4d-e3e0-4e81-9213-7e80ab00e389"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6f24e63e-3e66-4232-a7ff-bfe95082e2d8"> - <skos:prefLabel xml:lang="en">{"id": "2a665185-d407-44c1-a8cc-481885f2bed1", "value": "collecting"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/fbc4dc2f-61f7-4d80-969d-d61fdd71de23"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "80202f95-294d-49b9-b387-75a638969ea5", "value": "http://vocab.getty.edu/aat/300077121"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "f389fe1a-b6bd-4c5f-84c8-d58611434142", "value": "Gathering things in order to retain them."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "189ef768-c1fa-4474-87cb-dcbe7cbe8435", "value": "https://data.getty.edu/museum/ontology/linked-data/dor-uuid"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "c267cb29-f5cb-45a0-8d09-aef320278963", "value": "Getty Digital Object Repository (DOR) Universally Unique Identifier (UUID)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/43091db4-2651-4a75-b69e-f97bb2a80ee2"> + <skos:Concept rdf:about="http://localhost:8000/5bc20189-e804-45e2-bb65-b8d6c0ceda3b"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "9144aef3-841d-4653-b1eb-56f295db98da", "value": "curating"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "bfe1297a-3e6a-42df-95e4-8b688ecf514a", "value": "Superintending or managing the collections, exhibitions, research activities, and personnel of a museum, art gallery, zoo, or other place of exhibit; also, the superintending or managing of a single collection or subject of study in such an institution."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "ba1984f8-2abb-41c3-a5c0-3d211e66b0a6", "value": "http://vocab.getty.edu/aat/300054277"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "9ea45e65-2f28-4c29-9bb2-54d94c1c32fc", "value": "Getty Digital Object Repository (DOR) Integer Identifier (ID)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f3c89e35-334c-454d-868c-0ffdcdca9029", "value": "https://data.getty.edu/museum/ontology/linked-data/dor-id"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f43bfa7f-e3de-4364-9735-0459b8ac5b8b"> - <skos:scopeNote xml:lang="en">{"id": "f9ee451d-e7e9-41c4-a59a-94faa6e8eca6", "value": "Creating and manipulating data in machine-readable form by means of computers, including inputting, storage, conversion, editing, and printing."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "5293e87e-45c3-4c8d-a351-439cd762b450", "value": "http://vocab.getty.edu/aat/300054636"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "2fe420ca-37b3-4ddc-9f6f-58e7bbdbe282", "value": "data processing"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/ba983b76-67d1-4788-bbf3-40aa8093a268"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "d6365afa-4ebf-4b85-9e1c-d4f2d4c7c573", "value": "Getty Manuscript Number"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f038547e-25ba-475a-8f5f-18b97ebf4b8e", "value": "http://localhost:8000/ba983b76-67d1-4788-bbf3-40aa8093a268"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "67356382-4911-4b01-b5f5-34c6931ab9d6", "value": "Creation Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/aa549433-7624-4575-8e27-b6e0a9503cad"> + <skos:Concept rdf:about="http://localhost:8000/0d660e45-fde0-47d8-b0c8-949a9ad397ef"> + <skos:prefLabel xml:lang="en">{"id": "0714f10f-f47d-44bb-88a8-93e2dcefa3c7", "value": "land registry ID"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "3385f92d-0a15-46a6-a89c-dbd8bf0133c7", "value": "http://localhost:8000/0d660e45-fde0-47d8-b0c8-949a9ad397ef"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "a0045115-04e2-4711-b9f3-32da5e099331", "value": "making"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "39deceb9-ed31-46a1-a21b-9c12a665a09f", "value": "http://vocab.getty.edu/aat/300404387"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "3aac9463-0864-40b8-afe3-6d935691c808", "value": "The activities surrounding the production or conception of a work, particularly a work of visual art, literary art, or performing arts."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/265d5422-709a-4e7b-bc0a-88e4a87608f7"> - <skos:scopeNote xml:lang="en">{"id": "310703b0-7428-4989-af0c-37c08d8ef002", "value": "Recording the entry of items into a collection in the order of acquisition."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "0f51587f-aaa2-4fa3-a7ea-54c937ffcc56", "value": "http://vocab.getty.edu/aat/300054626"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "c30c8618-d9bd-4cab-a934-668ad92b1969", "value": "accessioning (collections management)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/7db49ae3-80dd-4c2e-83f3-842446415f13"> + <skos:prefLabel xml:lang="en">{"id": "9b0ead1c-19a0-4172-b7cb-8a06d321aec9", "value": "catalogue number"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "98f295cd-7c59-4a8b-a9b4-6ca36a5a58ce", "value": "http://localhost:8000/7db49ae3-80dd-4c2e-83f3-842446415f13"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "61ff5eb6-7a3c-49b1-920a-a0e39d2cd0a0", "value": "http://localhost:8001/e3acac51-5f58-4a8d-8c25-0949b1f664df"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/d2d7ac19-a9b6-436c-936a-3c6f314b2742"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c9c98daf-a9c9-449e-aeb7-d7fb33973251"> - <dcterms:identifier xml:lang="en">{"id": "799b1e38-168f-4b5c-a1f1-8706ad7ea41f", "value": "http://vocab.getty.edu/aat/300202383"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/d0705d15-91a1-4ac3-b298-94a554b5ef77"> + <dcterms:identifier xml:lang="en">{"id": "e8c0f803-0d29-4529-831b-a7ad959db16e", "value": "http://localhost:8000/d0705d15-91a1-4ac3-b298-94a554b5ef77"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7d53bdf8-13f7-4808-8b51-34c54518b775", "value": "ULAN"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d8d21afb-38fd-4833-94ff-f6cd92d5f9dc", "value": "Converting, sound, motion pictures, images, or other analog data to binary form to be stored or altered with a computer."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "95f3ff6c-0e8b-44d3-b356-9a052bd35bd6", "value": "digitizing"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/9dd99086-3a90-4102-8335-33986fe797e3"> - <skos:scopeNote xml:lang="en">{"id": "bf2b90fc-59ab-4c29-b9dc-9d0518a1715c", "value": "Titles of courtesy, professional titles, military rank, adjectives, or other words used before a personal name. Examples are words to indicate gender, marital status, social position, or included for another purpose, such as the following words and abbreviations: Mr., Mrs., Miss, Ms., Dr., Sir, and Rev."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "7af4ed1c-d0b0-4850-98bc-2e856d065e24", "value": "prefixes (name additions)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "712c0c79-f98b-444f-8a64-4498f0f0d03f", "value": "http://vocab.getty.edu/aat/300404845"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/ac747098-0517-45b7-a311-808da9e96da6"> - <dcterms:identifier xml:lang="en">{"id": "ed954f17-4604-4b6a-b3b2-64a7b5181b19", "value": "http://localhost:8000/ac747098-0517-45b7-a311-808da9e96da6"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "a78acfee-fb0a-4a93-adb6-05e7649956a4", "value": "software development"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4cd39562-1f73-4b78-9021-0b3a0e0be0e3"> - <dcterms:identifier xml:lang="en">{"id": "40dc7e48-5dd4-4553-b7d8-3230ff487473", "value": "http://vocab.getty.edu/aat/300109733"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "d1eacc57-5f4f-41d2-9315-d40ef496555f", "value": "Verfahrensweise (Lehrmaterial)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "449503eb-e571-4eb9-8e05-ab9308668e5f", "value": "Records of established forms or methods for conducting the affairs of a business, legislative body, or court of law."}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "3a13b1c9-64b3-4cfa-b99f-902014dd899a", "value": "Aufzeichnung \u00fcber die etablierten Formen und Methoden der Gesch\u00e4ftsf\u00fchrung eines Unternehmens, eines gesetzgebenden Organs oder eines Gerichtshofes."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "60d1e09c-0f14-4348-ae14-57fdb9ef87c4", "value": "procedures (documents)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5705baac-66ca-4fc3-adce-acc997d16b1d"> - <skos:prefLabel xml:lang="en">{"id": "5eddfe99-e9d4-4d34-a1b2-617912a3b736", "value": "Dutch (culture or style)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "d58548b1-505a-4f19-8ba0-39368b7c138f", "value": "http://vocab.getty.edu/aat/300111175"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "8554fae3-9a3f-4aed-a093-a5898e6a6dec", "value": "hollandaise"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d38948cb-7e57-4be5-be86-69d78169a449", "value": "Refers to the culture of the modern nation of the Netherlands, or in general to cultures that have occupied the same area in northwestern Europe along the North Sea. It is often used to distinguish the culture of the northern historic Netherlands from \"Flemish,\" which is the culture of the southern Netherlands or Flanders. It may also be used to refer in general to the culture of Germanic or Teutonic peoples; however, this meaning is seldom found in modern texts."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0fff64d5-7aa5-4986-ae75-a684adec2dc6"> - <skos:prefLabel xml:lang="en">{"id": "64231f36-8d5d-427b-b0c2-297ad6ecab93", "value": "rights statement"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "05f64cb6-e718-45ac-b980-d66fcd4cd62d", "value": "http://vocab.getty.edu/aat/300055547"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "d65bfe4f-0ed2-4d34-9288-cf912ce0e8de", "value": "Social science concepts related to law."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/db62dc19-f356-410b-a309-474f5b59c767"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "15317074-775d-42cd-86ee-79a19c93b0b5", "value": "Refers to the process or branch of fine art concerned with creating sculpture, which are three-dimensional works. It refers particularly to carving or engraving a hard material, or with molding or casting a malleable material, so as to produce designs or figures in relief, in intaglio, or in the round. It is typically used to refer to the production of large or medium-sized objects in stone, clay, or bronze. The production of small objects in bronze or stone is typically referred to by a specific term, such as \"stone carving\" or \"die sinking.\" The production of sculpture in wood or ivory is typically referred to as \"carving,\" even though the finished work in these materials may be called \"sculpture (visual work).\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "12a57766-f357-486e-927b-b2a8f659ec7c", "value": "http://vocab.getty.edu/aat/300264383"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "73397400-ddb9-49bc-b8ed-3dce670dd2ab", "value": "sculpting"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/2a5d7e8c-df22-434e-8208-66a7d80b1168"> - <skos:prefLabel xml:lang="en">{"id": "735db97f-1e46-475c-a6b5-1b6ad137afe3", "value": "sculpting"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "dd61f941-31b4-44a3-9265-b009e1f3d937", "value": "Refers to the process or branch of fine art concerned with creating sculpture, which are three-dimensional works. It refers particularly to carving or engraving a hard material, or with molding or casting a malleable material, so as to produce designs or figures in relief, in intaglio, or in the round. It is typically used to refer to the production of large or medium-sized objects in stone, clay, or bronze. The production of small objects in bronze or stone is typically referred to by a specific term, such as \"stone carving\" or \"die sinking.\" The production of sculpture in wood or ivory is typically referred to as \"carving,\" even though the finished work in these materials may be called \"sculpture (visual work).\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "ba8a6b37-2c87-4898-afd8-ae71c7db61fe", "value": "http://vocab.getty.edu/aat/300264383"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/955f7d60-f1d7-4077-8765-1eb423fe7dcc"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/038d2bdf-081d-4f53-8ace-305e68c10591"> - <dcterms:identifier xml:lang="en">{"id": "484c720e-7a66-4d2e-9aec-cc251e34e4d2", "value": "http://localhost:8000/038d2bdf-081d-4f53-8ace-305e68c10591"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "92c474cb-930e-4c1d-b53a-d6104140d626", "value": "approximate"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"> + <skos:scopeNote xml:lang="en">{"id": "388b65d2-28c1-45e4-bad8-e0fdc071af0f", "value": "Numeric, alphanumeric, or other identifying codes of various types assigned to an art object, book, other item, or group of works by the repository that holds that item or group. Any item or group in a repository may have multiple types of repository numbers. For numbers specifically assigned at the time of accession by a repository, prefer \"accession numbers.\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "86e0a121-43eb-4346-b1b8-c8c9bd502b7c", "value": "http://vocab.getty.edu/aat/300404621"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "768b2f11-26e4-4ada-a699-7a8d3fe9fe5a", "value": "internal identifier"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/1148e436-446f-4bb7-9e35-1808ec1e56e4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1001587a-3524-455f-92ea-34deafc7bf68"> - <dcterms:identifier xml:lang="en">{"id": "e24b5859-5e28-4414-9b13-a02378166c8d", "value": "http://localhost:8000/1001587a-3524-455f-92ea-34deafc7bf68"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "aa87f64a-9584-4f21-8a71-2116cd9a7850", "value": "estimate"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/1e4e1d74-2c6b-4a09-adb9-fd1b314584e7"> + <skos:prefLabel xml:lang="en">{"id": "8e48fc8c-a74e-4464-8075-15b07839f153", "value": "Digital Object Identifier (DOI)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "4a59e961-00f8-4b82-ac61-bcb9288d84be", "value": "http://vocab.getty.edu/aat/300417432"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "d20d3a7a-9bc6-45cc-b0ac-b5e059eb7caa", "value": "Unique alpha-numeric strings assigned by a regsitration agency to identify content and provide a persistent link to a location on the Internet."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/340a38a7-8ed9-4a07-a4a4-a28c8fe77b28"> + <skos:Concept rdf:about="http://localhost:8000/265b2804-4472-4540-b7bb-b81ced9e41fd"> + <dcterms:identifier xml:lang="en">{"id": "d9e62e2d-1824-4adb-afe7-c98517fe5463", "value": "http://localhost:8000/265b2804-4472-4540-b7bb-b81ced9e41fd"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "94570a6a-d347-44f6-83ef-b95fce61d138", "value": "exact"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "dbe882cd-f9b9-48a9-a527-7e5382d41db1", "value": "http://localhost:8000/340a38a7-8ed9-4a07-a4a4-a28c8fe77b28"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "9fe7e3b3-fbb6-4eda-ba21-930633ffbec2", "value": "VIAF"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "0a8952cf-dbd4-4e0f-96ac-c4bf004e3dab", "value": "Timespan Duration Type"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "190896b9-0534-4f3c-9b60-e9094f5dc075", "value": "http://localhost:8000/955f7d60-f1d7-4077-8765-1eb423fe7dcc"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e63e5af7-bd48-4c0e-90d3-748bed444366"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "03fcd942-e5e4-4c4f-8fa4-235a0a32fb9a", "value": "http://vocab.getty.edu/aat/300417640"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "99adf401-7fde-4d45-8e0d-0d80e63f3098", "value": "endowment (method of acquisition)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "961611f1-15d3-4b65-9b5b-e69eabd3a2b4", "value": "Method of acquiring property, usually indirectly by using money or income that has been provided by a benefactor."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/3f407090-d21c-4e43-bea1-efd6920fc981"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "0b2caa91-2d79-44c5-b742-72ad7c763793", "value": "http://vocab.getty.edu/aat/300193974"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "b1624e29-5891-47dc-bb4f-5bf88685afce", "value": "certified checks"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "c494c9be-9ccb-48b9-9e95-557e2e7f6d80", "value": "ch\u00e8que certifi\u00e9"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "92b88557-a5f2-476e-8585-eacca829c94e", "value": "Checks that certify that the signature of the drawer is genuine and that the depositor has sufficient funds on deposit for payment."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/081ac682-081c-4a50-9fb8-30c49aa8da7c"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "25622d61-1c45-4070-8876-1e0039e2641c", "value": "http://vocab.getty.edu/aat/300054628"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "5e0bec7e-ef14-45b2-b2d4-2648a00c44b1", "value": "Systematically analyzing, listing, and describing items in a collection and arranging the information into a catalog."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "c57383b0-7c73-4120-9929-8bb702cecd59", "value": "katalogisieren"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "719a3328-3db4-46f6-bf3f-c555f53a1e5b", "value": "cataloguer (process)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en-us">{"id": "0bc1f9e1-9020-4e79-96bb-63c97ddc43fd", "value": "cataloging"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e49fda8f-fc61-47e3-9d66-127323d9aadb"> - <dcterms:identifier xml:lang="en">{"id": "0ce9c124-76d2-443a-9745-088a3063bf44", "value": "http://vocab.getty.edu/aat/300404655"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "e67dccd9-5deb-4b23-81da-65c68b5ba18e", "value": "place names"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "7c44ab4a-ea26-408d-8aa4-d7dec66a5530", "value": "Proper names of geographic locations, such as a nations, empires, towns, villages, hills, or lakes."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/210c4d7a-e17a-4f3d-b684-bf8cd803dcfa"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "dce8ade5-36f9-40b9-aef9-ed6125dd2f7e", "value": "Persons who superintend or manage the collections, exhibitions, research activities, and personnel of a museum, art gallery, zoo, or other place of exhibit; also, the superintendents or managers of a single collection or subject of study in such an institution."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "96982846-79f9-4a83-9479-2fcd22551d51", "value": "http://vocab.getty.edu/aat/300025633"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "8fd6e19a-b5eb-438e-b611-f47bd4c19a4f", "value": "curators"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/080f39d1-b54b-4260-9506-57eb802e5b4e"> - <skos:prefLabel xml:lang="en">{"id": "3fc85790-61ea-4b9e-95c0-db4418c8d36b", "value": "previous number"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "36e4a2f8-2c4c-4fd0-9995-16c83060d740", "value": "http://localhost:8000/080f39d1-b54b-4260-9506-57eb802e5b4e"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/3044ebe4-8d5f-446a-b618-5f39fbfc2364"> - <dcterms:identifier xml:lang="en">{"id": "9066c26b-f78b-4939-a6aa-6686a4c04999", "value": "http://localhost:8000/3044ebe4-8d5f-446a-b618-5f39fbfc2364"}</dcterms:identifier> - <skos:altLabel xml:lang="en">{"id": "186d6ef3-799d-4c6c-915a-294ccc8b609a", "value": "SEM"}</skos:altLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "6b33d53d-0529-4de1-ad69-579c9276d8e0", "value": "scanning electron microscopes"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c5382a52-2102-4105-b96d-ddf6217d1a02"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a842d507-d64c-482d-95d7-18d6e02d0ca6"> - <skos:prefLabel xml:lang="en">{"id": "7b32c4ef-a359-4181-8e66-5a9f18e2e776", "value": "inscriptions"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "536e50aa-ade0-4c02-bd47-942ff7f0520e", "value": "Words, texts, lettering, or symbols marked on a work, including texts, legends, documentation notes, or commemoration. For standardized symbols or notations on objects that convey official information, use \"marks (symbols).\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "03d7edd9-841c-4565-96f0-7fe4fb036e47", "value": "http://vocab.getty.edu/aat/300028702"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "f763b451-a4b9-4541-9fa7-486fe193eb79", "value": "Beschriftung, mit der etwas markiert wird, insbesondere zur Dokumentation oder zum Gedenken. Bei einer Drucksache ist dies eine spezielle, in Buchstaben aufgedruckte Information, die f\u00fcr gew\u00f6hnlich nicht Teil eines gr\u00f6\u00dferen Textes ist. Bez\u00fcglich antiker Texte werden damit die meisten erhaltenen schriftlichen \u00c4u\u00dferungen jeder L\u00e4nge, au\u00dfer Papyri, bezeichnet. F\u00fcr standardisierte Symbole oder Bezeichnungen auf Objekten, die wichtige Informationen enthalten, siehe \"Zeichen (Symbol)\"."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/5c57af12-3510-4dfb-b924-97bbf55ddbd3"> + <dcterms:identifier xml:lang="en">{"id": "0de6dbf0-7fee-4c36-822d-e77d0cb4328a", "value": "http://localhost:8000/5c57af12-3510-4dfb-b924-97bbf55ddbd3"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "cc50021b-0c11-4ac2-b324-8d5e87b8b7a7", "value": "Collection Identifier"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "1b302337-91da-47e0-bb5e-af8cf7d7401b", "value": "Inschrift"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/e49fda8f-fc61-47e3-9d66-127323d9aadb"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fb0a9c3f-02e5-44ac-8e39-266ac9460dcb"> + <skos:Concept rdf:about="http://localhost:8000/aa1c30cc-f0cb-4f4a-8faa-9ba2d42323f5"> + <dcterms:identifier xml:lang="en">{"id": "4645470a-a0ef-42d2-a08a-de9b97ed0494", "value": "http://vocab.getty.edu/aat/300404450"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "a1412c02-369d-40fe-b055-250b1a4748c9", "value": "Designation indicating something, someone, a characteristic, or an activity is the most important or fundamental, is occurring or existing first in a sequence, belonging to the beginning or earliest stage,is the original, or not subordinate to or derived from anything else."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "67233e1d-59f0-479b-a5d7-10a1d3dbd6d9", "value": "primary (general designation)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "fae35770-39bb-4883-ac73-2275d06f05af", "value": "manufacturer information"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "39fa0ce3-e27f-4515-ba15-c37850f58483", "value": "http://localhost:8000/fb0a9c3f-02e5-44ac-8e39-266ac9460dcb"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/77617e19-4102-4f2c-9a8c-4bb118d0d61d"> - <skos:scopeNote xml:lang="de">{"id": "3805ae60-c0b2-4925-9bab-5006b600b4df", "value": "Schriftlicher Bericht \u00fcber das Leben einer Person."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "757838b1-6d8e-490e-9898-b1440c1b9f14", "value": "http://vocab.getty.edu/aat/300080102"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "2074eaca-85bd-42fa-b5f2-88cdb858fa26", "value": "Written accounts of the lives of individuals. For the genre regardless of medium, prefer \"biography (general genre).\""}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/77021141-5b6e-4e72-afe1-c65bb0878026"> + <skos:scopeNote xml:lang="en">{"id": "e25fa680-a2d1-4285-8973-74a24819482d", "value": "Numeric, alphanumeric, or other identifying codes assigned when an art object, book, or other item is described or listed in a catalog, usually a published catalog. An example is an exhibition catalog. The numbers are typically not marked on the object itself. For numbers given to objects when they are acquired by a repository, prefer \"accession numbers.\""}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:altLabel xml:lang="de">{"id": "fb978259-378d-4f20-89d2-4edf6a1c4ec0", "value": "Biografie (Dokument)"}</skos:altLabel> - <skos:prefLabel xml:lang="en">{"id": "8f86681e-cbdd-4cc5-9569-28b2171aebd7", "value": "biography"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "0e580cee-d03c-42d4-9afb-048267636164", "value": "catalog numbers"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "10559d78-7073-48cb-95d4-f55a2bedd7df", "value": "http://vocab.getty.edu/aat/300404620"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7be0d823-b871-4006-9eed-e0351c604f05"> - <skos:prefLabel xml:lang="en">{"id": "7100d304-bc56-4e4c-bc3a-fa3ec539d979", "value": "materials/technique description"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "f8a04f0f-b202-42ea-923c-8353fb2b824f", "value": "An indication of the substances or materials used in the creation of a work, as well as any implements, production or manufacturing techniques, processes, or methods incorporated in its fabrication, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. For works on paper, descriptions of watermarks may also be included."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "89396c44-8467-4dc0-92f6-9d867f3621f2", "value": "http://vocab.getty.edu/aat/300435429"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/043f82e6-540c-4c3c-a37c-365509c12cbe"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "949f2b96-a0ea-45cd-bd44-be0a89b64f63", "value": "http://localhost:8000/043f82e6-540c-4c3c-a37c-365509c12cbe"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "edc2c0e0-6352-4499-9a23-22a56869bc6d", "value": "cadastre number"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/02899026-debc-4b08-8f8a-5750362ff27e"> - <dcterms:identifier xml:lang="en">{"id": "fd7066e1-5030-47dc-8942-f0707f686735", "value": "http://vocab.getty.edu/aat/300055768"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "de6c5fd5-2639-4737-8256-858acb4e9551", "value": "The sum total of ways of living, artifacts, customs, and so on, built up by a group of people and transmitted from one generation to another."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/4b220b03-17eb-44b8-b3db-3fa46f23697d"> + <dcterms:identifier xml:lang="en">{"id": "d66ea1c2-2948-45c3-be30-7c3af84d68c3", "value": "http://localhost:8000/4b220b03-17eb-44b8-b3db-3fa46f23697d"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "fc988ea5-f815-4fba-9b75-415e43152806", "value": "session number"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "1314e0cf-88c1-44b6-93e2-d49d92119730", "value": "culture (concept)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/4359e806-8987-48fc-ae44-5695dac48fcf"> + <skos:Concept rdf:about="http://localhost:8000/d7195ad5-217f-4a62-8cf2-2aac59cf88f5"> + <dcterms:identifier xml:lang="en">{"id": "eaf7e7e8-bc00-4dd9-8fa0-2d177dce7cbf", "value": "http://vocab.getty.edu/aat/300404013"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "088d3d34-1665-499d-bdba-b2caf36d68ac", "value": "manuscript designations"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "802107f1-d5e3-44fb-8a99-9b98dc44b072", "value": "rights (legal concept)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "4f0d696a-bce0-4cd3-9bba-26419ee336a8", "value": "Standards, codes, laws, rules, and principles that are considered proper, correct, or consonant with justice, and related uses regarding what is permitted and forbidden in a particular country, society, or community."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "ab682351-39ce-4d84-827d-a23a403d6d3c", "value": "http://vocab.getty.edu/aat/300417696"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "56edb075-209a-443d-9893-20e8d51cd736", "value": "Alphanumeric codes that are traditionally used to uniquely identify a given manuscript within a defined environment. Manuscript designations may be used as titles of manuscripts. An example would be \"Ms. Ludwig II 7.\""}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/427a808f-e289-46e0-986c-58eeb697d884"> - <skos:prefLabel xml:lang="en">{"id": "b1145d42-bc90-40f3-bcd4-009cec1ef3c5", "value": "marks (identifying markings)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/bf21abdf-897f-48c0-b9aa-c1f46502cdcc"> + <skos:prefLabel xml:lang="en">{"id": "05fb4d96-0287-4db3-90da-6fd10beb1a07", "value": "model number"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "67cb38ce-351c-4d25-8deb-432744ee122f", "value": "marques (symbols)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "470400ae-ef84-495a-806c-fcb078e2de77", "value": "Standardized symbols, notations, or other markings applied to objects during or after creation, conveying information such as the object's origin or maker, its authenticity, or a change in its official status. For lettering marked on something for documentation or commemoration, use \"inscriptions.\" For marks inherent in the paper support, not applied as part of the image or work, use \"watermarks.\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "86886187-5cbb-4b4e-88c0-f06ad533af1e", "value": "http://vocab.getty.edu/aat/300028744"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "3f7ba4b5-452a-478e-b8a5-4a1db3faef6f", "value": "http://localhost:8000/bf21abdf-897f-48c0-b9aa-c1f46502cdcc"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/1b162cc8-1f31-4fb3-81f9-2479b21d01aa"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a23a8cda-73a8-4a44-922b-f05882fa797b"> + <skos:Concept rdf:about="http://localhost:8000/b7929847-1bff-4ca6-b3f3-488b4a37db81"> + <skos:prefLabel xml:lang="en">{"id": "60e3ed76-fe1a-460b-898c-a6554814f6c1", "value": "Accession Number"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "2dbfecd3-1f08-4912-9742-050243c50eff", "value": "procedure"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e02da96d-6ca3-4fc3-bb1a-220a9fadd661", "value": "http://localhost:8000/a23a8cda-73a8-4a44-922b-f05882fa797b"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "52ed3784-f6ec-4c8d-94f8-5adbcdc7e9ce", "value": "http://vocab.getty.edu/aat/300312355"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "dca63a25-8c2a-461d-8755-b052022f3b6b", "value": "Numeric, alphanumeric, or other identifying codes assigned when an art object, book, or other item enters the collection of a museum, library, or other repository. Such codes are unique within the set of codes, and specifically identify the particular item at hand. The numbers may be marked on the objects or not."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/0fff64d5-7aa5-4986-ae75-a684adec2dc6"/> - <skos:narrower rdf:resource="http://localhost:8000/8a8ee459-ed32-4bd5-9235-518529188060"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2ddfe0e3-e6de-4d0c-a521-389cbeb24955"> - <skos:prefLabel xml:lang="en">{"id": "2eef4771-830c-494d-9283-3348a383dfd6", "value": "interpretation"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/a064d600-c179-4df7-9f1f-17f4b33472be"> + <dcterms:identifier xml:lang="en">{"id": "39f76681-aa02-4d5a-82ed-30297dd586cf", "value": "http://localhost:8000/a064d600-c179-4df7-9f1f-17f4b33472be"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "6d9b3873-7749-4209-9baf-23d355aa1ff6", "value": "Explanation of what is not immediately plain or explicit, as in suggesting what meaning is to be found in a set of data or in a visual work."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "c2fbefa8-02fd-4e38-b8b3-14b4fca915db", "value": "http://vocab.getty.edu/aat/300226183"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "849dbe6c-7388-43b7-998f-5f14754389ff", "value": "image number"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fbb90342-3b1d-4fc9-835b-85f0c0c29268"> - <dcterms:identifier xml:lang="en">{"id": "db91fa18-9667-49dd-a491-3c73998b4b79", "value": "http://vocab.getty.edu/aat/300404764"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "4e6e94c1-3bb1-4465-83af-f3967b54bb62", "value": "sources (general concept)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "8a30704d-317b-4f38-bc5a-913ccdf07962", "value": "The originating cause or substance of some material thing or physical agency, or the conceptual inspiration for a conceptual thing."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/45eeaca7-077d-45d2-9a3b-34268ddd9ea6"> + <skos:prefLabel xml:lang="en-us">{"id": "26094e9c-2702-4963-adee-19ad118f0f5a", "value": "Gallery Systems' The Museum System (TMS) Integer Identifier (ID)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "3a1d4f1a-ad57-40e4-b261-571c522d4af4", "value": "https://data.getty.edu/museum/ontology/linked-data/tms-id"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8907399d-9e31-4026-8ce9-7be964908a91"> - <dcterms:identifier xml:lang="en">{"id": "40efa4bc-7062-4b29-88bb-a2862b79b1ae", "value": "http://vocab.getty.edu/aat/300435448"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "2d1e0f16-097a-4eae-9b4f-893dc34946d0", "value": "A concise description of the location where the creation, design, or production of the work or its components took place, or the original location of the work. "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/9ce6c237-f015-4ee0-b7e3-9cc10b006483"> + <dcterms:identifier xml:lang="en">{"id": "d6389848-6338-4aa6-9ff2-42abedda60b8", "value": "http://vocab.getty.edu/aat/300404630"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "f32d0944-4229-4792-a33c-aadc2b181dc7", "value": "uniform resource locators"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "20f777fe-12ac-4fd8-b492-77b5d26a83fc", "value": "Unique resource locators that, in addition to identifying a resource, provide the address of the internet document according to one of a variety of protocols."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "c422bf90-21ef-4626-9c5c-d259d01a6474", "value": "creation place description"}</skos:prefLabel> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/cc49bc27-8b3e-4530-a98e-86bf6388dced"> + <skos:scopeNote xml:lang="en">{"id": "bc82bbb8-677e-4de8-94d1-583e9a113370", "value": "Method of acquiring property by payment of funds."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "14ae18bd-42b0-499b-8954-da6be9101482", "value": "purchase (method of acquisition)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "75365b99-4fb2-40a0-849c-b4b43f082c06", "value": "http://vocab.getty.edu/aat/300417642"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/1afc6b14-2401-49f1-b2b1-33290fcbccfa"> + <skos:prefLabel xml:lang="fr">{"id": "253b4c46-c767-4630-a844-0685d9747477", "value": "polycarbonate"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b2078cef-10e9-4919-bdf5-b15e943efa38", "value": "http://vocab.getty.edu/aat/300014473"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "dc598be8-30d1-4190-90fa-0945f5f0bfac", "value": "Thermoplastic polyester used in glazing, including bullet- and explosion-resistant laminates."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "3b85b805-75e1-45b4-a564-262e99a2b9b2", "value": "polycarbonate"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/076513dd-d250-40dd-8d5c-e79b55a282d0"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "797c44f4-9b1f-47bc-a0ab-b0a871fa5998", "value": "feet (units of measurement)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "032e7225-5d98-4d43-bcad-557658b70732", "value": "Standardized linear units of measure made up of twelve inches, 1/3 of a yard; equal to 0.3048 meters. It was a unit of length in both the imperial and US customary systems of measurement; since 1959, both units have been defined as the same by international agreement. Originally the unit was based on the length of a man's foot, varying in exact length at different periods and in different countries."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "b4d75a2c-b31a-4592-9636-13e8d7491525", "value": "http://vocab.getty.edu/aat/300379101"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e3a980ee-faa4-4ac9-b0cd-c567ce0d22ce"> + <skos:scopeNote xml:lang="en">{"id": "b55fc792-4e3e-4ed8-bf88-42f6d075bb93", "value": "Technique of scattering a monochromatic light, such as a laser, changing the vibrational, rotational, or electronic energy of a sample, the results of which help determine its molecular structure. Discovered by Indian physicist Sir Chandrasekhara Venkata Raman (1888-1970)."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "9eae4a70-545e-4cc5-b593-19fef69074c8", "value": "Raman spectroscopy"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "499e3a8b-a3c3-42d0-b89d-c35683ed9c40", "value": "http://vocab.getty.edu/aat/300266192"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/2cef2cdf-cdda-4e25-a135-ef71a8305497"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "c5b8c7fd-8a4d-4550-b17c-f27387a1b954", "value": "http://vocab.getty.edu/aat/300412058"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "10976056-e97c-4ad0-8bbd-770896cf1d65", "value": "The resolution of electronic imaging devices such as computer monitors, digital cameras, televisions, or scanners, expressed as the number of pixels per linear centimeter. Pixels per centimeter also describes the resolution of image files."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "ba4f06df-c240-4f27-b5ea-aca41c5099bf", "value": "pixels per centimeter"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/43a271b6-28f3-4524-b497-2d3e0902b6ca"> + <skos:prefLabel xml:lang="en">{"id": "86254734-81d4-47d9-9e36-ac0b8db41165", "value": "blanching (clouding condition)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ce9449b6-1d66-4c6e-a127-5f9919c6b4fc", "value": "A lightened or whitish area in layer of paint or varnish layer due to microscopic defects (voids, granules, etc.) that develop within a film layer as it ages. The defects can scatter light making the affected area appear lighter than the surrounding areas. It is distinguished from bloom, which is a surface phenomenon."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "81f9141d-a52f-40a9-a50a-fdd3bd448857", "value": "http://vocab.getty.edu/aat/300252414"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/392e4a35-2710-4467-86f9-650f5aea9630"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "6b1853f6-8de8-4cc9-9bbd-b91095b8bde6", "value": "http://vocab.getty.edu/aat/300417638"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "4a8b571b-4e7d-4007-99b7-d6afda0597c0", "value": "Method of acquiring funds or property through transference of ownership from one party to another as a free gift."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "af26216c-7929-4d82-b4ea-51ffcb80effa", "value": "donation (method of acquisition)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/0fa2731d-a349-4cf4-979c-3a3de0375a79"> + <skos:scopeNote xml:lang="en">{"id": "5f312ebf-0fe2-4bbe-8bd8-a51e301f9264", "value": "Accumulated groups of objects or materials having a focal characteristic and that have been brought together or are maintained by a corporate body."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "0fd03c31-d290-48c5-b9e1-4908ed3f6eeb", "value": "corporate collections"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c5a016b1-c666-4257-9695-f220673bc248", "value": "http://vocab.getty.edu/aat/300025979"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f41ad781-5aa6-46c6-8daf-7598ffcd4aae"> + <dcterms:identifier xml:lang="en">{"id": "c5625256-d59f-45a9-a01a-466916e19aea", "value": "http://localhost:8000/f41ad781-5aa6-46c6-8daf-7598ffcd4aae"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "dee6779a-1ffd-44b4-8ee0-fbd5fd801dfc", "value": "Intentional Sampling"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5b1a15d7-f4ce-48ec-871f-d09b330feeb1"> - <skos:scopeNote xml:lang="en">{"id": "73d8c808-51bb-451c-9a4f-e52bd725fb85", "value": "The history of the ownership and transmission of an object, including previous locations of a work. "}</skos:scopeNote> - <skos:altLabel xml:lang="fr">{"id": "92ab4db3-9efe-4485-889f-36ed3ae6a5e3", "value": "provenance"}</skos:altLabel> + <skos:Concept rdf:about="http://localhost:8000/cd3d2406-1ae5-42f0-98f9-43e965ae5d38"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:altLabel xml:lang="de">{"id": "8d018d67-9d42-4c5a-a7ee-98c10b1d49d2", "value": "Provenienz"}</skos:altLabel> - <dcterms:identifier xml:lang="en">{"id": "d1649443-ee3f-4c78-aad6-dfb77f33bc4d", "value": "http://vocab.getty.edu/aat/300055863"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "677f1d5a-23dc-41cd-83d2-79c22cac8c61", "value": "provenance statement"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "23ac3ca2-cdc0-43e1-bc3f-37dbf4a47a61", "value": "Superficial"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "aa20dcee-c513-4276-9c66-614b74026f09", "value": "http://localhost:8000/cd3d2406-1ae5-42f0-98f9-43e965ae5d38"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/bbe4af0a-867a-407f-8531-3ec4f6240090"> + <skos:Concept rdf:about="http://localhost:8000/b9cb3ead-ae6d-4f04-9551-e390defc35f2"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "0ee34330-5135-47b9-b19f-d164e2d94837", "value": "Paginierung"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "75a0bbb3-f3b0-46e0-8ca6-74ce1a9d8fdd", "value": "http://vocab.getty.edu/aat/300200294"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "6060b4e3-a735-4cdf-bb21-15364158faf4", "value": "pagination"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "5a71d448-e0aa-4064-b6ab-9ddaa78d8f07", "value": "pagination"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "7a7ca2dc-54be-4a30-b205-e19137dd945c", "value": "Generally, the overall configuration of the numbering in the book. The ordering of pages of a book, microimages on a microfilm, etc., by placing placing of consecutive numbers, one on each page."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "c8f44544-d7f0-4ee2-881b-87715dcc6266", "value": "Invasive"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e344fa87-5082-4eb9-a058-5a4944eebdc4", "value": "http://localhost:8000/b9cb3ead-ae6d-4f04-9551-e390defc35f2"}</dcterms:identifier> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/66ac5ba5-c498-48fc-9a31-e132dce34883"> + <skos:scopeNote xml:lang="en">{"id": "a0d66729-eec7-4031-ac96-2fd1417a4ed6", "value": "Conducting diligent and systematic inquiry or investigation into a subject or question, especially in order to discover or revise facts or theories."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "4de10d66-d0c7-4186-86f6-f7eb4a20f18b", "value": "research task"}</skos:prefLabel> + <arches:sortorder xml:lang="en-us">{"id": "68ebb44e-0ffa-4aba-848b-cb5487f3fcf2", "value": "2"}</arches:sortorder> + <dcterms:identifier xml:lang="en">{"id": "7383bcdf-b0a9-4896-9171-8621e2deeabf", "value": "http://vocab.getty.edu/aat/300054687"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/01ff64ed-bba4-40a1-8715-4ffbaa060780"> + <skos:prefLabel xml:lang="en">{"id": "b5a639d3-b52d-46d2-b0c1-e9a4a939ea01", "value": "high-speed photography (still photography)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "d01aeaae-0140-4956-a79e-562c1d3273b9", "value": "Still photography in which the camera shutter operates at a speed much higher than normal."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "346724a3-f946-4587-afbb-15318d4aa087", "value": "http://vocab.getty.edu/aat/300053462"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/77c89579-9cd7-4855-9126-7878278a1483"> + <skos:prefLabel xml:lang="en">{"id": "e6316cf4-6287-4eda-89d4-c0bc6b554d8d", "value": "acrylic painting (technique)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "98862173-61b4-4f66-8a44-f0284d90ce66", "value": "http://vocab.getty.edu/aat/300182574"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "91edcc87-1af7-4b27-ac96-81a9057d6a49", "value": "The art or practice of producing creative works with acrylic paint."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/c1b53f0c-f372-4094-b0cb-5be66a44cefe"> + <skos:prefLabel xml:lang="en">{"id": "5931a4db-0214-4198-b761-18398c34b625", "value": "adding (information handling)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c638c305-4401-4a86-b1bc-d52e062a3921", "value": "http://vocab.getty.edu/aat/300417256"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "85a2c982-5efc-445a-a808-2e642094d41f", "value": "The process or function of introducing new material or augmenting existing material."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/31ea3a41-4561-4e0e-af20-00157fe9715b"> + <skos:scopeNote xml:lang="en">{"id": "a17818d1-d0cf-414d-9cbc-8616e96f0e1a", "value": "Refers to the activity of producing prints as works of art; for the specific processes employed, use such terms as \"intaglio printing\" or \"mezzotint.\" For the production of other types of printed material, use \"printing.\""}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "3fdc2df4-69ad-49f4-9cf8-10ed883b4a75", "value": "Druckgrafik"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "015152db-cdab-466c-bcb9-daa3a113f814", "value": "http://vocab.getty.edu/aat/300131119"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "2ac3657e-6d94-4c32-9d5c-61593eeadb37", "value": "printmaking"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/75de259d-80da-4593-b175-fea47bad942c"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e0b23285-bd55-43d8-9cef-f28df2e2a44e"> + <skos:Concept rdf:about="http://localhost:8000/5b2762ac-b9de-4fe4-b410-fbf9d80a56e9"> + <skos:scopeNote xml:lang="en">{"id": "bfcd0d52-bb28-40e6-ab8d-e1d40432c75f", "value": "Testing a hypothesis or model. In science and related fields, refers to testing systematically under controlled conditions in order to discover the qualities, behavior, or effects of the subject of the experiment."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "9042e16b-59eb-40d3-a3e6-e55c43f24456", "value": "instrument settings"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "3aac6a49-d888-4f39-90ba-9fcb80554b3f", "value": "http://localhost:8000/e0b23285-bd55-43d8-9cef-f28df2e2a44e"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "da77af4e-09fa-4c1b-9d7a-c5ac9c071d64", "value": "http://vocab.getty.edu/aat/300137801"}</dcterms:identifier> + <arches:sortorder xml:lang="en-us">{"id": "44feae6a-50e0-47ec-a965-effef592dcb2", "value": "3"}</arches:sortorder> + <skos:prefLabel xml:lang="en">{"id": "df87820c-f0f5-49f0-9ec9-bef520cace30", "value": "experiment"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/4cd39562-1f73-4b78-9021-0b3a0e0be0e3"/> + <skos:narrower rdf:resource="http://localhost:8000/66ac5ba5-c498-48fc-9a31-e132dce34883"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f147d843-7622-4109-bd73-c7fb05f1adea"> - <dcterms:identifier xml:lang="en">{"id": "3294e9c2-cbe7-4354-8f61-f3cf55986017", "value": "http://localhost:8000/f147d843-7622-4109-bd73-c7fb05f1adea"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/eb804068-a099-4443-8b01-711002e131a5"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "9886efe9-c323-49d5-8d32-5c2a214e5630", "value": "sample description"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "40effb24-be2f-4cfb-a298-921155f67ffe", "value": "http://localhost:8000/eb804068-a099-4443-8b01-711002e131a5"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "4e9be89a-23d1-4f02-97dd-7c8a6c5ab2ed", "value": "project"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/79f44e59-670d-408d-9439-0c6810523d5e"> - <dcterms:identifier xml:lang="en">{"id": "d86c2aa3-0f74-4e17-bcea-3d74dc4fd95c", "value": "http://vocab.getty.edu/aat/300266036"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "92f066e9-e38e-4eda-82f0-3a1f0dce4ec3", "value": "dimensions"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "81adcfaa-5c15-462b-8653-4f25d54bf1b9", "value": "Measurable or spatial extent of any kind, such as length, breadth, thickness, area, volume, measure, magnitude, or size."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/2f3da2d3-1a5e-4603-ae2c-e716319ee226"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "24084bf5-685a-4b7c-ae3a-0c000b3fb2dd", "value": "http://localhost:8000/2f3da2d3-1a5e-4603-ae2c-e716319ee226"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7fa8d3cd-c6ee-44e2-b636-bd85b35341c2", "value": "initiative"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5bd94b1d-b8b0-44fb-8e1a-fab715b2e8d0"> - <dcterms:identifier xml:lang="en">{"id": "dd648f8a-3d9e-46cf-8812-066e95e85d44", "value": "http://vocab.getty.edu/aat/300435430"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "04cf2a40-7238-41f5-98fb-7e89f887af99", "value": "Information about the dimensions, size, or scale of the work, presented in a syntax suitable for display to the end-user and including any necessary indications of uncertainty, ambiguity, and nuance. It may include the scale of the work. It may also include the number of the parts of a complex work, series, or collection. "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/54d2f763-34aa-4830-bc1d-f9ed627cf164"> + <skos:prefLabel xml:lang="fr">{"id": "38ea09fd-60a3-4099-91f8-9dce6b0ff345", "value": "projets"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "8951f2fb-2b7c-4507-98c7-9bb6d9277fa8", "value": "project"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "63c0fa68-2cbf-4433-a880-086eca528d9c", "value": "dimensions description"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "20679e4f-9106-4b5e-b7be-f65c26fca54b", "value": "Artistic concepts comprising proposed undertakings or creations, including the creation of works of art or architecture, or for the actual carrying out of such proposals. When emphasis is on specific conceptual schemes for the organization or appearance of graphic works, objects, structures, or systems, use \"designs.\" For visual works and other physical items that are used to carry out the project, use \"projects (object groupings).\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "02c356c8-741c-41d6-8f3e-072b70ae356e", "value": "http://vocab.getty.edu/aat/300048788"}</dcterms:identifier> + <arches:sortorder xml:lang="en-us">{"id": "0d6ce8bb-6dd1-419d-8cd3-d657b471eaf4", "value": "1"}</arches:sortorder> </skos:Concept> </skos:narrower> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b4b5a0c9-edce-41a5-8df0-94b7e0e9631c"> - <skos:prefLabel xml:lang="en">{"id": "d49c521c-8785-49bd-b849-0acd2b28be70", "value": "abstract / summary"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "2c6e825e-74bf-4121-865e-b2772c518243", "value": "Brief summaries that provide the essential points of written works, such as the content of a publication or of a journal."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/a2e67013-c6a4-4024-bbfb-b691da0ecfed"> + <dcterms:identifier xml:lang="en">{"id": "8d5d8d2c-23cc-454a-9758-db82d71f942a", "value": "http://localhost:8000/a2e67013-c6a4-4024-bbfb-b691da0ecfed"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "6ef879fe-c68f-4b96-b29f-0857c77f68ba", "value": "http://vocab.getty.edu/aat/300026032"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "57ad31f0-ca7c-46e2-9f34-25b2a02d6b35", "value": "Kurze Zusammenfassung, die die wesentlichen Punkte einer schriftlichen Arbeit angibt, wie beispielsweise den Inhalt einer Publikation oder einer Zeitschrift. "}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "9c3cc9f8-6e75-4bc6-a167-26a7ccc82c2f", "value": "Zusammenfassung (Dokumentversion)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en-us">{"id": "75d6a9f7-598c-41dc-9f9f-36408c348774", "value": "sub-project"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "e15ff061-1381-4c2d-9d5b-94f270124874", "value": "http://localhost:8000/c5382a52-2102-4105-b96d-ddf6217d1a02"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/d9de4418-386a-4563-a212-ed3994ef8fbe"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c13e1882-c0c8-4044-8fff-1268ea9c721f"> + <skos:Concept rdf:about="http://localhost:8000/bdb0f548-836b-4619-a9b5-3e1a349ca358"> + <skos:narrower rdf:resource="http://localhost:8000/c2456fbc-83c6-49c8-9959-552bba0b2efd"/> + <skos:narrower rdf:resource="http://localhost:8000/aec56d59-9292-42d6-b18e-1dd260ff446f"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "3dfe6645-582c-4190-9fcc-96682a8b970b", "value": "For art information, a brief statement indicating how the work came into the current or an earlier collection or how it came to be on view at the repository. "}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "1717441f-2b94-4ade-91cb-d6460eac9855", "value": "credit line"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "7a63ea15-4ca9-4aa6-8d52-0f847366e45a", "value": "http://vocab.getty.edu/aat/300435418"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/e683fc2f-c24f-4cad-9e52-582f960de82e"/> + <dcterms:identifier xml:lang="en">{"id": "53906ca3-187a-4d0f-9e00-1b14a148b1b8", "value": "http://localhost:8000/bdb0f548-836b-4619-a9b5-3e1a349ca358"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/e3a980ee-faa4-4ac9-b0cd-c567ce0d22ce"/> + <skos:prefLabel xml:lang="en">{"id": "662f9c19-f2fa-46d0-9935-cb73795b3950", "value": "Project Techniques"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/324861e0-21c5-4bb4-9702-2ff478038a2e"/> + <skos:narrower rdf:resource="http://localhost:8000/082b3c01-0c6a-43e6-bac5-7ce2bdbcdeec"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a5538b87-8a0b-43a2-b4cf-e3fda813d888"> - <skos:prefLabel xml:lang="en">{"id": "09dc6e87-683b-48bc-9826-8b666409911d", "value": "configuration"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/2ad8d78d-fb7d-42af-9b68-60f12291803a"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "ccf273e6-24fc-4a9c-8db5-39e6422347ca", "value": "http://localhost:8000/a5538b87-8a0b-43a2-b4cf-e3fda813d888"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "905fb0c5-1371-4289-ba26-e2ac61d44fcd", "value": "http://localhost:8000/2ad8d78d-fb7d-42af-9b68-60f12291803a"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "98c6e817-45d9-46e0-bceb-601fcba51fb7", "value": "initiative"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0cb8fa21-80b6-4afe-aeca-c9863ed725d6"> - <skos:prefLabel xml:lang="en-us">{"id": "0c2addf5-880b-4c52-8aed-d1ef1cf97902", "value": "place found"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "ff0c5c3f-ac71-4596-9303-606f0038ea29", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/place/found"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "fd87f8ef-8948-4ba4-8c84-1a39bf4b4da2", "value": "Project Types"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "97675afa-71d5-45cd-a4ef-9d83ce221c4b", "value": "http://localhost:8000/75de259d-80da-4593-b175-fea47bad942c"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/81c81e47-be9c-493e-915f-8e5a2338d7c9"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/f7dda933-9221-4555-a828-493962ab9411"/> + <skos:narrower rdf:resource="http://localhost:8000/21121df1-9699-469d-924c-50f575c1ba83"/> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/7b5c17fd-f3ab-4745-85f9-88a6c30e0842"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="fr">{"id": "e2692741-5276-40e4-8a20-7b8dc81dab9c", "value": "document num\u00e9rique"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "2a23e9c1-56c4-4b15-8cc8-d0ad2adcbf7a", "value": "http://vocab.getty.edu/aat/300424602"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:prefLabel xml:lang="en-us">{"id": "074a5e0e-8593-4489-940c-16cf0bb9aab1", "value": "Digital Resource Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8d1180e7-b308-4402-b2a4-ed5322c2a90c"> - <dcterms:identifier xml:lang="en">{"id": "2336cee1-fbf2-46a1-a02e-4f2851055525", "value": "http://vocab.getty.edu/aat/300010358"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/b49383a7-a83e-4c1b-a705-e4c21d49ba17"> + <arches:sortorder xml:lang="en">{"id": "b5b46e36-1cd8-44d3-b6c6-48b61de6336d", "value": "1"}</arches:sortorder> + <dcterms:identifier xml:lang="en">{"id": "8dc12f1d-0448-4cb8-9006-88289d73f4f8", "value": "http://localhost:8000/b49383a7-a83e-4c1b-a705-e4c21d49ba17"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/44e1ef0f-091d-49f6-9365-921b5619d3a3"/> + <skos:narrower rdf:resource="http://localhost:8000/ede4e6a0-150c-4d2e-99ad-c21a42f309c8"/> + <skos:prefLabel xml:lang="en">{"id": "4bb83364-a32a-493a-b3c9-b0aa6f279d51", "value": "Dataset"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/df3c0aca-ef6f-4ea4-922a-3a15bc7d9673"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "f6525a55-e933-4b0b-a095-f125ad580bde", "value": "The matter or substance from which a thing is or may be made; the tangible substance that goes into the makeup of an art work or other physical object. Physical substances, either naturally or synthetically derived, range from specific materials to types of material. Materials may be designated by their properties, or by function or form. Included are raw materials and processed materials."}</skos:scopeNote> - <skos:altLabel xml:lang="fr">{"id": "a0d7123c-e9ab-4668-9ff9-c17e05f45fc2", "value": "mat\u00e9riaux (materials concept)"}</skos:altLabel> - <skos:prefLabel xml:lang="en">{"id": "762d2754-9b32-4300-913b-203caddbb43a", "value": "materials / media"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/b2f45594-6c10-49d7-a4b7-24e5ca839838"/> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/bb798e77-861d-47d8-a19b-5e9b25b6633d"> - <skos:scopeNote xml:lang="en">{"id": "167b0735-6cfd-435e-8c9a-f63881cd58a1", "value": "Persons' names written in their own hand."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "cd454817-22de-410a-b982-965a53b189b4", "value": "signatures (names)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/0c682c76-a6a4-48f0-9c5b-1203a6dc33da"> + <arches:sortorder xml:lang="en">{"id": "ee578a80-9a4e-4363-86d0-7cdf5f4fab2d", "value": "2"}</arches:sortorder> + <skos:narrower rdf:resource="http://localhost:8000/b8a8e087-6e8f-41db-98ff-202785afddbb"/> + <skos:prefLabel xml:lang="en">{"id": "305c62f0-7e3d-4d52-a210-b451491e6100", "value": "IIIF Manifest"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "96b5cf60-1e4a-47bc-ad84-009c2c6941b2", "value": "http://vocab.getty.edu/aat/300028705"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "562b64a7-796b-4507-9071-218ae32da275", "value": "Der eigenh\u00e4ndig geschriebene Name einer Person."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "d9b156ed-c7e8-4cfc-a884-e41e64a593c0", "value": "Unterschrift"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "988591aa-beb8-4769-bc89-61d40569f4b0", "value": "http://localhost:8000/0c682c76-a6a4-48f0-9c5b-1203a6dc33da"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/106feb03-935f-49c4-8e15-c30ee42adc66"/> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/477438d2-c018-456e-8513-ae7f563a66c5"/> + <dcterms:identifier xml:lang="en">{"id": "f49973d1-5b36-49b4-b797-11b4a5c9eb05", "value": "http://localhost:8001/81c81e47-be9c-493e-915f-8e5a2338d7c9"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/dff974ca-a3eb-479f-bbc3-15cba25c7136"> + <skos:Concept rdf:about="http://localhost:8000/3c86859c-7cb7-4595-9c88-1c4780c19ee0"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "fec5d442-5712-4cb8-ac2b-9ca03522f4a4", "value": "signatures (names)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "97711cb3-fd01-4648-9552-23df358099d9", "value": "Persons' names written in their own hand."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "51a60723-4f00-42d5-8438-3edf6b36a02f", "value": "Unterschrift"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "2bc20a91-fe91-45ac-a9b2-f89551bffb38", "value": "Der eigenh\u00e4ndig geschriebene Name einer Person."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "5f4ee6f9-422e-4edd-8a59-95e1359b4a5d", "value": "http://vocab.getty.edu/aat/300028705"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "5f663f6e-8b0b-4b26-a180-0049219e21d1", "value": "Images created using a binary numerical system electronically stored in the form of encoded picture elements, or pixels."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "d472136d-a3da-4d6e-b386-ee13aff400d3", "value": "digital images"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "47b16aec-53bd-46ff-a8c3-91c6aec34acd", "value": "http://vocab.getty.edu/aat/300215302"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "a3781ed2-b24a-467c-80bb-564d8c5b11e9", "value": "images num\u00e9ris\u00e9es"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/be7a77f4-4af8-459a-a420-a762b92e1aa6"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d835a4c9-22a2-4200-aa9e-50a7f09ce915"> - <skos:scopeNote xml:lang="en">{"id": "04171cc4-6a9f-46d5-baec-83a864626be1", "value": "Condition is the overall state of an object, being, or environment, including physical characteristics such as appearance, pristineness, level of damage, completeness, working order, or quality."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "ae0fa4e7-4714-4134-99ba-acb46d2ee5e7", "value": "http://vocab.getty.edu/aat/300389724"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/662b53c0-2e26-4b87-a6d0-109b7f611e05"> + <skos:prefLabel xml:lang="de">{"id": "33e50774-a077-48b4-8656-711efc2f39c1", "value": "Datenbank"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "72c01bf3-60a3-4a09-bc33-ddbd508c145f", "value": "condition"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "85ff890b-9a31-4c47-b442-fb0e4add816f", "value": "http://vocab.getty.edu/aat/300028543"}</dcterms:identifier> + <skos:scopeNote xml:lang="de">{"id": "3ec0243a-f1e6-4f68-8c49-655667578774", "value": "Elektronisch gespeicherter, strukturierter Datensatz, insbesondere solcher mit integrierter Software, die ihn auf vielf\u00e4ltige Weise verf\u00fcgbar macht. Eine Datenbank wird verwendet, um Informationen zu speichern, sie abzufragen und wiederaufzufinden, besteht typischerweise aus einer Sammlung logisch zusammenh\u00e4ngender Informationen, die als Einheit verarbeitet, in maschinenlesbarer Form gespeichert und als Datens\u00e4tze organisiert und strukturiert werden, welche in einem standardisierten Format vorliegen, um mit Hilfe eines Computers schnelles Durchsuchen und Finden zu erm\u00f6glichen."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "2a4eb0ae-03e6-4e89-8559-d219c758942e", "value": "base de donn\u00e9es"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "bab94d12-f866-4c31-bddc-5862fc78ac86", "value": "databases"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "5b8e0762-1651-4c74-a9aa-8ec0cb4864c9", "value": "Structured sets of data held in computer storage, especially those that incorporate software to make them accessible in a variety of ways. A database is used to store, query, and retrieve information, typically comprising a logical collection of interrelated information that is managed as a unit, stored in machine-readable form, and organized and structured as records that are presented in a standardized format in order to allow rapid search and retrieval by a computer."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/20d28e7a-0d4f-4055-b1cd-cf6f264e8432"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/9a51d30b-48e8-4f94-9344-cd2bb1d4b33a"> + <skos:Concept rdf:about="http://localhost:8000/17060cf6-23de-457f-b98f-8bce7b99d325"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d269e53f-b41d-4b43-afe2-571340c26a81", "value": "Written, digital, spoken, or signed representations of the attributes or qualities of something or someone."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "6155c419-191f-456c-b31e-8edfba711d56", "value": "http://vocab.getty.edu/aat/300411780"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "df8e4cf6-9b0b-472f-8986-83d5b2ca28a0", "value": "description"}</skos:prefLabel> - <arches:sortorder xml:lang="en-us">{"id": "4258a2d0-3da6-4518-b32e-c098fc4d9946", "value": "2"}</arches:sortorder> + <dcterms:identifier xml:lang="en">{"id": "b93e9c3e-bd7e-4ecd-8106-2c7535e9018e", "value": "http://localhost:8000/17060cf6-23de-457f-b98f-8bce7b99d325"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "b9446853-482b-4845-be26-cd28c765f747", "value": "digital document"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "38706f59-ca8d-4ea2-882d-7c74b56e6050", "value": "Statement Types"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/21bbcd2d-84b8-4604-96aa-add5e2e84588"> + <dcterms:identifier xml:lang="en">{"id": "e54abd52-bcf1-487f-8c2d-70991e7848fc", "value": "http://vocab.getty.edu/aat/300053142"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "836b41f6-54b4-413f-83d0-cbc9665aa5f9", "value": "stretching"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "57526448-4c35-4cc6-87a2-beb0b7117fb8", "value": "The process of extending something flexible, such as a cord or piece of fabric, from one point to another, across a space, or over a form, for the purpose of drawing it taut or rigid or for making it larger."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/b019227c-dcb0-4fa1-a187-b15a5613ffab"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "9f8878f5-c9f8-497c-bc5f-85368a1f2ac9", "value": "Management of all stages of the life cycle of data assets."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "b60aa700-1a65-4989-8bb8-1521a9cae160", "value": "data management"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "527c22e5-2552-47ff-b372-ecb97d4a07df", "value": "http://vocab.getty.edu/aat/300379871"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/6c796833-b93f-4c85-b9df-0614295be6f3"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/94326469-5f79-4830-96be-0beb2d3cfc6f"> - <dcterms:identifier xml:lang="en">{"id": "59ad89bd-a36d-4809-8b4e-5ee14fee17fa", "value": "http://localhost:8000/94326469-5f79-4830-96be-0beb2d3cfc6f"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/e63e5af7-bd48-4c0e-90d3-748bed444366"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "12c0c89e-6c49-44c6-89f7-6a83ce529f35", "value": "hypothesis"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "99adf401-7fde-4d45-8e0d-0d80e63f3098", "value": "endowment (method of acquisition)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "03fcd942-e5e4-4c4f-8fa4-235a0a32fb9a", "value": "http://vocab.getty.edu/aat/300417640"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "961611f1-15d3-4b65-9b5b-e69eabd3a2b4", "value": "Method of acquiring property, usually indirectly by using money or income that has been provided by a benefactor."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/2b6c07dd-5edf-406b-9a01-ed6753f111e0"/> + <skos:prefLabel xml:lang="en-us">{"id": "623e76a2-d591-479a-b117-11e656f03c03", "value": "Acquisition Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d12c085c-fa9a-4cc6-83b7-15031ce63c19"> - <skos:prefLabel xml:lang="en">{"id": "7060892c-4d91-4ab3-b3de-a95e19931a61", "value": "sampling motivation"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "41f7dc61-5941-4ca4-9276-896b05a7be0e", "value": "http://localhost:8000/d12c085c-fa9a-4cc6-83b7-15031ce63c19"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/73ccbcfc-224a-48d7-929d-a32fc9d4f066"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "b281851c-b139-486f-91f5-1c7cdec4b8c5", "value": "Method of acquiring property with the expectation that the recipient will sell, rent, or loan this property to a third party, for the mutual benefit of the consignor and consignee."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "f19c9213-946d-4283-8de6-f1c0e47c3faf", "value": "http://vocab.getty.edu/aat/300417650"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "90137344-1536-4568-8a7b-91a051285cca", "value": "consignment (method of acquisition)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e7971cff-8252-4ff7-bb18-58962dd92be2"> + <skos:Concept rdf:about="http://localhost:8000/268cadf1-0673-443e-8e39-1900c8f39ecf"> + <skos:prefLabel xml:lang="en">{"id": "d064286e-d118-4cde-a9a8-c63418100dc1", "value": "exchange (method of acquisition)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "c641bbdc-1e54-45e5-9d3c-4e772bbce9cd", "value": "Auflage (editions)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "6a9848d4-646c-44a3-bf83-543fcda8529d", "value": "editions"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "6a95eb20-4f29-4ba6-b6bb-cac789dfc6c3", "value": "Gesamtheit der Reproduktionen eines einzigen Werks, beispielsweise eines Buches, Drucks, einer Fotografie oder einer gegossenen Skulptur. Alle Kopien eines Buches, Drucks etc. werden im Wesentlichen von der gleichen Vorlage erstellt und zur gleichen Zeit als Teil der gleichen Auflage ver\u00f6ffentlicht."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "fbd0504e-2917-4304-88d3-df105287a851", "value": "Groups of multiples of one work issued together, such as of a book, print, photograph, or cast sculpture. All copies of a book, print, etc., produced from substantially the same master, and issued at one time are part of the same edition."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "acfcf04a-ef9c-4bcb-bc81-7a47634d6400", "value": "http://vocab.getty.edu/aat/300121294"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "181d6db1-bdf0-4866-b51e-241dc6dc9b07", "value": "http://vocab.getty.edu/aat/300263427"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "0a0ad65b-608c-4bd9-83b4-8601073217d5", "value": "Method of acquiring property by each party giving and receiving from the other party, usually regarding property of equal value. For example, an exchange may be made by individual authors, libraries, museums, and other institutions in which they exchange between or among each other their own publications or those of the institution with which they are connected, or duplicates from their own collections."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/7f675a9f-975b-4313-87bf-32d6ed32c22c"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e3acac51-5f58-4a8d-8c25-0949b1f664df"> + <skos:narrower rdf:resource="http://localhost:8000/cc49bc27-8b3e-4530-a98e-86bf6388dced"/> + <skos:narrower rdf:resource="http://localhost:8000/87137493-fef9-4485-b17b-7e390962ecfc"/> + <dcterms:identifier xml:lang="en">{"id": "741d7e71-546f-492d-94a7-cd3b344d1d80", "value": "http://localhost:8000/6c796833-b93f-4c85-b9df-0614295be6f3"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/9ce6c237-f015-4ee0-b7e3-9cc10b006483"> - <skos:scopeNote xml:lang="en">{"id": "20f777fe-12ac-4fd8-b492-77b5d26a83fc", "value": "Unique resource locators that, in addition to identifying a resource, provide the address of the internet document according to one of a variety of protocols."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "f32d0944-4229-4792-a33c-aadc2b181dc7", "value": "uniform resource locators"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/8276edb4-fcc7-4bd7-a549-f81bb421bb08"> + <skos:prefLabel xml:lang="en">{"id": "506c5e19-b62d-4dc3-a948-f43b2f03d3d7", "value": "bequest (method of acquisition)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "dc0db3c5-bfd5-42f6-a224-4b12d6929f90", "value": "http://vocab.getty.edu/aat/300417641"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "d6389848-6338-4aa6-9ff2-42abedda60b8", "value": "http://vocab.getty.edu/aat/300404630"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "2b963969-89ff-4064-a247-dabcfe7f855d", "value": "Method of acquiring property by transference or bestowal following the death of a benefactor, by means of the last will or other method."}</skos:scopeNote> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/eda33b72-4404-49fc-8cff-98383ff47234"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "0deb376a-bfc9-4382-a83d-62b13645116e", "value": "http://vocab.getty.edu/aat/300412165"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "3c16286f-b808-4eb0-9a65-3268c3899636", "value": "livre (unit of currency)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "6a903a8b-977e-47a7-917f-4455be816f23", "value": "General term for any of a number of monetary in use in France between the 8th and 18th centuries."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/86678b32-84f0-4506-8161-a2c49fae74ee"> + <skos:narrower rdf:resource="http://localhost:8000/e80c9f10-5bb5-45b9-b7c5-daa7f81f7211"/> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "3cc98475-3cdf-4a38-bbf6-905faaa407c1", "value": "Sampling Type"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/f41ad781-5aa6-46c6-8daf-7598ffcd4aae"/> + <dcterms:identifier xml:lang="en">{"id": "3e792816-c537-408c-8c91-d67b64b575b6", "value": "http://localhost:8000/86678b32-84f0-4506-8161-a2c49fae74ee"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/69cc3065-9bca-4983-adfa-65e7a50ee9fe"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "8e9f42d3-4286-4cd6-b508-397ad4cf5baf", "value": "http://localhost:8000/69cc3065-9bca-4983-adfa-65e7a50ee9fe"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/77021141-5b6e-4e72-afe1-c65bb0878026"> - <skos:prefLabel xml:lang="en">{"id": "0e580cee-d03c-42d4-9afb-048267636164", "value": "catalog numbers"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "e25fa680-a2d1-4285-8973-74a24819482d", "value": "Numeric, alphanumeric, or other identifying codes assigned when an art object, book, or other item is described or listed in a catalog, usually a published catalog. An example is an exhibition catalog. The numbers are typically not marked on the object itself. For numbers given to objects when they are acquired by a repository, prefer \"accession numbers.\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "10559d78-7073-48cb-95d4-f55a2bedd7df", "value": "http://vocab.getty.edu/aat/300404620"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/ecb98f2b-7104-4bbc-ae9a-8837104052a8"> + <skos:prefLabel xml:lang="fr">{"id": "8899c498-691d-43e9-b86d-19f244c7a7d6", "value": "paysages (environments)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "59660708-4888-4876-b094-249655cf9026", "value": "http://vocab.getty.edu/aat/300008626"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "b811a0c4-8866-4262-8d98-ea4e094f2256", "value": "Broadly used to describe portions of the earth's surface that share common repeating characteristics that can be comprehended at a glance. Landscapes are more than scenery or political units; they are systems of natural and cultural contexts. If possible use a more specific term."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "0055810e-e266-48e3-97e8-f3c0056948f2", "value": "Begriff mit gro\u00dfem Bedeutungsumfang, um Teile der Erdoberfl\u00e4che zu beschreiben, die sich dank wiederkehrender Charakteristika auf einen Blick erfassen lassen. Eine Landschaft ist mehr als eine \u00e4sthetische oder politische Einheit; sie ist ein System, in dem nat\u00fcrliche und kulturelle Zusammenh\u00e4nge interagieren. Wenn m\u00f6glich, sollte ein spezifischerer Begriff verwendet werden."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "7ee0e71b-7d0d-42c9-b0cf-ecb5bd9ea815", "value": "landscapes (environments)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "6183f169-10df-46cb-8c42-c30e005daffa", "value": "Landschaft (Lebensraum)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/bf21abdf-897f-48c0-b9aa-c1f46502cdcc"> - <skos:prefLabel xml:lang="en">{"id": "05fb4d96-0287-4db3-90da-6fd10beb1a07", "value": "model number"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/68e3884d-a4da-4a1c-9b41-853cdb59d5f9"> + <dcterms:identifier xml:lang="en">{"id": "b7f18c79-9a67-48d1-b41e-8bb9835a2f22", "value": "http://vocab.getty.edu/aat/300404125"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "3f7ba4b5-452a-478e-b8a5-4a1db3faef6f", "value": "http://localhost:8000/bf21abdf-897f-48c0-b9aa-c1f46502cdcc"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "80b2ad18-f1cd-4616-927c-4f087f15ced3", "value": "natural objects"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "63a2dfe7-4eb6-4419-84bb-eee0b00eb899", "value": "Objects that occur in nature, not made by humans. Used primarily in the context of distinguishing man-made objects from natural objects."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/9966b87c-8914-472c-ac0c-cc5378c7127d"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1e4e1d74-2c6b-4a09-adb9-fd1b314584e7"> - <dcterms:identifier xml:lang="en">{"id": "4a59e961-00f8-4b82-ac61-bcb9288d84be", "value": "http://vocab.getty.edu/aat/300417432"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/9492b046-b723-48c9-a1f7-6117c62e967f"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d20d3a7a-9bc6-45cc-b0ac-b5e059eb7caa", "value": "Unique alpha-numeric strings assigned by a regsitration agency to identify content and provide a persistent link to a location on the Internet."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "8e48fc8c-a74e-4464-8075-15b07839f153", "value": "Digital Object Identifier (DOI)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ec2c91b4-6c62-4267-bee4-0d01a22605e2", "value": "Works of art in any medium, including performance art. A work of art may exist as a part of a larger object, e.g., a mural painting or a painting on a piece of furniture. When referring to the study or practice of the fine arts or the fine and decorative arts together, use \"art.\" In reference to pieces of fine or decorative arts as collectables rather than museum objects, in English use either \"art objects\" or the French term \"objets d'art,\" which emphasizes this meaning."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "88ed0e4f-e1e0-461c-9ed1-5523eb331284", "value": "\u0153uvre d'art"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "a03797ed-d142-4394-b7c0-6e539f24faaa", "value": "works of art"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c096495a-da7e-421c-b158-355f909d96fc", "value": "http://vocab.getty.edu/aat/300133025"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/aa1c30cc-f0cb-4f4a-8faa-9ba2d42323f5"/> + <skos:prefLabel xml:lang="en">{"id": "29716c8e-fc0d-441b-89fa-c7a19fa86810", "value": "Visual Work Depicted"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1148e436-446f-4bb7-9e35-1808ec1e56e4"> - <skos:prefLabel xml:lang="en">{"id": "170b84a4-646d-4e30-932e-f2c719ebf35f", "value": "unique identifiers"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/71067890-c1e8-471c-9144-51bf656fb632"> + <skos:prefLabel xml:lang="en">{"id": "ffdfd602-933d-46ff-9dae-156bd5479947", "value": "documents (object genre)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "011aa470-62db-40f8-be92-add6b35ae7d9", "value": "http://vocab.getty.edu/aat/300404012"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "8ee57b91-83aa-4e1e-abf1-1fc6eb12e1ee", "value": "Numbers or alphanumeric codes that are not repeated within a given environment and used to unambiguously and uniquely identify an object, record, or data element."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "feeb02c5-20aa-4105-90a4-c3e5b6d4b641", "value": "Physikalische oder digitale Hinterlegung eines Objekts oder einer Information, die so gestaltet ist, dass sie der Kommunikation dient. Im weitesten Sinne beinhalten \"Dokumente\" alle Eigenschaften um sie zu katalogisieren oder zu Verschlagworten, das schlie\u00dft auch nicht druckf\u00e4hige Medien mit ein. F\u00fcr die Aktivit\u00e4t des Sammelns und Aufnehmens von Informationen, siehe \"Dokumentation\"."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "d6622efb-aabc-47ab-b91a-d4dfeb51e52a", "value": "http://vocab.getty.edu/aat/300026030"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "e5e8b255-2dad-45e7-bb35-b9e0591ba4bd", "value": "Dokument (Objektgattung)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "07769b03-336d-464a-a7b8-927e1908f49a", "value": "Physical or digital representations of a body of information designed with the capacity to communicate. In its broadest sense, \"documents\" include any item amenable to cataloging and indexing, that is, including nonprint media. For the activity of gathering and recording information, see \"documentation (function).\" For specfic types of documents, see concepts under \"document genres.\""}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/7db49ae3-80dd-4c2e-83f3-842446415f13"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d7195ad5-217f-4a62-8cf2-2aac59cf88f5"> + <skos:Concept rdf:about="http://localhost:8000/3966ec93-968e-4f31-a38b-75adadc09c3c"> + <dcterms:identifier xml:lang="en">{"id": "1e82d1ec-73a7-47c1-bc38-007dfc10143e", "value": "http://vocab.getty.edu/aat/300024979"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "9649f869-8040-471b-8bb9-6908c3f0c2f1", "value": "Members of the species Homo sapiens and their close extinct relatives, as distinguished from other animals, spirits, or other entities."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "088d3d34-1665-499d-bdba-b2caf36d68ac", "value": "manuscript designations"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "eaf7e7e8-bc00-4dd9-8fa0-2d177dce7cbf", "value": "http://vocab.getty.edu/aat/300404013"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "56edb075-209a-443d-9893-20e8d51cd736", "value": "Alphanumeric codes that are traditionally used to uniquely identify a given manuscript within a defined environment. Manuscript designations may be used as titles of manuscripts. An example would be \"Ms. Ludwig II 7.\""}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "55d6667d-939c-4657-bb08-ccc6024005d1", "value": "people (agents)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/371aae9e-044a-475b-8933-2275236232df"/> - <skos:prefLabel xml:lang="en-us">{"id": "e6b76d25-ac44-402a-917e-6b7f60cb4af1", "value": "Identifier Types"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/1c655462-b04c-4f44-a236-151e6625f37f"> + <skos:prefLabel xml:lang="en">{"id": "90f7c85d-bf72-4dc4-b0fd-29ced87c340d", "value": "polypropylene"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "59731d52-2f94-488a-944e-a13382073d67", "value": "Tough, lightweight, rigid plastic made by the polymerization of high-purity propylene gas in the presence of an organometallic catalyst at relatively low pressure and temperature."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "df7d4de4-d3ea-4d21-af25-0461cb9679a4", "value": "polypropyl\u00e8ne"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c53cf978-6823-48a9-ad19-6fce066a0e5b", "value": "http://vocab.getty.edu/aat/300014489"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/1b0aaa1b-cc86-4b07-a317-142261d3f580"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"> - <dcterms:identifier xml:lang="en">{"id": "b2624860-380b-47c0-92cf-6377366c1661", "value": "http://localhost:8000/acce3a82-797a-4b75-b7d0-e7fcc82119bc"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/9517a001-391c-4b5b-9939-b62e832721c1"> + <skos:prefLabel xml:lang="en">{"id": "659245f9-4580-4b81-86ac-9a5c62760f45", "value": "African American"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "5557db8e-7d50-422a-9949-2ea6cbeafec9", "value": "http://vocab.getty.edu/aat/300018125"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "4bb3de41-d7bc-440c-b0bb-de5dfdb9358f", "value": "Arches Universally Unique Identifier (UUID)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "64d11030-8fb8-42ba-b3c9-a31551d8c5f3", "value": "Designates the styles, culture, and heritage of Americans of African descent in North America. The styles capture the essence of the African American experience and how personal and political rebellion and triumphs over prejudice and social adversity have enriched and contributed to the music, art, and literature of American culture as a whole."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/5bc20189-e804-45e2-bb65-b8d6c0ceda3b"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8d57caff-b29f-407c-b2c9-6ad0d21ab80f"> - <skos:prefLabel xml:lang="en">{"id": "088f9912-a19a-43c6-9cbb-5dadef720973", "value": "ORCID iD"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "69a4b36d-fe90-4532-ad6e-ded88f9a0258", "value": "http://localhost:8000/8d57caff-b29f-407c-b2c9-6ad0d21ab80f"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/b53e679f-73d0-4933-a39c-facf23ce0c49"> + <dcterms:identifier xml:lang="en">{"id": "9af59fa5-b23b-4829-b53c-7f1c554a322a", "value": "http://vocab.getty.edu/aat/300018772"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "60ad63b3-251e-432a-9dc2-fdf611b6b576", "value": "philippine"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "445dae1b-633d-41a2-a898-b5d984d5c945", "value": "Refers to the hybrid style and culture of the Philippines reflecting the region's influx of trade and exchange with Chinese, Islamic, and Hindu cultures. Domestic folk arts of the archipelago nation reflect Indianized geometric motifs in textiles, weapons, and containers. Pre-colonial architecture featured megalithic monuments similar to late Tantric east Javanese tjandis. Painting and sculpture in the region reflect Indian erotic imagery, Buddhist images, and ornamental, curvilinear designs. Ceramic styles were often imitations of Chinese Sung Dynasty designs. As a result of Spanish colonialism from the 16th to 19th centuries, art later predominantly reflected Spanish Christian iconography in painting and colonial churches and cathedrals in Neo-Byzantine and elaborate, flamboyant designs. Secular art gained prominence in the later 19th century and followed European or international business aesthetics."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "e5392d60-c72b-44e5-ac02-3c345b805c2a", "value": "Philippine"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "6fb78ee3-78f5-473a-a105-d5fd71619678", "value": "http://localhost:8000/1b0aaa1b-cc86-4b07-a317-142261d3f580"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c24d6806-75bf-4127-9fd6-c870cc160063"> + <skos:Concept rdf:about="http://localhost:8000/8c59ec9a-c7df-4c52-9104-6b7de8ee8151"> + <skos:prefLabel xml:lang="en">{"id": "a1d0092f-2ec0-4bd1-b5ab-c52fe58b6879", "value": "Vietnamese (culture or style)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b9d7371e-bd2b-47ab-aff0-6f63f986b484", "value": "http://vocab.getty.edu/aat/300019239"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "971c87b2-466d-4006-8773-4d89cb829b10", "value": "Refers to the cultures that developed in the region situated along the eastern coast of the Indochinese Peninsula known as modern North and South Vietnam. Artistic production in this region features a broad scope and an intermingling of styles, featuring dynastic temple construction that included variations of tower shrines, sanctuaries, porticoes, molded capitals, and recesses, and grandiose and refined sculptural programs featuring monster figures that decorated corners of architraves, figures of lions, solid snake-like ornamentation reminiscent of Indo-Khmer foliage motifs and Dong Song styles, and large icons and relief panels carved in sensual styles suggestive of Chen-la works. From the 15th through 18th centuries, architectural planning incorporated Confucian and Taoist elements and sculptural styles of this period feature elaborately-colored woodwork based upon the dragon-and-cloud decoration of the Ming and Ch'ing Dynasties of China."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "7a4fd82d-e3fd-4099-9bbf-a7618114395b", "value": "sale record number"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "94dbc6e3-c17e-469e-bba7-db51371f9684", "value": "http://localhost:8000/c24d6806-75bf-4127-9fd6-c870cc160063"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/f7bc2695-ae97-4901-946d-805cde489257"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/4b220b03-17eb-44b8-b3db-3fa46f23697d"> + <skos:Concept rdf:about="http://localhost:8000/68c7d1a5-862a-4c08-bd7e-9047c49b102d"> + <skos:prefLabel xml:lang="en">{"id": "86d90174-abf6-4dcf-b43f-73a3e6361945", "value": "Latin American"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c76a188b-5eb9-4b6b-98fa-61bd185b7ba0", "value": "In the strictest sense, refers to the cultures of the countries of South America, North America, Central America, and the Caribbean that were originally colonized by Spain. It may also refer more broadly to all the cultures of this region, including those that were originally colonized by the French or Portuguese."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "44d6c243-2cdb-4da3-8c0e-0294764c6208", "value": "http://vocab.getty.edu/aat/300080819"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "fc988ea5-f815-4fba-9b75-415e43152806", "value": "session number"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "d66ea1c2-2948-45c3-be30-7c3af84d68c3", "value": "http://localhost:8000/4b220b03-17eb-44b8-b3db-3fa46f23697d"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/d0705d15-91a1-4ac3-b298-94a554b5ef77"/> + <skos:prefLabel xml:lang="en-us">{"id": "896c4df3-d4ef-4166-af3e-ba81339c356e", "value": "Ethnicities"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a064d600-c179-4df7-9f1f-17f4b33472be"> - <dcterms:identifier xml:lang="en">{"id": "39f76681-aa02-4d5a-82ed-30297dd586cf", "value": "http://localhost:8000/a064d600-c179-4df7-9f1f-17f4b33472be"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/e6f035a6-b69d-494c-a168-55e9f1cdf3fa"> + <skos:prefLabel xml:lang="fr">{"id": "099d3527-211a-4df2-b540-756923834d32", "value": "am\u00e9ricaine"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "0b81a68e-999d-4c8d-90cc-dd1c6bd6ead8", "value": "Refers to the context of or associated specifically with the modern political entity of the United States of America."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "f0ee6a2a-d39e-45c1-b683-66f8dff17fe5", "value": "http://vocab.getty.edu/aat/300107956"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "849dbe6c-7388-43b7-998f-5f14754389ff", "value": "image number"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "9a2d5dac-40dc-4e8c-b570-e554dfdc4e8d", "value": "American (North American)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"> - <skos:prefLabel xml:lang="en">{"id": "ce6179ef-f9d7-4ba9-b242-0e466912a6b0", "value": "legacy identifier"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/95950aa4-9344-4258-be98-829c70c69c8e"> + <skos:scopeNote xml:lang="en">{"id": "474e0af8-23ec-4df6-9dcc-2425e140ce79", "value": "Designates the styles, culture, and heritage of Americans of Asian descent in North America."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "c9f9b132-ccbc-489f-85a9-9fe01b7270cc", "value": "http://localhost:8000/407a6555-c7dc-498f-b152-cafb6c0b9777"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ae296b54-ab45-43a3-8875-bf8a300b0ebb", "value": "Asian-American"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "1134c6f5-4ef0-49db-8c40-cc2683831e9a", "value": "http://vocab.getty.edu/aat/300385962"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fbc4dc2f-61f7-4d80-969d-d61fdd71de23"> - <dcterms:identifier xml:lang="en">{"id": "189ef768-c1fa-4474-87cb-dcbe7cbe8435", "value": "https://data.getty.edu/museum/ontology/linked-data/dor-uuid"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/ba1b2532-fc57-4968-a104-3012d795762b"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "c267cb29-f5cb-45a0-8d09-aef320278963", "value": "Getty Digital Object Repository (DOR) Universally Unique Identifier (UUID)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "cd620b94-8578-4abc-b264-5cc43f9c4e73", "value": "http://vocab.getty.edu/aat/300018322"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "0e798873-7d24-447e-a6cf-95af8c1b6a99", "value": "The cultures, styles, and periods characteristic of China. To specifically refer to the cultures of ancient Chine, use \"Ancient Chinese.\""}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "f88bc948-569a-4b8d-b25b-6227c6ff8c3f", "value": "chinoise"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "cb6a9eb8-2fbe-4f1e-b530-960580e8dfb4", "value": "Chinese (culture or style)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/4faa936a-69db-476a-ba11-708891fcd066"/> - <dcterms:identifier xml:lang="en">{"id": "61ff5eb6-7a3c-49b1-920a-a0e39d2cd0a0", "value": "http://localhost:8001/e3acac51-5f58-4a8d-8c25-0949b1f664df"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d2d7ac19-a9b6-436c-936a-3c6f314b2742"> - <skos:scopeNote xml:lang="en">{"id": "fcfb1534-0c7f-4f9c-bbc0-560569d65206", "value": "Numbers that firms such as commercial art dealers or galleries may assign to objects when taking them in to stock. These are typically written or affixed on the objects themselves, and can be used to associate particular objects with entries in a stock or sales book. These numbers are not necessarily unique, and objects may have multiple stock numbers."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/a210183c-c615-46f6-ac2c-e3c378817e34"> + <skos:scopeNote xml:lang="en">{"id": "01d2f71f-55bf-4987-a1c6-2062e611fa35", "value": "Styles and cultures that developed in Spain and elsewhere under Spanish influence, especially those that developed under the influence of colonists from Spain and their descendants in the Americas."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "bb787c86-e3a5-4f29-9ac3-d2630dc2ae0a", "value": "Hispanic"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "99c9385b-27d4-4527-9a0b-b26d7b77190b", "value": "http://vocab.getty.edu/aat/300386138"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "832e150c-e180-4a12-8bae-3b4c16085dc4", "value": "Object Stock Number"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "fe97af97-8b62-4186-bc8a-aeb51b5337c3", "value": "http://vocab.getty.edu/aat/300412177"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/0d660e45-fde0-47d8-b0c8-949a9ad397ef"/> - <skos:narrower rdf:resource="http://localhost:8000/55801709-9719-473f-9608-949f08b32eb7"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/265b2804-4472-4540-b7bb-b81ced9e41fd"> - <dcterms:identifier xml:lang="en">{"id": "d9e62e2d-1824-4adb-afe7-c98517fe5463", "value": "http://localhost:8000/265b2804-4472-4540-b7bb-b81ced9e41fd"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "9fe7e3b3-fbb6-4eda-ba21-930633ffbec2", "value": "VIAF"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/352621c3-34c4-4e82-8637-247f816650ad"> + <skos:scopeNote xml:lang="en">{"id": "0c67112e-ee65-4863-9b66-cb99ef233aab", "value": "Refers to the culture of the modern nation of Russia, or to the cultures that have occupied the principal lands of historic Russia in eastern Europe and northern and western Asia. It may also be used to refer to the larger group of cultures controlled by the historic Soviet Union."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "d2b9a706-c56a-4e3d-97d2-3d491b2a5cd0", "value": "Russian (culture or style)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "da6d2a3d-69ec-4e6b-8e24-f7f9139cd725", "value": "http://vocab.getty.edu/aat/300111276"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "eed8a71e-fdab-4e66-884a-3156278d2fdc", "value": "russe"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/b16acdf3-a9c0-4c99-9ea1-dd17972cf288"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ba983b76-67d1-4788-bbf3-40aa8093a268"> + <skos:Concept rdf:about="http://localhost:8000/b178e756-d483-483f-b9e0-cb9f24963676"> + <skos:prefLabel xml:lang="en">{"id": "c83a8f54-2cef-4def-8f20-2ae5da6c34f9", "value": "Rom (culture)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "f038547e-25ba-475a-8f5f-18b97ebf4b8e", "value": "http://localhost:8000/ba983b76-67d1-4788-bbf3-40aa8093a268"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "d6365afa-4ebf-4b85-9e1c-d4f2d4c7c573", "value": "Getty Manuscript Number"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "3f5df203-c9f5-4d75-8853-1d721a194523", "value": "The culture and ethnic group of the traditionally itinerant people who originated in northern India but live in modern times worldwide, principally in Europe. Most Roma speak some form of Romani a language closely related to the modern Indo-European languages of northern India, as well as the major language of the country in which they live. It is generally agreed that Roma groups left India in repeated migrations and that they were in Persia by the 11th century, in southeastern Europe by the beginning of the 14th, and in western Europe by the 15th century. By the second half of the 20th century they had spread to every inhabited continent."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "25913304-02ad-4e1c-97db-2f6bd8da0f57", "value": "http://vocab.getty.edu/aat/300404070"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/5c57af12-3510-4dfb-b924-97bbf55ddbd3"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b7929847-1bff-4ca6-b3f3-488b4a37db81"> + <skos:Concept rdf:about="http://localhost:8000/41bc72c3-eb83-42b6-96c3-639bc9888ed6"> + <dcterms:identifier xml:lang="en">{"id": "98079372-cf8e-46c8-9be4-87bc7b0d4991", "value": "http://vocab.getty.edu/aat/300386381"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "dca63a25-8c2a-461d-8755-b052022f3b6b", "value": "Numeric, alphanumeric, or other identifying codes assigned when an art object, book, or other item enters the collection of a museum, library, or other repository. Such codes are unique within the set of codes, and specifically identify the particular item at hand. The numbers may be marked on the objects or not."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "52ed3784-f6ec-4c8d-94f8-5adbcdc7e9ce", "value": "http://vocab.getty.edu/aat/300312355"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "60e3ed76-fe1a-460b-898c-a6554814f6c1", "value": "Accession Number"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "b32795f3-3be7-412f-9d0a-72e1166f8593", "value": "Latino"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c9594080-3dd9-48e4-8dc2-2ad587dac537", "value": "As a general term, belonging to Spanish-derived culture, especially referring to those of Spanish origin in North, Central, or South America."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5627a014-3495-4d24-9543-21a577adaaaf"> + <skos:Concept rdf:about="http://localhost:8000/f727ef24-5040-430b-975b-741eb542cd2d"> + <dcterms:identifier xml:lang="en">{"id": "ea73b356-c2fb-4bd9-8351-5da7725545b7", "value": "http://vocab.getty.edu/aat/300020656"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "7c7ecd04-b93c-4df0-ac91-e6edc09cf7ff", "value": "Styles, periods, and cultures of the continent of Europe, which is in the northern hemisphere, is bounded by the Arctic Ocean, the Atlantic Ocean, and the Mediterranean Sea, and is generally considered to be delimited on the east by the Ural Mountains."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a0d7266c-773d-4db3-90e4-9dbbd9c27310", "value": "European"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "6d5bb7f8-ebce-4927-8082-d0417eafc90d", "value": "In bibliography, 10- or 13-digit number assigned before publication to a book or edition, which identifies the work\u2019s national, geographic, language, or other convenient group and its publisher, title, edition, and volume number."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "401b2f1d-aa2d-4877-b446-e3aff5bd850d", "value": "http://vocab.getty.edu/aat/300417443"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "7b7431b6-7097-4757-ba9b-ad550e014a2e", "value": "ISBN"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "71f496bf-078b-4934-bb2a-65916d8d09b0", "value": "europ\u00e9enne"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/080f39d1-b54b-4260-9506-57eb802e5b4e"/> - <skos:narrower rdf:resource="http://localhost:8000/043f82e6-540c-4c3c-a37c-365509c12cbe"/> - <skos:narrower rdf:resource="http://localhost:8000/be56d99a-4be6-4e2e-ab58-2432d8a77e46"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"> - <skos:prefLabel xml:lang="en">{"id": "84d3a8fe-444e-4789-874a-1d5fb5adff73", "value": "universally unique identifier (UUID)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "451ac0d7-cdb7-4fd0-94ec-254fab397bd9", "value": "http://localhost:8000/86176918-3ea5-4468-b477-3f82c6c1a249"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/ab4e604c-8af4-4b55-8d62-a9875c260552"> + <skos:prefLabel xml:lang="en">{"id": "736a244a-ea71-4bda-807c-3405136c8e2a", "value": "Arabian (culture)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "2864cb27-6bb8-4282-a5ed-1227b86da509", "value": "http://vocab.getty.edu/aat/300019797"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "6c5a66c7-121f-4892-b1cd-e0efb4fcc6a6", "value": "Refers to the culture of the semitic race inhabiting the Arabian peninsula and neighboring areas, particularly during the pre-Islamic period from about 4,500 BCE to the early 7th century CE. Periods related to Arabian cultures."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/45eeaca7-077d-45d2-9a3b-34268ddd9ea6"> + <skos:Concept rdf:about="http://localhost:8000/fbd4a835-713e-421a-9f0e-466b2b3845bf"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "26094e9c-2702-4963-adee-19ad118f0f5a", "value": "Gallery Systems' The Museum System (TMS) Integer Identifier (ID)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "3a1d4f1a-ad57-40e4-b261-571c522d4af4", "value": "https://data.getty.edu/museum/ontology/linked-data/tms-id"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "de2e85ac-1c34-4898-8744-b35397fd7d63", "value": "French-Canadian"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "629cf577-bc80-4cc9-aeb0-05cf0c6a5728", "value": "The culture of Canadians of French ancestry, or of early French settlers in Canada."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "4e60ea1e-aa8c-46a9-8648-2eb24a9b7a33", "value": "http://vocab.getty.edu/aat/300386120"}</dcterms:identifier> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/aaf5444e-3e94-4f4b-905c-c5c5c7c35ec8"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "17276f52-44a8-4279-a401-c059934732bc", "value": "bytes"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "dec139d6-fef0-4da7-af0a-a115b3c12313", "value": "http://vocab.getty.edu/aat/300265869"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "7fcaf8b4-a686-4e26-bbca-101664781213", "value": "Unit of storage measurement, specifically a collection of 8 bits, in digital technology, or computers. It represents a value, or code, for an individual character or typographic symbol."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/a35e64c3-6cea-4ae7-8208-bc1b3204a58e"> - <skos:narrower rdf:resource="http://localhost:8000/2a5d7e8c-df22-434e-8208-66a7d80b1168"/> - <dcterms:identifier xml:lang="en">{"id": "df0adbeb-95b8-4221-9086-38dea9371296", "value": "http://localhost:8000/a35e64c3-6cea-4ae7-8208-bc1b3204a58e"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d615bfb7-1503-42ab-8bdf-ab384ca24be6"> - <skos:prefLabel xml:lang="en">{"id": "a5fd3707-c7ed-4ba9-aa6e-3ef8b972e76c", "value": "chemistry"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/5d9da344-2f3a-4f35-a5cd-3cb3f4a3535c"> + <skos:prefLabel xml:lang="en">{"id": "37054d3e-bef7-4051-83cc-1cb3ed4fdb77", "value": "Laotian"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0d69e940-a223-4ea7-974c-abd4c5cc8ec8", "value": "http://vocab.getty.edu/aat/300019195"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "754a223a-6e81-4d05-9378-06d31db9b2c2", "value": "Branch of physical science that deals with the composition and properties of the elementary substances of which all bodies are composed, the laws that regulate their combination, and the various phenomena that accompany their exposure to diverse physical conditions."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "8b2f7bb2-8710-44fc-acbb-9d605f99a0e1", "value": "http://vocab.getty.edu/aat/300054537"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "2f02a548-c5d4-46d8-b812-3e870ea71e28", "value": "Refers to the style associated with Laos located in the valley of the Upper Mekong. The hybrid style reflects Myanmar, Thai, and Khmer influences. The basis of the artistic style of this region is religion and tradition, characterized by Buddhist and Hindu iconography and narrative relief panels rooted in Theravada Buddhist and Hindu principles. Folk arts in this style feature basket making, wood and ivory carvings, and silver and gold works. In architecture, the style features temples patterned after Khmer temple mountains with sloping, stepped roofs comprised of small flat tiles, and the wihan, a rectangular building containing an altar with Buddhist images. In sculpture, the style is mostly devoted to the representation of Buddha in royal attire. Sculpture is constructed in bronze, lacquered wood, and sometimes stone and is adorned with inlaid glass or mother-of-pearl. Bas-relief sculpture is rare and is mostly found as wood murals, though mural scenes in lime mortar, stucco, or cement exist. Textile arts in the style feature silk cloth with ikat and weft designs that include dot patterns, geometric and zoomorphic motifs."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/39fa12c0-6624-41bd-83fa-0fc28b5250bc"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/693bf783-7cd9-4ce3-a7d2-fb59b80c1f2e"> - <dcterms:identifier xml:lang="en">{"id": "cb59dc0a-31d9-497b-bbc3-e624d7dcfcf0", "value": "http://localhost:8000/693bf783-7cd9-4ce3-a7d2-fb59b80c1f2e"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "13dbca47-5293-4e31-a102-b3d93ba58fd4", "value": "art conservation"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/a5ed5507-0574-4726-ae98-fa0cd971c349"> + <skos:prefLabel xml:lang="en">{"id": "e2abb542-6429-497f-b7b6-168f5b900152", "value": "Asian Indian"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6b82a322-0a2f-48e7-a434-9fd6fbc43189", "value": "http://localhost:8000/a5ed5507-0574-4726-ae98-fa0cd971c349"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "4697f294-6b29-48aa-933a-9a82093b11d6", "value": "Profession Technique"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a7860a50-de38-404a-a207-592c2fabd2b4"> + <skos:Concept rdf:about="http://localhost:8000/46a2da83-1594-4823-8480-1407d3f1d671"> + <dcterms:identifier xml:lang="en">{"id": "eccf9e13-685e-4ecd-85a6-41645412c466", "value": "http://vocab.getty.edu/aat/300435249"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "e2bd295a-93b0-47cb-b3d4-468f26da843d", "value": "illumination (image-making process)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "5a288134-9a1b-4023-9bd9-8561bca41394", "value": "Action or process of creating illumination, which comprises paintings and other adornments applied to books, scrolls, or other document types for the purpose of illustrating or decorating the text. "}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "e2072547-ae47-4ce8-af30-74f382795767", "value": "http://vocab.getty.edu/aat/300220539"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "640489d5-b65c-4a2e-848d-11c920654ffb", "value": "General designation for the race, ethnicity, styles, culture, and heritage of people of sub-Saharan African origin or descent in places outside Africa, or of members of any dark-skinned group of peoples, including those of Australian Aboriginal origin or descent."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "6017dc3d-3bfe-46de-b0d0-b6995a7069c4", "value": "Black (general, race and ethnicity)"}</skos:prefLabel> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/26a055ac-f801-4170-a4d5-a11d72d51eba"> + <skos:scopeNote xml:lang="en">{"id": "b16fb387-4a1b-4082-b2fc-09078d3d54fc", "value": "Method of acquiring property by legally conferring existing ownership to another person or institution; it does not necessarily involve benefactors."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "09fbd1a3-65bf-47f9-959f-7744550430ed", "value": "transfer (method of acquisition)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "1873b9ba-9203-41cf-9cad-3e8452b04b59", "value": "http://vocab.getty.edu/aat/300417644"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/61699f66-0d46-4452-b168-ba989809e77e"> + <dcterms:identifier xml:lang="en">{"id": "ba1896ce-ff28-487b-b906-bf9637fb0f97", "value": "http://localhost:8000/61699f66-0d46-4452-b168-ba989809e77e"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7e830256-025b-4742-ba26-cd3f88813bff", "value": "Physical Thing Production Techniques"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/f2bd260c-a4ba-4b27-ba3b-961f37ca8016"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/abeca9ea-214c-4a19-91d1-233c940fd679"> - <skos:scopeNote xml:lang="en">{"id": "f2b55b4b-81be-4f86-a558-ab2fc29908ce", "value": "The study of living organisms, including their structure, functioning, origin and evolution, classification, interrelationships, and distribution."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "df4b4ca2-7a24-49d1-beba-e0f7de6ec0f8", "value": "http://vocab.getty.edu/aat/300054466"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/faeaa555-3942-4a7e-9c22-bcfae7e3076b"> + <skos:narrower rdf:resource="http://localhost:8000/eedcb6df-656b-4a3b-b808-be00a7a4daf9"/> + <skos:narrower rdf:resource="http://localhost:8000/1bd9f61f-fbc6-4b0d-9107-0e5b1ed9b277"/> + <skos:narrower rdf:resource="http://localhost:8000/fa11cdad-f45d-41f2-bac0-8b8045cff74b"/> + <skos:narrower rdf:resource="http://localhost:8000/a7e9a77a-005b-4253-8abc-7f3b944a4c0c"/> + <skos:narrower rdf:resource="http://localhost:8000/afbf17a2-4e83-4de6-963a-b985dc0f7c35"/> + <skos:prefLabel xml:lang="en">{"id": "64b8f4d9-25fa-4796-a24d-f78bf7e8b00a", "value": "painting techniques"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "378a83d3-04a3-4182-a032-5370b6d4ef23", "value": "http://localhost:8000/faeaa555-3942-4a7e-9c22-bcfae7e3076b"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "57832b8e-603c-4513-87d1-00cd1aea39d6", "value": "biology"}</skos:prefLabel> </skos:Concept> </skos:narrower> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0bc8a3a2-baa2-4a32-9839-89b5bf917f3a"> - <skos:scopeNote xml:lang="en">{"id": "54b868da-745e-4f2b-a1eb-7f82a083aa9d", "value": "Having chracteristics, qualities, attributes, or actions associated with the male sex."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/f89a0022-ac64-45fd-aa77-5aab89eb77d3"> + <skos:prefLabel xml:lang="en">{"id": "a55adb4b-f47d-402e-9cc9-a9ee9959841d", "value": "hours (units of time)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "9054b5de-b00d-4253-a749-833f4b848476", "value": "masculine"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "3169f369-d1b5-4acd-bce4-3b9551f7ed06", "value": "http://vocab.getty.edu/aat/300411836"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "7baf566e-642c-4854-b594-da53a338f80d", "value": "Measurements of time equal to 60 minutes, 3600 seconds, or 1/24th of a solar day. "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "a7427500-d1ff-4862-b96c-7179177f6589", "value": "http://vocab.getty.edu/aat/300379241"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/6c796833-b93f-4c85-b9df-0614295be6f3"> + <skos:Concept rdf:about="http://localhost:8000/4f4cf6d3-c30a-4f08-a733-c8bd1276067b"> + <dcterms:identifier xml:lang="en">{"id": "bb557567-3830-4784-aa07-2dbb09dde65f", "value": "http://vocab.getty.edu/aat/300404832"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "0776c7d8-aed8-4ffb-a8f4-eb2f3e90e0fe", "value": "projects (object groupings)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c056a705-584c-4521-848e-cdbb585d1994", "value": "Physical works, such as drawings and written documents, that were used in the planning or execution of a definable physical work or set of works; also includes the finished works. Alternatively, a project may be planned, but unexecuted. For the conceptual activities of planning or carrying out of proposed undertakings or creations, use projects (artistic concepts)."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "741d7e71-546f-492d-94a7-cd3b344d1d80", "value": "http://localhost:8000/6c796833-b93f-4c85-b9df-0614295be6f3"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "623e76a2-d591-479a-b117-11e656f03c03", "value": "Acquisition Types"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/4be949ac-5737-4415-b2af-6055bfddcad0"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "2c5211fb-28ad-4be6-b5d1-78f4b5466348", "value": "http://vocab.getty.edu/aat/300390560"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7a107d05-9760-4969-a503-f87c2ca1cdab", "value": "completion"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a7b5ed62-d45e-4b1a-b13a-4154d09c98aa", "value": "The act or process of finishing something as in an architecutral context; completion of a protracted building campaign such as the construction of a cathedral."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/cf3ccbc1-5524-4c0b-a706-61dd71554742"> + <skos:altLabel xml:lang="en">{"id": "4c3ddaa7-f830-41fd-8eae-27472d2a48f3", "value": "macro-XRF spectrometers"}</skos:altLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "c5874ee9-3c10-48a9-ad2d-fa0f09ea061a", "value": "http://localhost:8000/cf3ccbc1-5524-4c0b-a706-61dd71554742"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "8a1b4816-8b3a-427b-9778-1e793596a49c", "value": " MA-XRF spectrometers"}</skos:prefLabel> + <skos:altLabel xml:lang="en">{"id": "80ad02a4-2585-4a3d-b036-af6b9eefa13c", "value": "macro X-ray fluorescence spectrometers"}</skos:altLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/463cf53d-6aa0-4186-81e2-bf7f5d7eb21f"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8276edb4-fcc7-4bd7-a549-f81bb421bb08"> - <dcterms:identifier xml:lang="en">{"id": "dc0db3c5-bfd5-42f6-a224-4b12d6929f90", "value": "http://vocab.getty.edu/aat/300417641"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "506c5e19-b62d-4dc3-a948-f43b2f03d3d7", "value": "bequest (method of acquisition)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/a8bc18c8-e347-450d-a367-913f5e2180a4"> + <skos:narrower rdf:resource="http://localhost:8000/90cca4e4-b569-48bf-91de-b18a473d2deb"/> + <skos:narrower rdf:resource="http://localhost:8000/bc5364c9-6179-429f-b643-88889e0291f1"/> + <skos:prefLabel xml:lang="en">{"id": "ed5999c9-2066-46cc-bc79-66aad8a5b6f5", "value": "Professional Activity"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/f8b729da-4edc-4718-bcd3-569ddff655cd"/> + <dcterms:identifier xml:lang="en">{"id": "edbe5f51-9287-4ab8-bc59-29860da4d019", "value": "http://localhost:8000/a8bc18c8-e347-450d-a367-913f5e2180a4"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "2b963969-89ff-4064-a247-dabcfe7f855d", "value": "Method of acquiring property by transference or bestowal following the death of a benefactor, by means of the last will or other method."}</skos:scopeNote> + <skos:narrower rdf:resource="http://localhost:8000/3e105447-bca4-4819-a674-e0773ce6df8e"/> + <skos:narrower rdf:resource="http://localhost:8000/ac747098-0517-45b7-a311-808da9e96da6"/> + <skos:narrower rdf:resource="http://localhost:8000/b019227c-dcb0-4fa1-a187-b15a5613ffab"/> + <skos:narrower rdf:resource="http://localhost:8000/93c026d3-22d5-45a3-847b-4767d49a5bbf"/> + <skos:narrower rdf:resource="http://localhost:8000/ddac2d30-4d8e-4c37-bb13-a8a32ee7b924"/> + <skos:narrower rdf:resource="http://localhost:8000/5f9d4f70-ca98-4ff1-9c73-52877fbf83c3"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/cc49bc27-8b3e-4530-a98e-86bf6388dced"> - <skos:scopeNote xml:lang="en">{"id": "bc82bbb8-677e-4de8-94d1-583e9a113370", "value": "Method of acquiring property by payment of funds."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "14ae18bd-42b0-499b-8954-da6be9101482", "value": "purchase (method of acquisition)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/cd68971d-382b-447e-8d12-c41462ddeaf3"> + <skos:prefLabel xml:lang="en">{"id": "7e6adc53-b9be-48cb-8093-a79aacbc3add", "value": "photography (discipline)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "77b0a8ba-a181-46e6-965e-026300b86ba5", "value": "The dedicated practice of making photographs as an applied art."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "9f83a115-3f9f-4387-8638-bafe2c254963", "value": "http://vocab.getty.edu/aat/300389795"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "75365b99-4fb2-40a0-849c-b4b43f082c06", "value": "http://vocab.getty.edu/aat/300417642"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/73ccbcfc-224a-48d7-929d-a32fc9d4f066"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2b6c07dd-5edf-406b-9a01-ed6753f111e0"> + <skos:Concept rdf:about="http://localhost:8000/a35e64c3-6cea-4ae7-8208-bc1b3204a58e"> + <skos:narrower rdf:resource="http://localhost:8000/2a5d7e8c-df22-434e-8208-66a7d80b1168"/> + <skos:narrower rdf:resource="http://localhost:8000/39fa12c0-6624-41bd-83fa-0fc28b5250bc"/> + <dcterms:identifier xml:lang="en">{"id": "df0adbeb-95b8-4221-9086-38dea9371296", "value": "http://localhost:8000/a35e64c3-6cea-4ae7-8208-bc1b3204a58e"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/abeca9ea-214c-4a19-91d1-233c940fd679"/> + <skos:prefLabel xml:lang="en">{"id": "4697f294-6b29-48aa-933a-9a82093b11d6", "value": "Profession Technique"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/a7860a50-de38-404a-a207-592c2fabd2b4"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "00fd89ff-74b8-4eba-b4d3-ad866fc54e49", "value": "Method of acquiring funds or property through transference of ownership from one party to another as a free gift."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "e0e1b9b5-72cc-4f8a-b563-1ee5b0680987", "value": "http://vocab.getty.edu/aat/300417638"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "aa10d956-fb2e-405b-b2e7-c7710c67f969", "value": "donation (method of acquisition)"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/d615bfb7-1503-42ab-8bdf-ab384ca24be6"/> + <skos:narrower rdf:resource="http://localhost:8000/693bf783-7cd9-4ce3-a7d2-fb59b80c1f2e"/> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/e63e5af7-bd48-4c0e-90d3-748bed444366"/> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/87137493-fef9-4485-b17b-7e390962ecfc"> - <skos:prefLabel xml:lang="en">{"id": "d7c3d933-3609-4107-b96c-4829e2d3cc43", "value": "gift (method of acquisition)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "3ce79821-3d8b-4e77-a8c0-bb0ef4712a83", "value": "http://vocab.getty.edu/aat/300417637"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/cf73b0a9-ecca-471c-ade9-e4fbcd404f63"> + <dcterms:identifier xml:lang="en">{"id": "b316a648-9d7a-4719-aa9d-7f23a7ea9e6f", "value": "http://vocab.getty.edu/aat/300025820"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "8f959313-105f-4bf8-b1f9-0cd49d73ffb3", "value": "conservation scientists"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c0c11df0-54ca-45c8-9f5a-90dfd8be795e", "value": "Scientists who apply their knowledge to problems of conservation."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "dd06a711-7ce1-4c1d-9ee8-7a574b7f46b8", "value": "General term for the method of acquiring property through transference by one person or institution to another person or institution, voluntarily and without any payment required."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/268cadf1-0673-443e-8e39-1900c8f39ecf"> - <dcterms:identifier xml:lang="en">{"id": "181d6db1-bdf0-4866-b51e-241dc6dc9b07", "value": "http://vocab.getty.edu/aat/300263427"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "0a0ad65b-608c-4bd9-83b4-8601073217d5", "value": "Method of acquiring property by each party giving and receiving from the other party, usually regarding property of equal value. For example, an exchange may be made by individual authors, libraries, museums, and other institutions in which they exchange between or among each other their own publications or those of the institution with which they are connected, or duplicates from their own collections."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "d064286e-d118-4cde-a9a8-c63418100dc1", "value": "exchange (method of acquisition)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/34eae943-67d8-42f8-abeb-6131b2a95b43"> + <skos:prefLabel xml:lang="de">{"id": "25e735b4-90ff-482d-8f60-dc20c8f41425", "value": "Architekt"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "93657975-e4c7-4cb0-ab08-f95a9d248516", "value": "People trained in or practicing architecture, which is the art of designing and building habitable structures, especially those considered to have aesthetic value."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "aad6791d-2ea1-4635-84a4-f5f4e598344a", "value": "http://vocab.getty.edu/aat/300024987"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "84379c63-dbb5-416a-bba2-6ee9968b9d6b", "value": "architects"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0ad7ee80-84b7-479d-a7f6-4229839643c3"> - <dcterms:identifier xml:lang="en">{"id": "6c12b4de-75d1-480a-b560-d8b7ca901f44", "value": "http://vocab.getty.edu/aat/300017437"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "ee1b9b8e-9a59-45ce-9d93-5627838d8009", "value": "Typically reserved to refer narrowly to the cultures of the native peoples of the United States and Canada, excluding the Eskimos and Aleuts. For the indigenous peoples of Canada use the term \"First Nations.\" For the broader concept of the cultures of any native peoples of Central America, South America, North America, or the West Indies who are considered to belong to the Mongoloid division of the human species, use \"Amerindian (culture).\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "080eaef5-5de3-4715-9cbd-4422a7a4244f", "value": "Native American"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/dc5fe25b-6499-4b41-9ac8-08db72fcadf4"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "9d77b55d-434f-4e02-b4ad-bdbd34ccd1ff", "value": "http://localhost:8000/dc5fe25b-6499-4b41-9ac8-08db72fcadf4"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "655a8553-9d8b-4ea8-9fd5-51805169dee0", "value": "designation"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0e5d03f3-613c-4e36-9783-e93e317b56a6"> - <skos:scopeNote xml:lang="en">{"id": "a2882a3c-22d4-409b-acf5-c09919e8fd7e", "value": "Depictions and representations on a surface in two dimensions or low relief, or digital, whether the optical counterpart exists in reality or only in imagination. For example, the term may refer to a depiction as distinguished from its support, as when referring to a drawing as distinct from the paper upon which it is drawn. For a representation of an object as opposed to the tangible object itself, as when distinguishing between a photograph or digital image and the art object depicted, use the descriptor \"visual surrogates\" or the UF \"images (visual surrogates).\" For three-dimensional works, use \"objects\" or a more specific term, such as \"sculpture (visual works).\""}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "68fb8741-45fe-46d9-afc9-f5c27b828364", "value": "Bild (object genre)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "55077c47-2b63-42e1-b645-cb5546889915", "value": "images (object genre)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a52ee89e-cf50-40c9-99d7-982e119e3db9", "value": "http://vocab.getty.edu/aat/300264387"}</dcterms:identifier> - <skos:scopeNote xml:lang="de">{"id": "647be6f7-b727-426c-ae91-6bbedf80eb1f", "value": "In einem allgemeinen Sinn bezieht sich der Begriff auf alle Abbildungen und Darstellungen von Objekten, Geb\u00e4uden, Personen, Tieren, Pflanzen, Orten oder Ph\u00e4nomenen, unabh\u00e4ngig davon, ob das optische Gegenst\u00fcck in der Realit\u00e4t oder nur in der Vorstellung existiert. Der Begriff kann engere Bedeutungen in bestimmten Kontexten erhalten. Er kann sich auf eine Abbbildung beziehen. die sich unterscheidet vom originalen Bildtr\u00e4ger, beispielsweise wenn er sich eine Zeichnung bezieht, im Unterschied zu dem Papier, auf dem sie erstellt wurde. F\u00fcr die Darstellung eines Objekts im Gegensatz zur materiellen Objekt selbst, wie bei der Unterscheidung zwischen einer Fotografie oder einem digitalen Bild und dem Kunst-Objekt, verwenden Sie die Bie Bezeichnung \"visuelle Surrogate\" oder das UF \"Bilder (visuelle Surrogate).\""}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/2f3da2d3-1a5e-4603-ae2c-e716319ee226"> - <dcterms:identifier xml:lang="en">{"id": "24084bf5-685a-4b7c-ae3a-0c000b3fb2dd", "value": "http://localhost:8000/2f3da2d3-1a5e-4603-ae2c-e716319ee226"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "7fa8d3cd-c6ee-44e2-b636-bd85b35341c2", "value": "initiative"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/d435267f-7de2-4321-9b02-f495386866b3"> - <skos:prefLabel xml:lang="en">{"id": "4f6d0330-57ab-4e68-9f00-26f437f11e1c", "value": "married names"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "843989ec-9a53-49e7-9120-c48d4c230815", "value": "http://vocab.getty.edu/aat/300404683"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "e9d239d3-90cb-49c1-9d8f-d7935a71bfbb", "value": "Regarding personal names, last names acquired by a person, usually a woman, through marriage; distinguished from \"maiden names.\""}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/54d2f763-34aa-4830-bc1d-f9ed627cf164"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "8951f2fb-2b7c-4507-98c7-9bb6d9277fa8", "value": "project"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "20679e4f-9106-4b5e-b7be-f65c26fca54b", "value": "Artistic concepts comprising proposed undertakings or creations, including the creation of works of art or architecture, or for the actual carrying out of such proposals. When emphasis is on specific conceptual schemes for the organization or appearance of graphic works, objects, structures, or systems, use \"designs.\" For visual works and other physical items that are used to carry out the project, use \"projects (object groupings).\""}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "38ea09fd-60a3-4099-91f8-9dce6b0ff345", "value": "projets"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "02c356c8-741c-41d6-8f3e-072b70ae356e", "value": "http://vocab.getty.edu/aat/300048788"}</dcterms:identifier> - <arches:sortorder xml:lang="en-us">{"id": "0d6ce8bb-6dd1-419d-8cd3-d657b471eaf4", "value": "1"}</arches:sortorder> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/64136ae8-03ed-41fa-afe4-8a3408bd34b9"> - <skos:prefLabel xml:lang="en">{"id": "9cb64f96-3e01-4a21-a525-27297a4d0145", "value": "Indian (South Asian)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "f211bca5-c1a6-41c1-b93d-5a05ad841e51", "value": "Nationality, styles, and culture of the modern nation of India, or more broadly to cultures that developed on the subcontinent of India, which is bounded by the Arabian Sea, the Indian Ocean, the Bay of Bengal, and the Himalayn Mountains. It may also refer even more broadly to cultures of India, the East Indies, and the former British Indian Empire. It was formerly used less specifically to refer to any Oriental or Asian culture. Do not use this term to refer to the indigenous populations of North or South America; see \"Native American\" or other appropriate terms."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "c149a6e5-ac88-4220-b741-e4e530e38084", "value": "indienne"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e64b7751-e9c1-42e3-91af-41a21b9eb02c", "value": "http://vocab.getty.edu/aat/300018863"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/ac05986c-ffe8-4910-a73e-6efe0d451eda"> - <dcterms:identifier xml:lang="en">{"id": "0daa2866-a7b1-4fd5-8bf4-926b38e86dbf", "value": "http://vocab.getty.edu/aat/300404682"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "00584e0b-d585-40b1-9d07-f8dafa9a741d", "value": "maiden names"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "8248f95f-f977-4d37-8403-e67d831fc875", "value": "Regarding personal names, last names held by a woman prior to marriage, at which time she may adopt her husband's last name."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/ca08a220-303e-4bee-92d9-8bd4f5302b49"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "b254a950-f51e-446c-81b3-3f72101a2193", "value": "examination (function)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c7076e3b-5b0a-4647-beff-aa34effa3ce9", "value": "http://vocab.getty.edu/aat/300226216"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "8600b1d1-997c-40bf-bdde-02feaeec609e", "value": "Scrutinizing a situation or object, usually in order to determine its nature, qualities, or current condition."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/99b83e37-2fab-4eb6-8d9c-ca88970f078f"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/dfd2f1ed-4af4-4fcc-8dac-a001a0ddc523"> - <dcterms:identifier xml:lang="en">{"id": "843ee900-39b9-4005-8ac1-6a8823b832f2", "value": "http://localhost:8000/dfd2f1ed-4af4-4fcc-8dac-a001a0ddc523"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/d9c6e689-f74b-4494-b8d4-cd6cc78297c9"> + <skos:prefLabel xml:lang="de">{"id": "7c12d01a-bc2b-4c17-9e82-ef1407c62cb7", "value": "Konservator"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "1632cec3-6c95-4d40-8f7e-09596c48fa68", "value": "conception"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c8b2af3c-4d05-4738-99d2-6c34dc904fab", "value": "http://vocab.getty.edu/aat/300102842"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "c3f2a071-03d4-409f-8b28-088aa2156b07", "value": "conservators (people in conservation)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "e790d860-9c38-44eb-805f-3a6c1c5c3de3", "value": "People responsible for treatment, preventive care, and research directed toward the long-term safekeeping of cultural and natural heritage. For those engaged in making changes to an object or structure in order to prevent further deterioration, see \"preservationists.\" For those who make changes to an object or structure so as to closely approximate its state at a specific time in its past, see \"restorers.\""}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5f0e4350-cacd-41d8-a2bb-5efbfa5915b5"> + <skos:Concept rdf:about="http://localhost:8000/210c4d7a-e17a-4f3d-b684-bf8cd803dcfa"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "934ec77a-e952-468f-a48e-601c1d17ada6", "value": "design"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "f54824ac-ae2a-4b29-b059-f4dd43a4771a", "value": "http://localhost:8000/5f0e4350-cacd-41d8-a2bb-5efbfa5915b5"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "96982846-79f9-4a83-9479-2fcd22551d51", "value": "http://vocab.getty.edu/aat/300025633"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "8fd6e19a-b5eb-438e-b611-f47bd4c19a4f", "value": "curators"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "dce8ade5-36f9-40b9-aef9-ed6125dd2f7e", "value": "Persons who superintend or manage the collections, exhibitions, research activities, and personnel of a museum, art gallery, zoo, or other place of exhibit; also, the superintendents or managers of a single collection or subject of study in such an institution."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "024728c8-7b09-442e-a988-4448ec5fd512", "value": "Production Types - Textual Work "}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "656cafe1-ecdb-4fd1-b40e-77314b73870f", "value": "http://localhost:8000/99b83e37-2fab-4eb6-8d9c-ca88970f078f"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d1a8cc2c-a671-4ecf-8034-9348e2f0a8c7"> - <skos:scopeNote xml:lang="en">{"id": "cfa2ed10-d68a-49a3-b82c-32cfea69317f", "value": "Written works or works derived from written works, where the second work is an alteration or amendment a text to make it suitable for another purpose. An example of an adaptation is a version of an earlier text made to better agree with a philosophy other than that intended by the original. Other examples are written works adapted for another medium, such as film, broadcasting, or stage production. For visual works adapted from another work, use \"adaptations (derivative objects).\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "c82156dd-fbbb-48b2-8629-e20ab0d70a23", "value": "adaptations (literary works)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "9e7cf3f0-44c9-45f7-b920-dcd1bf44316d", "value": "http://vocab.getty.edu/aat/300410356"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/f16e685d-fa8a-4670-8707-99448fe2a791"> + <skos:prefLabel xml:lang="en">{"id": "4e8e97be-223e-4941-bc16-3bcab992e3c9", "value": "engineers"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "e47d67df-f431-483d-9c03-f1d3f85be812", "value": "Persons trained in a branch of engineering. In some jurisdictions the designation is legally restricted in technical use to persons who have completed a prescribed course of study and complied with requirements concerning registration or licensing."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "34c26d8e-401f-419a-8ae2-ef517970acb7", "value": "http://vocab.getty.edu/aat/300025063"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7db37c5b-95a0-411c-a088-3ba245c2de27"> - <skos:prefLabel xml:lang="en">{"id": "50d68af0-c78f-422f-9370-15cff8e73cc8", "value": "reconception"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/b1bcc89f-22bd-42d3-bfc8-e694d5f8d460"> + <dcterms:identifier xml:lang="en">{"id": "5817a099-9e1d-44e2-859a-ac9924a84c8f", "value": "http://localhost:8000/b1bcc89f-22bd-42d3-bfc8-e694d5f8d460"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "cffc3bef-3ebf-4084-9273-966194b605ba", "value": "data specialist"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "63305ce4-62e1-49a6-9958-017f820b9353", "value": "http://localhost:8000/7db37c5b-95a0-411c-a088-3ba245c2de27"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/714dc5b5-f2f3-4daa-9a6c-ed07c385aeec"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4d40bcba-8ad8-4415-9781-94d501c50142"> - <skos:prefLabel xml:lang="en">{"id": "891f5d3b-2c76-4af8-bf83-3ba49c7bd4a0", "value": "exchange (method of acquisition)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "97a29d86-7be4-43e9-b5bb-ccb414136bb8", "value": "Method of acquiring property by each party giving and receiving from the other party, usually regarding property of equal value. For example, an exchange may be made by individual authors, libraries, museums, and other institutions in which they exchange between or among each other their own publications or those of the institution with which they are connected, or duplicates from their own collections."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "32dc5715-dff9-451d-a3a8-8524f42f747f", "value": "http://vocab.getty.edu/aat/300263427"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/cf5052ee-e2bb-4112-a838-28aa3d048666"> - <dcterms:identifier xml:lang="en">{"id": "7ceb2c96-736c-4522-afbd-96996d0133c3", "value": "http://vocab.getty.edu/aat/300193972"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "5ff3ae7d-bce4-4a4e-aa9b-00f6d9778cb7", "value": "Historically a form of paper currency used in Europe from the late Medieval to the early Modern period often as credit among merchants. Now refers to written orders to pay a specific sum of money on demand or at a specified future time; used with reference to foreign transactions; for similar orders to pay usually restricted to domestic transactions, use \"drafts (negotiable instruments).\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "901d76c6-7a22-47bb-9bd8-50fc92e630ac", "value": "bills of exchange"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "0ae53a96-8b7a-43e3-94de-648be6d7e738", "value": "lettre de change"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/a8bc18c8-e347-450d-a367-913f5e2180a4"> - <dcterms:identifier xml:lang="en">{"id": "edbe5f51-9287-4ab8-bc59-29860da4d019", "value": "http://localhost:8000/a8bc18c8-e347-450d-a367-913f5e2180a4"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f8b729da-4edc-4718-bcd3-569ddff655cd"> + <skos:Concept rdf:about="http://localhost:8000/c1684495-03dd-4070-9921-a050e6a7a632"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "ca91b5e6-e0ed-49ba-b2ce-c0d000ded557", "value": "http://vocab.getty.edu/aat/300077136"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "f11e3782-0efa-458d-a2e3-ea7dc4b9e651", "value": "coordinating"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "ed4df749-cac9-480e-a486-687c04e166b6", "value": "Causing discrete agents or agencies to work together."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "e46cb62d-dab5-48c8-986a-70633777099b", "value": "project managers"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "23e153a5-6481-472c-8822-885c2cf211d8", "value": "People who oversee, coordinate, and otherwise projects, generally as a professional position."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "0d3233ce-04f4-46a6-b9e8-204ef0368677", "value": "http://vocab.getty.edu/aat/300417573"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/93c026d3-22d5-45a3-847b-4767d49a5bbf"> - <dcterms:identifier xml:lang="en">{"id": "cb6890b4-225c-4aba-9e2b-873d31133ae8", "value": "http://localhost:8000/93c026d3-22d5-45a3-847b-4767d49a5bbf"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "1e69cbf5-a291-4a28-933b-c20569162ae9", "value": "preventative conservation"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/55949598-b28f-4e42-a286-1a1e9871fb09"> + <dcterms:identifier xml:lang="en">{"id": "4ad3329c-05c6-44ce-a1ce-6d736c81e656", "value": "http://vocab.getty.edu/aat/300025103"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "35f60769-4c3e-43cd-a7d3-6afcfde1c88b", "value": "artists (visual artists)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="pt">{"id": "ae5c83e7-e2aa-45f8-a132-01c6d211cd03", "value": "artistas"}</skos:prefLabel> + <skos:scopeNote xml:lang="pt">{"id": "7e2e6389-fada-4628-bd40-d13e999aa3b8", "value": "Pessoas que produzem trabalho nas artes visuais. Para aqueles nas artes c\u00eanicas, consulte \"artistas perform\u00e1ticos\"."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "970bea32-509f-40da-b3ba-899eb842d5b3", "value": "People who produce work in the visual arts. For those in the performing arts, see \"performing artists.\""}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/bc5364c9-6179-429f-b643-88889e0291f1"> - <dcterms:identifier xml:lang="en">{"id": "e580c26e-549f-4f5c-b606-155b687d1d40", "value": "http://vocab.getty.edu/aat/300054594"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/99096538-2ca4-42d9-bd9d-381002910e24"> + <skos:scopeNote xml:lang="en">{"id": "ce87f66e-38b8-453f-9ef1-c1541dda9f65", "value": "Interdisciplinary study of the maintenance, care, and protection of art, architecture, and other cultural works."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "ee64064f-8169-4660-94da-36d37deb5a12", "value": "management"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "992b2b5b-7459-43fd-a10e-c8943dbe12d1", "value": "Functions including organizing, supervising, and carrying out the activities of a person, group, organization, or enterprise, and controlling its human and material resources, involving primarily the application rather than the formulation of policy. When the formulation of policy is the primary aspect, use \"administration.\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "2dada4bd-b4a1-46c8-bf50-c5a6bc5cebe2", "value": "http://vocab.getty.edu/aat/300379510"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "d3e0423d-daaa-485d-a694-f5383ad705b0", "value": "conservation science (cultural heritage discipline)"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:prefLabel xml:lang="en-us">{"id": "2d5cf3bf-c3c9-4c26-9cfe-4c9cc3f740a0", "value": "Professions"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "4ace0ca4-cd8c-4d23-9635-d35772c832aa", "value": "http://localhost:8000/463cf53d-6aa0-4186-81e2-bf7f5d7eb21f"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/ebf23273-18df-4605-a8d0-852c46e94b07"> + <skos:scopeNote xml:lang="en">{"id": "386b5b0a-0eef-4b67-917b-672016717ceb", "value": "Painting technique whereby tones and hues are obtained by applying regular small dots or touches of unmixed pigment on the canvas so that they combine optically. The French critic F\u00e9lix F\u00e9n\u00e9on coined the term \"peinture au point\" in 1886 after seeing Seurat's \"La Grande Jatte.\" Paul Signac offered the alternative term of \"divisionism\" in his book \"D'Eug\u00e8ne Delacroix au N\u00e9o-Impressionnisme (1899), although in modern usage \"pointillism\" is reserved for the technique involving dots applied in a controlled manner, while \"divisionism\" refers to use of marks of unmixed color in Italian painters\u2019 works."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "5a1111ef-6497-473f-b3c7-b404a39dcd94", "value": "pointillism (painting technique)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "5740cf15-b1cf-47f3-be39-90b636242637", "value": "pointillisme"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "528a24a4-f8bd-4125-bff2-e185cbf75af1", "value": "http://vocab.getty.edu/aat/300067450"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/89d67de0-53ea-464e-8a28-448e6c267d87"> + <dcterms:identifier xml:lang="en">{"id": "64761326-8609-4b30-a453-5cb4667c3f66", "value": "http://vocab.getty.edu/aat/300435689"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "b575cc0f-70f2-4e88-bfc4-6716320b214d", "value": "Phone numbers connected to a fax machine, fax service, or fax server, rather than to a voice telephonic device."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "495c7519-9de8-4e2a-8c62-5f319314dd81", "value": "fax numbers"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/98cffed5-2102-45fb-ba12-7b287fd2e8f3"> + <skos:scopeNote xml:lang="en">{"id": "703d0557-4507-42e3-a974-c00f72c6e0ae", "value": "The standard unit of currency of the United Kingdom."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "4dff5d9f-7fa3-4077-a26c-c287cd5e0ea1", "value": "pound sterling (system of money)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c43f69f8-a2dd-480a-b560-9f66981a1d56", "value": "http://vocab.getty.edu/aat/300411998"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/c000d8be-cc35-430b-b250-5105395204d0"> + <skos:scopeNote xml:lang="en">{"id": "8cea1f15-3b1f-40e4-b741-94640f198989", "value": "Titles applied to archival groups, which are aggregates of items that share a common provenance."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "f6aa667c-e79d-4750-a407-85e46c62fa57", "value": "http://vocab.getty.edu/aat/300417216"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "9a6ed3ee-9ebf-47c1-8617-e2bd6212470d", "value": "group titles"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/14197ada-900e-4783-94b7-454707317007"> + <skos:prefLabel xml:lang="pt">{"id": "4b7a0240-a10e-471a-9df8-bed7fceda521", "value": "abras\u00e3o"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "e4ecb0dc-77af-4c36-b9eb-a264edb9b776", "value": "abrasion (condition or effect)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "8e875b45-eea3-4c8f-ba84-7f75be54f39b", "value": "http://vocab.getty.edu/aat/300053077"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "be9c285a-05a7-4d4f-b59c-d8ae026c0c64", "value": "abrasion (condition or effect)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "9e688335-e870-4eb8-a833-101e8d0a6c40", "value": "Abrieb"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "e03fc81e-455f-4455-935a-2e5807111c19", "value": "Rubbed or scuffed areas caused by a gradual loss of material on the surface due to rubbing, wearing, or scraping of an object or material against itself or another usually harder object or material. Abrasion may be a deliberate attempt to smooth, clean, or polish a surface. It may also be a deteriorative process that occurs over time as a result of weathering or handling."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/7a18d2f2-e8d2-4ae7-a7ce-e4d02083149e"> + <skos:scopeNote xml:lang="en">{"id": "9f6abcec-98cd-4fb7-8aa8-f281902f6a9c", "value": "Commercial organizations or certain administrative units of government that provide a service."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "b8559463-4892-44de-9677-eab8d14d6e6a", "value": "agencies"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "77f5a84c-5245-44ff-ad2d-eb621ddb6989", "value": "http://vocab.getty.edu/aat/300025949"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/3044ebe4-8d5f-446a-b618-5f39fbfc2364"> + <skos:prefLabel xml:lang="en">{"id": "6b33d53d-0529-4de1-ad69-579c9276d8e0", "value": "scanning electron microscopes"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "9066c26b-f78b-4939-a6aa-6686a4c04999", "value": "http://localhost:8000/3044ebe4-8d5f-446a-b618-5f39fbfc2364"}</dcterms:identifier> + <skos:altLabel xml:lang="en">{"id": "186d6ef3-799d-4c6c-915a-294ccc8b609a", "value": "SEM"}</skos:altLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/8889c48f-504f-410d-8eb1-737f062d85f3"> + <skos:prefLabel xml:lang="en">{"id": "64ce4c03-6552-4deb-88b5-9b18c0eb90aa", "value": "cartooning"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ea81e72e-4473-4352-af9d-ee19f5086c81", "value": "The activity of creating \"cartoons (humorous images).\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "13008192-ce4a-4312-a73d-69415e7b06fa", "value": "http://vocab.getty.edu/aat/300053164"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/fd958d6c-1ad9-4e51-b6f0-33d23d04fbe0"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "95adb6e6-ff59-43ee-b0c7-eeb0b869467b", "value": "Provenance Activity Type"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/90cca4e4-b569-48bf-91de-b18a473d2deb"> - <skos:scopeNote xml:lang="en">{"id": "e4c9115e-9979-4c6c-b05b-07a1ed835c55", "value": "The branch of conservation science involving treatment, preventive care, and research directed toward archaeological sites and materials."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/2f3699e4-1581-4bd7-b7f5-e2ac769d114d"> + <skos:scopeNote xml:lang="en">{"id": "28cbd178-c2d5-4011-a711-6dc291644596", "value": "Method of acquiring property for temporary use, with or without the payment of interest."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "9da12891-e601-473e-bf07-59e7cf097310", "value": "archaeological conservation"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "d999c52a-78a0-46a7-ab1c-bb052339af3f", "value": "http://vocab.getty.edu/aat/300379523"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "482dac38-609a-48d4-921e-4438c2e2a31b", "value": "loan (method of acquisition)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "5d0e42e0-3976-406b-bb71-f886777c8e14", "value": "http://vocab.getty.edu/aat/300417645"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/3e105447-bca4-4819-a674-e0773ce6df8e"/> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "6782165f-2f26-4265-8e13-c566289f7597", "value": "http://localhost:8000/fd958d6c-1ad9-4e51-b6f0-33d23d04fbe0"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ddac2d30-4d8e-4c37-bb13-a8a32ee7b924"> - <dcterms:identifier xml:lang="en">{"id": "22a8f0da-af7d-4a7d-a370-30034f6a3fb9", "value": "http://vocab.getty.edu/aat/300379510"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/9c9ea021-34bc-4f4d-9b19-baff24198e36"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "ca5ec325-9e7b-42a6-a370-d748b11bb76d", "value": "Interdisciplinary study of the maintenance, care, and protection of art, architecture, and other cultural works."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "9c0bcddf-0dce-4b98-b3fa-e52ca7e1c7b1", "value": "conservation science (cultural heritage discipline)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "517457f6-2ccc-4f92-a7d1-75622f3da488", "value": "Method of acquiring property through bidding at an auction."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "25af5239-19ca-48fe-b459-52795a73690c", "value": "http://vocab.getty.edu/aat/300417643"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "01fcfd28-fd31-483f-8078-aceb41c68d6d", "value": "auction (method of acquisition)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b019227c-dcb0-4fa1-a187-b15a5613ffab"> - <skos:prefLabel xml:lang="en">{"id": "b60aa700-1a65-4989-8bb8-1521a9cae160", "value": "data management"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "9f8878f5-c9f8-497c-bc5f-85368a1f2ac9", "value": "Management of all stages of the life cycle of data assets."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/88e8a379-1609-432d-8667-9f0c0d427a82"> + <skos:prefLabel xml:lang="en">{"id": "efda312c-e482-4d28-8ab2-f22df2efc2c2", "value": "gift (method of acquisition)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f82443c8-8234-4802-9cda-7ba38cc8177d", "value": "http://vocab.getty.edu/aat/300417637"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "86944d59-2182-4f00-8146-9a62a9126ed6", "value": "General term for the method of acquiring property through transference by one person or institution to another person or institution, voluntarily and without any payment required."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "527c22e5-2552-47ff-b372-ecb97d4a07df", "value": "http://vocab.getty.edu/aat/300379871"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "ed5999c9-2066-46cc-bc79-66aad8a5b6f5", "value": "Professional Activity"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/5f9d4f70-ca98-4ff1-9c73-52877fbf83c3"/> - <skos:narrower rdf:resource="http://localhost:8000/ac747098-0517-45b7-a311-808da9e96da6"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4157e908-660c-45cc-a20f-06a3841b1543"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2e3e64b3-c802-4bbc-b284-5dbcd50ee4da"> - <skos:prefLabel xml:lang="en">{"id": "e69b63e1-2141-45b3-aa94-3d4ef89bb168", "value": "FORS measurement"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/efb920fe-6946-493c-a6b4-898babdbbc9d"> + <skos:narrower rdf:resource="http://localhost:8000/e22afbaa-948c-4063-a4f9-8ea7ce5a35c7"/> + <skos:narrower rdf:resource="http://localhost:8000/f3fed7aa-eae6-41f6-aa0f-b889d84c0552"/> + <skos:narrower rdf:resource="http://localhost:8000/8913b62a-23fe-4a7e-aeca-52356160b92e"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "7bc7509b-2650-40f6-a78a-1251f79242a3", "value": "http://localhost:8000/2e3e64b3-c802-4bbc-b284-5dbcd50ee4da"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/c801eaae-849a-46b4-a97e-280b59c1f2d7"/> + <dcterms:identifier xml:lang="en">{"id": "9bd77cfd-acdc-4009-893d-665a834c9741", "value": "http://localhost:8000/efb920fe-6946-493c-a6b4-898babdbbc9d"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/d5c8c4b4-f569-4963-9f2b-b4869c768b7c"/> + <skos:narrower rdf:resource="http://localhost:8000/bfe0540e-72a5-4ee3-a224-78167f39b1b6"/> + <skos:narrower rdf:resource="http://localhost:8000/58d98835-1370-4665-88fb-230bed179b67"/> + <skos:narrower rdf:resource="http://localhost:8000/17a5481d-5595-46cf-b6a1-56b29103f739"/> + <skos:prefLabel xml:lang="en">{"id": "62c4c337-4fcb-4910-a303-df4bee6b4f12", "value": "Acquisition Event Type"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982"> - <skos:prefLabel xml:lang="en">{"id": "6418248a-bcf5-408b-9bed-2dbfc996f922", "value": "Raman measurement"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/4d40bcba-8ad8-4415-9781-94d501c50142"> + <skos:prefLabel xml:lang="en">{"id": "891f5d3b-2c76-4af8-bf83-3ba49c7bd4a0", "value": "exchange (method of acquisition)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "97a29d86-7be4-43e9-b5bb-ccb414136bb8", "value": "Method of acquiring property by each party giving and receiving from the other party, usually regarding property of equal value. For example, an exchange may be made by individual authors, libraries, museums, and other institutions in which they exchange between or among each other their own publications or those of the institution with which they are connected, or duplicates from their own collections."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "32dc5715-dff9-451d-a3a8-8524f42f747f", "value": "http://vocab.getty.edu/aat/300263427"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "d08dc87a-b40c-4606-a9ef-960ce1441cdd", "value": "http://localhost:8000/b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "600761d9-f4d1-400b-b875-d851b5d70fd0", "value": "http://localhost:8000/4157e908-660c-45cc-a20f-06a3841b1543"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "9e9a2bd9-10df-4cb3-88c1-dee4b74e6459", "value": "Observation Type"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/977c662f-c1d9-4a35-b556-696517e312ec"> + <skos:Concept rdf:about="http://localhost:8000/4d2e8c94-7536-4067-ae2f-2e52b337fa0b"> + <dcterms:identifier xml:lang="en">{"id": "9a86b80d-c24d-4a4b-a50c-748deae8b323", "value": "http://vocab.getty.edu/aat/300435595"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "c8d6ea37-ebd1-45df-ae96-bfd8201c3f99", "value": "XRF measurement"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "df78a779-7e1f-4fd0-b2e0-f68f4876148f", "value": "http://localhost:8000/977c662f-c1d9-4a35-b556-696517e312ec"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "5c5d04e7-2148-478b-95ce-17778df38e51", "value": "promised gift (method of acquisition)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a1d3f267-0996-4e24-b5be-0e1c4669d1db", "value": "Promises by one party to make a gift or gifts to another party at some future time. To be legally enforceable, a promised gift requires three elements: donative intent, delivery, and acceptance."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/26a055ac-f801-4170-a4d5-a11d72d51eba"/> + <skos:narrower rdf:resource="http://localhost:8000/392e4a35-2710-4467-86f9-650f5aea9630"/> + <skos:narrower rdf:resource="http://localhost:8000/ab9ab119-7e05-4841-9679-7bcc13548caa"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/cb2a1f81-43a9-4c99-be9b-1624501a8c29"> + <skos:Concept rdf:about="http://localhost:8000/48e06dbc-c0ea-4cc7-9588-f1ac2b53b46e"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "eb218899-9f1a-4a19-aa6f-82acfdbb2e69", "value": "http://vocab.getty.edu/aat/300053462"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "0704a847-be58-4829-8fa9-7d561a96d439", "value": "high-speed photography (still photography)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "8dd29f2c-ae82-4eb7-add8-6bfaeb709848", "value": "Still photography in which the camera shutter operates at a speed much higher than normal."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "5d9435f1-5c5e-4880-a242-e6c2529eeb36", "value": "http://vocab.getty.edu/aat/300379225"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "01bba78f-94ab-4d6f-9a53-e76575b85531", "value": "grams (measurements)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "cb044207-904b-4192-b283-0f194fe5fee3", "value": "In the Metric System, units of mass or weight used especially in the centimeter-gram-second system of measurement. One gram is equal to 0.001 kilogram."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/9761c5b7-5d6e-4dd0-9845-2a53d1456091"> - <skos:narrower rdf:resource="http://localhost:8000/75834779-936c-4b61-ab2a-c1ba7ae48372"/> + <skos:Concept rdf:about="http://localhost:8000/c7927e81-cd9f-4600-96ba-335200563fe5"> + <skos:prefLabel xml:lang="fr">{"id": "df2b2714-3e12-4968-bc0a-89939a640ef4", "value": "\u00e9gyptienne"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "0e8d87d9-0bf9-4e23-ad55-8b269f9bac9a", "value": "Egyptian (ancient)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "a6e67e77-d426-4a4c-b24a-d404fef7d9de", "value": "http://vocab.getty.edu/aat/300020251"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "969c5f06-806e-4ec3-b1a3-dba2717199ad", "value": "Refers to the styles and culture that developed in antiquity in the Nile Valley in the area of modern-day Egypt and southwards. For the cultures and styles of the modern nation of Egypt, use \"Egypt (modern).\""}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/41d71deb-c14b-46b2-b174-074c9abd5e3f"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "f0fcac66-a454-4652-a67c-07569753bffd", "value": "informal title"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c2d64cdd-9cee-4621-b926-d102392ba0ce", "value": "http://localhost:8000/41d71deb-c14b-46b2-b174-074c9abd5e3f"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/299a2526-ed43-4578-ab31-aca6ab0b4a2f"> + <dcterms:identifier xml:lang="en">{"id": "f4400e35-6810-49d3-807d-10f5540cbdca", "value": "http://vocab.getty.edu/aat/300412167"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "dd19218a-3861-4486-8f15-9f82ce9aa66c", "value": "shilling (unit of currency)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "1bdb0c5b-be28-4f65-8b3a-c538a9323cb6", "value": "General term for units of currency based on English silver or cupronickel coins valued at twelve pence and minted from the mid-16th century until 1970."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/3d0d006d-cd13-4b0b-88c4-0fa458c9bef6"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "2901ac2c-c0d1-449b-b310-90d497517fa1", "value": "Graph"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "d4dcbb89-8fe2-4343-abc0-f5f568a8eada", "value": "graphique"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "13dda65c-3924-4cdb-900b-cae8c324fe38", "value": "Darstellung jeder Art von Daten durch Punkte, Linien oder Balken, in der Regel um Relationen abzubilden."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a2a5cc1d-47c0-49cc-8f73-f36753eb35f8", "value": "graphs"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "345dab83-8755-44a5-8253-7b0aaef75843", "value": "http://vocab.getty.edu/aat/300027020"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "c7126296-3a9c-4dc2-9d3d-7a4ba0e9eca8", "value": "Representations of any sort of data by means of dots, lines, or bars; usually to illustrate relationships."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/ecb492a0-ece2-44cc-be2f-2773ba314d0d"> + <skos:narrower rdf:resource="http://localhost:8000/0fa2731d-a349-4cf4-979c-3a3de0375a79"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/857c6735-bc48-421b-a042-6c96b3f72b75"> - <skos:scopeNote xml:lang="en">{"id": "244c67ff-91bf-44d6-b744-bfa43415a1a3", "value": "Use both for letters addressed by a bank to a correspondent certifying that a person named therein is entitled to draw upon his credit up to a certain sum and for letters addressed by a banker to a person to whom credit is given, authorizing that person to draw on the issuing bank."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "c2a0599e-4e25-46e0-ad8e-947ea8afcdff", "value": "lettre de cr\u00e9dit"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "133c9ee6-60f1-44aa-9819-f0d721b61716", "value": "http://vocab.getty.edu/aat/300027550"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "5afef2ce-a7a2-4af7-a007-b9d5f1bcc7a3", "value": "letters of credit"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/1c9052ae-db51-4033-aba0-fc767330fd12"> + <skos:prefLabel xml:lang="en">{"id": "75575b99-fb14-45e2-867b-9f3f6147e59e", "value": "art collections"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "9f5131a8-b8a6-4559-bd3c-6874f6a08aa0", "value": "http://localhost:8000/1c9052ae-db51-4033-aba0-fc767330fd12"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e06c72b1-9462-47bf-a3f1-f313e22a3b31"> + <skos:Concept rdf:about="http://localhost:8000/a0902fd9-0443-41ec-ab4b-203062bfa26b"> + <skos:scopeNote xml:lang="de">{"id": "62d03e43-f44a-44c0-b55a-02c95517e63f", "value": "Gruppe von separaten bibliographischen Objekten, miteinander in Beziehung stehend,durch die Tatsache, dass jedes zus\u00e4tzlich zu seinen eigenen Titel einen Sammeltitel f\u00fcr die Gruppe als Ganzes enth\u00e4lt; sie werden sukzessive herausgegeben; in der bildenden Kunst wird der Begriff f\u00fcr eine Gruppe von Werken eines einzelnen K\u00fcnstlers verwendet, die eine spezifische und sinnhafte Beziehung zwischen den Arbeiten besitzen."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "a2aedab7-5118-494d-ab6f-eed3b871dd8b", "value": "Serie (Gruppe)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "78994040-d30d-4585-b31d-3b4144ec4298", "value": "credit"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "09bb9eb8-8841-4b5e-b808-51f61d4d9cb6", "value": "http://localhost:8000/e06c72b1-9462-47bf-a3f1-f313e22a3b31"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "1446e9d6-bd35-4fd4-bd1a-017cd51f8670", "value": "series (object groupings)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "3f3af03a-b2e7-4fcd-9288-66e2d908f6f4", "value": "s\u00e9rie"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f8b03ff2-f7fe-46a8-bf95-058a68d3a494", "value": "http://vocab.getty.edu/aat/300027349"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "b5e525ad-0711-4a9a-bd11-9011166773db", "value": "A conceptual grouping of visual arts works, literary works, or performance art created in succession by the same author, artist, or studio and intended by the creator(s) to be seen together or in succession as a cycle of works. Works in a series typically share the same or related subjects, the same or similar media, or other characteristics, but their defining characteristic is that they were intended to be conceptually related as a series. Individual items in a series may be cataloged separately and linked to the series. "}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/479e887b-5700-4629-adfa-a71d652756fa"> - <skos:prefLabel xml:lang="en">{"id": "b147aaf2-9a93-4908-a9fc-fa82ac87dd09", "value": "partial payment"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e6e4f496-644b-42f1-9e80-0d22eeaf0b6c", "value": "http://localhost:8000/479e887b-5700-4629-adfa-a71d652756fa"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/759cca44-5219-4074-beda-214a81c201b0"> + <skos:scopeNote xml:lang="de">{"id": "df330848-baea-4f05-8d18-3c76bf490b18", "value": "Wird in Bezug auf eine Gruppe von Gegenst\u00e4nden verwendet, die zusammen benutzt oder betrachtet werden soll."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "0e02be5b-f3b6-4929-b444-f420c427b791", "value": "Assemblies of items that the creator intended to be kept or seen together, cuch as a tea set, a desk set, or a pair of terrestrial and celestial globes. A set differs from a collection in that it is typically smaller and it was intended by the creator to be grouped together. It is useful to catalog the set as a whole when the items in the set will not be cataloged separately or when there are characteristics of the whole set that may not be apparent in the individual records for the parts. "}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "c8459b61-f670-4009-8348-7f719e536f78", "value": "sets (groups)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "4923980b-30ab-425b-936b-2c91702a8b3f", "value": "Set (Objektgruppe)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e6241b43-94ff-4e4f-8d47-f0f41d9a0591", "value": "http://vocab.getty.edu/aat/300133146"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/7baa8baa-38a4-4f83-a96a-1a18bd751c36"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1c09bed5-8ef4-4d1d-9b29-3764bdb8c14b"> + <skos:Concept rdf:about="http://localhost:8000/bf2a55ff-b9c6-4216-bb96-172825edef68"> + <skos:prefLabel xml:lang="de">{"id": "b24f07d6-9adc-4384-a444-a053fc9f6caf", "value": "Archiv (Objektgruppe)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "3c649aff-dafb-4f85-8443-fcb36f18bc4a", "value": "Sammlung historischer Aufzeichnungen und anderer Prim\u00e4rquellen, die im Lauf des Lebens eines Individuums oder einer Institution entstanden sind und erhalten wird, um die Funktion oder Geschichte der Person oder der Einrichtung zu dokumentieren. Die Dokumente k\u00f6nnen materiell oder digital vorliegen."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "0ca70824-073b-492d-8c7f-9e67511d830d", "value": "Collections of historical records and primary source documents that have accumulated over the course of an individual's or organization's lifetime, and are kept to show the function or history of the person or an organization. Documents may be tangible or digital."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "f563a6c4-954d-44e8-ac48-35604274d8df", "value": "archives (groupings)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "5f41e3a4-5f10-485d-978d-ac9e47e71b31", "value": "http://vocab.getty.edu/aat/300375748"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "87f900f9-4d3e-4965-baea-ef09a08fba80", "value": "http://localhost:8000/1c09bed5-8ef4-4d1d-9b29-3764bdb8c14b"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "ec2c684b-a678-4434-8f81-a2be786ec1b1", "value": "first installment"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/90dbeb41-afa5-4e24-ba2c-bbc04779130d"/> + <skos:prefLabel xml:lang="en-us">{"id": "ad5208d1-ab0b-45ec-8e4d-702225bf9a0d", "value": "Collection Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b5fdfbea-55d1-4777-a376-85c87397cacc"> - <skos:scopeNote xml:lang="en">{"id": "a1b6f65e-6626-4412-b5ea-6577e6ff632d", "value": "Credit instruments ordering the payment of a specified amount of money, usually issued and payable at a bank or post office."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "6b9506ee-e1b0-4448-84a7-6a31008c4b15", "value": "http://vocab.getty.edu/aat/300193975"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "cae0a99a-7266-4aeb-bda2-ce7371479ff9", "value": "money orders"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "85f3973b-f3bc-4ad5-b1b1-1e436bc4733c", "value": "mandat de banque"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/fe2241bd-9fa0-463b-aa69-f26aca86f3ee"> + <skos:prefLabel xml:lang="en">{"id": "52a5d486-7cb2-4369-b0b1-2fec4f5ffdbf", "value": "components (objects parts)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "21257c37-5166-42c7-ac88-9abe3c58b9ee", "value": "http://vocab.getty.edu/aat/300241583"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "a6c2a176-323e-42b1-a589-64f6dfc58be2", "value": "Constituent parts of a larger object. A component differs from an item in that the item can stand alone as an independent work but the component typically cannot or does not stand alone. Examples are a panel of a polyptych or a discrete architectural component such as a dome."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "3f0b1afc-66d1-470e-bbe5-4494b73f16a7", "value": "Bestandteil von Objekten oder Strukturen."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="de">{"id": "57963d9b-3149-4e2c-8bf0-0c08f48bebc4", "value": "Bestandteil (Objekt)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/cf5052ee-e2bb-4112-a838-28aa3d048666"/> - <skos:narrower rdf:resource="http://localhost:8000/3f407090-d21c-4e43-bea1-efd6920fc981"/> - <skos:prefLabel xml:lang="en">{"id": "f15b7638-c21a-489c-9cac-1cf64c8522a3", "value": "Payment Event Type"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "de640b43-2a21-4ce8-82ea-bedbc5eba697", "value": "http://localhost:8000/9761c5b7-5d6e-4dd0-9845-2a53d1456091"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/ab4e604c-8af4-4b55-8d62-a9875c260552"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "6c5a66c7-121f-4892-b1cd-e0efb4fcc6a6", "value": "Refers to the culture of the semitic race inhabiting the Arabian peninsula and neighboring areas, particularly during the pre-Islamic period from about 4,500 BCE to the early 7th century CE. Periods related to Arabian cultures."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "2864cb27-6bb8-4282-a5ed-1227b86da509", "value": "http://vocab.getty.edu/aat/300019797"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "736a244a-ea71-4bda-807c-3405136c8e2a", "value": "Arabian (culture)"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/9a0fb1f3-0d1b-480a-ae3d-382d5bc4256c"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d5e68b90-83be-4307-8583-f7e5e939832c"> - <dcterms:identifier xml:lang="en">{"id": "8ad9de47-4296-4b75-89a0-dcf3052f0755", "value": "http://vocab.getty.edu/aat/300444123"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "061b1f2a-c2c7-470b-ba55-d8eed3711a3f", "value": "3D digital microscopes"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/f3432589-1ec7-4f21-90ff-3582608bbbc4"> + <dcterms:identifier xml:lang="en">{"id": "512ef1b9-5a49-45ff-bf4d-dc32e71ac3a0", "value": "http://vocab.getty.edu/aat/300025976"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "67866409-b50a-4244-bf25-2602dfa7320a", "value": "Digital microscopes that combine three-dimensional image capture, image stitching, and modelling data. These scan an object through multiple focal planes and compiles this data into a three-dimensional image."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "8fc8f2a5-350b-4fde-b053-908764bb7b13", "value": "Bezieht sich auf eine Gruppe von Objekten oder Materialien mit einem einheitlichen Bezug, die von einem Individuum oder einer Organisation zusammengestellt wurde. Es kann sich um Kunstwerke in einem Museum oder Archiv handeln oder um separate literarische Werke, die nicht Teil einer Abhandlung oder einer Monographie zu einem Thema sind und dennoch kombiniert als Ganzheit publiziert wurden."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "de155f7b-041b-4528-b769-561f076907f5", "value": "collections (object groupings)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a301cbe0-486b-4fea-b14f-b8cdd452a418", "value": "Accumulated groups of objects or materials having a focal characteristic and that have been brought together by an individual or organization. A collection comprises multiple items that are conceptually or physically arranged together for the purpose of cataloging or retrieval. A collection differs from an archival group because the items in a collection are bound informally for convenience and do not necessarily share a common provenance or otherwise meet the criteria for an archival group. Collection-level cataloging is appropriate for materials that share one or more common characteristics that make it useful for them to be clustered together. Individual items in a collection may be cataloged separately and linked to the collection. Examples of collections include a selected set of art works in a museum or archive, or separate literary works that do not form a treatise or monograph on a subject but have been combined and issued together as a whole."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "02cdf7e7-3664-4f09-adb3-b89c636bcf3e", "value": "Sammlung (Objektgruppe)"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/67ee8af0-c9a0-4e1d-8f2b-19b35fcb57e6"/> + <dcterms:identifier xml:lang="en">{"id": "7feffbf0-f644-4955-87ca-e57675c8e664", "value": "http://localhost:8000/ecb492a0-ece2-44cc-be2f-2773ba314d0d"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/4f4cf6d3-c30a-4f08-a733-c8bd1276067b"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b2af20c9-e820-4db2-ad65-3744a4202d2d"> - <skos:prefLabel xml:lang="en">{"id": "051e34e4-f311-42a9-a544-a0343478c159", "value": "spectrometers"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "fb9fc1b5-46c2-4f51-af0e-12a7d374e49b", "value": "http://vocab.getty.edu/aat/300203450"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"/> - <skos:scopeNote xml:lang="en">{"id": "ff4a378d-f4a1-4cb8-b696-31b187c88889", "value": "Optical devices for measuring radiant intensities at various wavelengths or the deviation of refracted rays, as from the angles of prisms."}</skos:scopeNote> - <skos:narrower rdf:resource="http://localhost:8000/8201eb9f-7936-4220-8403-074ce3e9ea48"/> - <skos:scopeNote xml:lang="de">{"id": "eac99aae-d37b-4b45-9b2b-24b066f3571b", "value": "Optisches Ger\u00e4t zur Messung der Strahlungsintensit\u00e4ten bei verschiedenen Wellenl\u00e4ngen oder der Richtungsablenkung durch beispielsweise ein lichtbrechendes Prisma."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/b8bff485-6f60-45ea-a9bc-32861ade7861"> + <dcterms:identifier xml:lang="en">{"id": "b7e2604a-3623-460f-9674-f11d046d0234", "value": "http://vocab.getty.edu/aat/300404023"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/e3193f72-3a4c-4d54-8294-6a1af433a886"/> - <skos:narrower rdf:resource="http://localhost:8000/d29562a6-93e2-409e-9bb4-bcc58077113f"/> - <skos:prefLabel xml:lang="de">{"id": "a2291891-74e9-47c9-bc85-703a6499709e", "value": "Spektrometer"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/3c4df3ee-bf83-4b3e-b2d1-0dc42baf6088"/> - <skos:prefLabel xml:lang="fr">{"id": "f813b556-80dc-4ab1-8f48-f3ed4520f3fd", "value": "spectrom\u00e8tre"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "47a37a65-8061-4180-aac7-cf344d9c682e", "value": "subgroups (archival divisions)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "1fd7db53-efbd-4504-b842-8442551c350a", "value": "In archival description, subordinate groups or subdivisions of a group; archival groups that are parts of larger groups."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/3787d26c-11a1-447c-8a71-74b862714f5f"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/13485eec-f4aa-456a-8250-71526797597d"> + <skos:Concept rdf:about="http://localhost:8000/8af67f6d-3f1b-4313-9668-d3969a0c5469"> + <dcterms:identifier xml:lang="en">{"id": "884093dc-78b3-4af5-ac74-41dd97d5dc3c", "value": "http://vocab.getty.edu/aat/300070186"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "fddb8dc5-5b3d-48a3-a06a-64bbe10d82b0", "value": "oeuvre"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "3d42cde5-d710-4ae9-95d7-d12902ffa845", "value": "The works produced by an artist or composer regarded collectively. For the collective body of works by a writer, use \"corpora.\""}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "61ce0aa0-a30e-4f3a-a9b1-e9a5c7120921", "value": "http://vocab.getty.edu/aat/300198980"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "ad191450-3c74-4226-97b8-9790a6783126", "value": "Mass spectroscopes that identify and record the kinds and intensities of particles in a given substance."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "2ebc6abb-98d9-4e3e-b92b-71f39341e0e9", "value": "spectrom\u00e8tre de masse"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "d7cc0dc5-8463-4550-a3f1-7844e33b928b", "value": "Massenspektroskop, das die Arten und Intensit\u00e4ten von Partikeln in einer vorhandenen Substanz erkennt und aufzeichnet."}</skos:scopeNote> - <skos:narrower rdf:resource="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"/> - <skos:prefLabel xml:lang="en">{"id": "3e017e1b-67cd-4b3a-acc0-e403e1bdcb92", "value": "mass spectrometers"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "89b631ba-f316-4cb5-aaf4-faa2aec422a6", "value": "Massenspektrometer"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/fe766393-d00d-463e-b706-4ca9ad772b7d"/> - <skos:prefLabel xml:lang="en">{"id": "89fcc5d8-37ae-4f1a-a4ad-0007c8aa0113", "value": "Instrument Types"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/b3498065-2de2-43d1-945c-96713ffb1fb8"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/535e70a2-5dca-4796-bbd4-35a4f4b4d33f"> - <skos:scopeNote xml:lang="en">{"id": "c0977b74-5528-49a1-8715-4364cd404336", "value": "Machines used to create a physical object from a three-dimensional digital model, typically by laying down thin layers of a material in succession."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "c6f8f0ac-ef81-4eb0-9143-a464e2f8366c", "value": "imprimante 3d"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/c262b1b6-df83-42a7-9385-1e0cd2b9e706"> + <skos:prefLabel xml:lang="de">{"id": "109f73d4-10ba-4410-ba56-46cfb7bbbd6f", "value": "Nationalsammlung (Sammlung)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "bdc1e761-bd37-46c6-ab06-dd66f8dab5c6", "value": "http://vocab.getty.edu/aat/300391466"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "08e1d7ca-78eb-4742-a502-0aae0e0ae29f", "value": "3D Printer"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "92c571fb-6171-48c0-8d6f-e8bff0d3fc95", "value": "http://vocab.getty.edu/aat/300263379"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "2c03e71b-7d06-484b-988c-048148df781f", "value": "national collections"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "d915197a-c849-431f-b66c-0bfcd692ab9f", "value": "Collections maintained by a nation's government and housed typically in a library, archive or museum."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "60562dd4-c271-493d-8a46-a1f7301f27b4", "value": "Sammlung, die von einer nationalen Regierung unterhalten wird und in der Regel in einer Bibliothek, einem Archiv oder Museum untergebracht ist."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/26472e1f-7f73-4205-84e8-28c40b8e36ec"> + <skos:Concept rdf:about="http://localhost:8000/7ecee866-60e9-428d-85ef-c089ce047e2a"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "c7eee12d-4b9d-4f6a-bbf4-67e82345d700", "value": "Ger\u00e4t zum Messen von W\u00e4rmemengen, wie beispielsweise Verbrennungsw\u00e4rme, der spezifischen W\u00e4rme oder der bei chemischen Prozessen wie dem Wechsel von Aggregatzust\u00e4nden entstehenden W\u00e4rme."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "a407f7c0-4b36-495a-9fbf-982dd3e395bd", "value": "Kalorimeter"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "8e8fb533-6183-479c-a483-d91256a19f48", "value": "http://vocab.getty.edu/aat/300195893"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "7e31ec7d-075a-446e-9481-fcdc0247cde6", "value": "calorimeters"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "80827c9a-9071-4494-932c-fa6b3594b2e6", "value": "calorim\u00e8tre"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "3b37bf07-415e-4922-ba1b-322b59eb506b", "value": "Instruments for measuring heat quantities, such as the heat of combustion, specific heat, or vital heat in such processes as chemical reactions or changes of state."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "d56d9428-adef-4a4a-b58a-1159327c242b", "value": "http://vocab.getty.edu/aat/300404024"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "a990091f-06ba-4516-836f-af78c7304ad9", "value": "Individual objects or works. Most works in museums are cataloged as items. A stand-alone architectural work should generally be cataloged as an item. An item may be composed of multiple parts or components, and it may be desirable to catalog the parts separately, linking the records for the components to the record for the whole. An item differs from a component in that the component cannot stand alone as an independent work."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "1a624dd8-3b71-476d-aa83-4dc3fb7a5460", "value": "items (cataloging focus)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8331ba52-065a-4ab7-8883-f6cfc14e8a08"> - <dcterms:identifier xml:lang="en">{"id": "bf76aa36-a79f-4a85-9a31-935927e50cce", "value": "http://vocab.getty.edu/aat/300195965"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "a0d108f1-dab3-4dd3-92ac-c3940a5c21fc", "value": "chromatom\u00e8tres"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "9549813d-dba5-42a8-a784-e497c3e906dc", "value": "chromatometers"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"/> - <skos:scopeNote xml:lang="de">{"id": "e2ade6a2-5832-49fc-9d22-e3e8fe999f80", "value": "Ger\u00e4t zur Messung der Farbwahrnehmung."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "12be9e28-0916-4fd2-8750-1c4b8ae8f4c2", "value": "Instruments for measuring color perception."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/2c1d1ac2-3f1c-4796-9f01-f0857b918c9e"> + <skos:scopeNote xml:lang="en">{"id": "5b089137-71b6-43bf-a2bd-2528467724e4", "value": "Groupings into which items are divided to be sold at an auction."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "16f695a1-a1c7-4910-910e-42ab2567201b", "value": "Chromatometer"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "0c7fbbaf-4b5a-490f-b71e-97137df715c8", "value": "auction lots"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "9b973a47-22a4-4a28-bedb-b49785940138", "value": "http://vocab.getty.edu/aat/300411307"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5435fb76-946f-414d-ad14-57a6b552c5d2"> - <skos:prefLabel xml:lang="en">{"id": "d8708d04-89cb-4df7-b1ba-79b77d338c06", "value": "lasers (optical instruments)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/2465ff6c-0185-479f-a545-13a1cdab4e69"> + <dcterms:identifier xml:lang="en">{"id": "395345eb-5d00-40cd-847b-08022b7d77e5", "value": "http://vocab.getty.edu/aat/300312349"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "096149ff-b3a9-46d0-9d84-8986b91ca454", "value": "issues (object groupings)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "7487c9f4-c368-4029-941f-1995a1b94ade", "value": "All examples of a set number or amount of multiples, such as coins, notes, stamps, prints, copies of a newspaper, books, periodicals, etc. that were issued at one time or otherwise sharply distinguished in pattern, design, color, or identifying numbers from those issued at another time."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "59cd6593-3dd3-4f08-8f18-d756ee242b4d", "value": "http://vocab.getty.edu/aat/300024548"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "7fd4cde3-4b38-4b38-bb5f-24a57bcf9b70", "value": "Laser"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "1d147ab2-83ad-4e4a-839a-ae4dcd8d738d", "value": "Devices that generate electromagnetic radiation in the ultraviolet, visible, or infrared spectrum, in the form of a very narrow continuous or intermittent beam. Originally an acronym for \"light amplification by stimulated emission of radiation;\" the first functional laser was built by Theodore H. Maiman (1927-2007), and demonstrated in 1960. Lasers have multiple applications: they are used as components in information retrieval and transmission devices and systems, cutting, measuring, and medical tools, and as entertainment devices."}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "ca0e0ceb-4d47-47dc-a717-06d6c4aa1d3f", "value": "Ger\u00e4t zur Erzeugung permanenter oder intermittierender elektromagnetischer Erzeugung eines d\u00fcnnen Lichtstrahls im ultravioletten, im sichtbaren oder im infraroten Bereich des Spektrums. \"Laser\" ist ein Akronym f\u00fcr \u201elight amplification by stimulated emission of radiation\"\" (Lichtverst\u00e4rkung durch stimulierte Emission von Strahlung). Das erste funktionale Laser-Ger\u00e4t wurde von Theodore H. Maiman (1927-2007) konstruiert und im Jahr 1960 vorgestellt. Laser werden in vielen Bereichen eingesetzt, als Komponenten f\u00fcr den Abruf oder die Wiedergewinnung elektronischer Informationen, in der Produktion zum Schneiden oder Messen, als medizinisches Werkzeug oder in der Unterhaltungselektronik."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "2dec3908-35b3-4fe5-a12e-992d3bc34981", "value": "http://localhost:8000/9a0fb1f3-0d1b-480a-ae3d-382d5bc4256c"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7962e30a-76e0-4eee-b85b-58c8c1a75141"> - <skos:scopeNote xml:lang="de">{"id": "5e63bcb2-b809-4f23-9fdb-e224586d0380", "value": "Ger\u00e4t, das auf verschiedene Weise den Brechungsindex von Stoffen misst."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "f21df62a-afc0-4c7c-85d8-c758670cdc75", "value": "http://vocab.getty.edu/aat/300201594"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "49091bdf-4f7c-4edc-8453-4187a2e5c6fa", "value": "Instruments used to measure the index of refraction of substances in any of several ways."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "5dd0fa25-325c-43da-bc2b-bce6887cc4fd", "value": "refractometers"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "86f9489a-ac4a-4505-9e52-9f159738de1c", "value": "r\u00e9fractom\u00e8tre"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "8806c48f-d8c4-4d0b-bc13-b76df7afc02d", "value": "Refraktometer"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/61dbd5a2-79a4-43f3-8100-9e4c59aefa53"> - <skos:prefLabel xml:lang="de">{"id": "337a3164-6849-44bf-8be1-5282a4dbdccd", "value": "Skalpell"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "06cd803b-e3ae-4dff-86a2-691310a354ad", "value": "Small, thin-bladed, usually straight knives, sometimes with changeable blades, used for precise cutting or delicate removal of one material from another."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "63ed9915-cb33-44b3-b370-0182446a2d07", "value": "scalpel"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/c0029e45-bd2d-42b5-b2a4-77b9d1219159"> + <skos:scopeNote xml:lang="en">{"id": "57f2cb6d-86a4-4b10-b74d-7d835463567a", "value": "Collections, usually but not necessarily held by a public institution, that are made available for access by members of the public. The earliest recorded instance of a public body receiving a private art collection occurs in the 16th century, when the Grimani family gave their collection to the Venetian republic. For collections in private hands that are not available to the public, use \"private collections.\" "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "0e521a68-3b6e-4184-b546-41339e999286", "value": "http://vocab.getty.edu/aat/300411912"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "38691c7e-4309-4337-838f-7244babd839e", "value": "public collections"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "1d25db87-cac2-4670-8af0-a903e9aab523", "value": "scalpels"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "4009ca0d-7a19-4663-b937-996f56d6d70c", "value": "Kleines, in der Regel gerades Messer mit d\u00fcnner Klinge, manchmal auch mit austauschbaren Klingen, f\u00fcr pr\u00e4zises Schneiden oder vorsichtiges Entfernen eines Materials von einem anderen verwendet."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "ef4d349c-e44d-417a-8465-cc428c3a2f73", "value": "http://vocab.getty.edu/aat/300262233"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0d9d0957-e2eb-4ba1-a848-a6e8231ab70d"> - <skos:prefLabel xml:lang="fr">{"id": "838557c3-ac6a-4bbd-864c-6c57cff3df2b", "value": "microscope"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/3044ebe4-8d5f-446a-b618-5f39fbfc2364"/> - <skos:prefLabel xml:lang="de">{"id": "68d7651d-4f49-4ad7-addf-a65e760a486e", "value": "Mikroskop"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/7d9253fe-5b76-444d-84aa-34f35f0be80e"> + <dcterms:identifier xml:lang="en">{"id": "28a0315e-1672-4ef6-86a5-d3dd7ee3b31c", "value": "http://vocab.getty.edu/aat/300435443"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "0fccc7ca-50fd-4b67-abcd-aff15396cbfa", "value": "object/work type (category)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "da7c3ddf-7b44-469a-923d-1b366945aac8", "value": "The kind of object or work described, e.g., painting, book, cathedral."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "328cb19d-693c-4c41-8a18-e507973214be", "value": "http://vocab.getty.edu/aat/300024594"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "3f795521-18fd-4911-90a0-dfc1bb07a739", "value": "microscopes"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"/> - <skos:scopeNote xml:lang="de">{"id": "d11c2c4f-fb2b-4af1-a9ac-96d11789813f", "value": "Optisches Ger\u00e4t, das aus einer Linse oder einer Kombination von Linsen besteht, mit dessen Hilfe sich Objekte betrachten lassen, die zu klein f\u00fcr das blo\u00dfe Auge sind. Zudem werden auch andere Ger\u00e4tetypen so bezeichnet, die einen Elektronenstrom (Elektronenmikroskop), elektro-magnetische Strahlung (R\u00f6ntgenmikroskop) oder andere Hilfsmittel als Licht und Linsen einsetzen, um das Abbild von kleinen Gegenst\u00e4nden zu vergr\u00f6\u00dfern."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "23daceef-601b-4513-b7fd-3f6bcadb0d31", "value": "Optical instruments consisting of a lens or combination of lenses that allow the viewing of objects that are too small to be seen with the naked, unaided eye. The term may also be used for various types of instruments that use a stream of electrons (electron microscope), electromagnetic radiation (x-ray microscope), or other means other than light and lenses to magnify images of small objects."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/dfc9614b-86ea-4e07-bf9a-caa703058cee"> - <dcterms:identifier xml:lang="en">{"id": "ac7f923f-fdf3-4b45-81d4-37b334e5c7ff", "value": "http://vocab.getty.edu/aat/300379784"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "47944c87-c8f1-43c4-bc77-33103a4815dc", "value": "A device which operates as a feedback control system, emitting a signal that measures or detects a physical stimulus such as heat or motion to which it responds. "}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "ca179864-e673-4fae-a647-5366e4fd4cd6", "value": "sensors"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/905f6f3e-9cc0-479e-9e7d-e313a14f3297"> + <skos:scopeNote xml:lang="en">{"id": "72eba3b0-b715-4ad1-ae03-43f3a5d015c3", "value": "Archival groups are aggregates of items that share a common provenance. Archival groups may range in size from several thousand items (e.g., the entire body of drawings, models, and written documents from an architect's office) to just a few items (e.g., a handful of surviving drawings from one architectural project). Group-level cataloging focuses on the description of coherent, collective bodies of works. The description emphasizes the characteristics of the group as a whole, and highlights the unique and distinctive characteristics of the most important works in the group. Groups are usually defined by repositories, and may have several subgroups that are established by archival principles of provenance. The catalog record for a group normally corresponds to a physical group as it currently exists and is stored by the repository; however, historical groups may also be described. Groups may be divided into subgroups."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "3ab48791-c2ce-40ff-a55b-09a33aa72752", "value": "groups (archival divisions)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "0943ec2f-052e-405a-8909-58b4f2e370cb", "value": "http://vocab.getty.edu/aat/300404022"}</dcterms:identifier> </skos:Concept> </skos:narrower> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e4ff9005-d58f-45b4-8dd0-6178fe8f4da9"> - <skos:narrower rdf:resource="http://localhost:8000/14197ada-900e-4783-94b7-454707317007"/> + <skos:Concept rdf:about="http://localhost:8000/1001587a-3524-455f-92ea-34deafc7bf68"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "e24b5859-5e28-4414-9b13-a02378166c8d", "value": "http://localhost:8000/1001587a-3524-455f-92ea-34deafc7bf68"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "aa87f64a-9584-4f21-8a71-2116cd9a7850", "value": "estimate"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/fe6ad26d-48c2-407d-b438-7859c5f1c301"> + <skos:prefLabel xml:lang="fr">{"id": "c33518be-a7dc-4021-98b7-bd4315ee16e9", "value": "impression (printing)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "2e032721-edfa-4d07-b873-0d5fa5d5d4c9", "value": "printing (process)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "7e9f9256-d646-4ac7-a4ad-1b0ecdd1b638", "value": "drucken"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0e82c48a-27a4-4154-9e42-3d7a7234b043", "value": "http://vocab.getty.edu/aat/300053319"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "79eaedae-bdb6-44c2-8c0b-2822cf21a8db", "value": "Various means of reproducing identical copies of graphic matter in a fixed form. Processes by which an image, pictorial or textual, is transferred, usually to paper or cloth, most often by means of a plate, block, stone, or screen. Use also for the making of photographic prints and, with computers, for the production of a paper copy of stored data. For the production of prints in a fine arts context, prefer \"printmaking.\" "}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/6c400200-8763-49ad-9928-8135a918b5d5"> + <dcterms:identifier xml:lang="en">{"id": "09707166-b782-41b3-822e-d3a166826de3", "value": "http://vocab.getty.edu/aat/300111195"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "c8c73e88-c3de-42f2-b135-8854a073d93f", "value": "Refers to the culture of the modern nation of Hungary, or in general to the cultures that have occupied the area of modern Hungary in central Europe. More broadly, it may refer to the culture of the Magyars, a Finno-Ugric people who settled in the middle basin of the Danube River in the late ninth century CE."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "13655cdc-2643-417f-b542-c1272d78ed75", "value": "Hungarian"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/14aaf84d-4bd1-40c4-8f6e-6e0e368a49d4"> + <skos:scopeNote xml:lang="en">{"id": "87a11c0f-ec8f-479b-8bfa-a5255d1d8525", "value": "Graphic designs intended to explain rather than simply represent. For example, in geometry, a diagram may be a figure composed of lines, serving to illustrate a definition or statement, or to aid in the proof of a proposition. In other contexts, a diagram may be any illustrative figure which, without necessarily representing the exact appearance of an object, gives an outline or general scheme of it, so as to explain or exhibit the shape and relations of its various parts."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "875c24db-8776-4cca-a76d-0592ce674f81", "value": "diagrams"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "1b0630eb-a62b-4c27-8b8a-9551efeabe51", "value": "Diagramm"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "e0ffbc96-cdc1-4f49-b4c7-621bdde69247", "value": "Grafischer Entwurf, der eher erl\u00e4utert denn darstellt."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "45e90b39-c87b-4204-8633-6e0cff64e7db", "value": "http://vocab.getty.edu/aat/300015387"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/6bb65117-9c69-4aa7-a99b-fa1ad817495c"> + <skos:scopeNote xml:lang="en">{"id": "1ef5372e-f375-4ab6-b8a4-e3336bf55898", "value": "Designation indicating something, someone, a characteristic, or an activity is the most important or fundamental, is occurring or existing first in a sequence, belonging to the beginning or earliest stage,is the original, or not subordinate to or derived from anything else."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "ae7f2811-3fee-4624-bc74-9451bd05be2d", "value": "primary (general designation)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "943fe0b0-64d9-4117-a8ad-cbfefaf9df38", "value": "http://vocab.getty.edu/aat/300404450"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/94bb858b-3d17-41c7-a145-d70fda1822c5"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "a5f9db10-12a7-4856-8d4e-6722c08ceab9", "value": "http://vocab.getty.edu/aat/300389895"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "a3a25c86-55f0-49f0-859b-50123974b570", "value": "watercolor painting (technique)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "f40b54d9-1dab-4510-b167-63f5c2238cc8", "value": "The technique of painting with pigments in a water-soluble binder and thinned with water, usually on paper. Includes gouache painting, although gouache is not technically watercolor paint."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/c84d1624-d004-4640-9653-6a6cd99c32e2"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "eb5718e5-fb47-47eb-a4c4-be1a81f9761d", "value": "http://vocab.getty.edu/aat/300411837"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "f5fee348-bf95-45e6-acf4-2d1980b9b50b", "value": "feminine"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "035e18e6-866d-4d7e-82a6-28e593508060", "value": "Having chracteristics, qualities, attributes, or actions associated with the female sex."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/c3bf842e-3c29-48da-9908-b4fc844ba2a6"> + <skos:prefLabel xml:lang="en">{"id": "5b4e4c45-2256-4f89-a0c6-95dec2d836cb", "value": "handheld XRF spectrometers"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "a862ee2f-2a45-444d-8231-3a4ee78199ee", "value": "http://localhost:8000/c3bf842e-3c29-48da-9908-b4fc844ba2a6"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/58d98835-1370-4665-88fb-230bed179b67"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "efd6b14f-8951-405b-a058-e80ce2d4ca51", "value": "Method of acquiring property by each party giving and receiving from the other party, usually regarding property of equal value. For example, an exchange may be made by individual authors, libraries, museums, and other institutions in which they exchange between or among each other their own publications or those of the institution with which they are connected, or duplicates from their own collections."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "43f9fb80-75a5-44cb-9a48-eb6bc4b3d970", "value": "http://vocab.getty.edu/aat/300263427"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ba5a4904-f32f-499a-910a-23b3dcc14ba1", "value": "exchange (method of acquisition)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/acccfdce-e713-4172-93c5-edc0fabb9e1a"> + <skos:prefLabel xml:lang="en">{"id": "f11d4aa0-49aa-47b3-b0f5-3d70854c3534", "value": "Czech (culture or style)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "5c73a023-45eb-4c0b-a3b7-c7d50ef446e6", "value": "Refers to the culture of the modern nation of the Czech Republic, or in general to cultures that have occupied the area of the modern nation in central Europe. It is also used to refer broadly to the culture of the Bohemian people."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "cdba3622-edb2-4f70-bab5-cd3d47a27da8", "value": "http://vocab.getty.edu/aat/300111166"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/8adca8e5-52db-434d-905f-477db70b08e9"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0e95cff7-5df1-4281-a896-d3bbb295b11e"> - <skos:scopeNote xml:lang="en">{"id": "ae55d75c-695e-4914-969a-728debcdfad5", "value": "The process of altering, injuring, or consuming something by fire or heat. For events where something is totally or partially consumed by fire, whether intentionally or by accident, use \"fires.\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "3d44eb5f-677d-41a2-b0f4-e03e92631a5a", "value": "burning"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/3db4ef7a-437d-48fb-8f34-422e226d49cd"> + <dcterms:identifier xml:lang="en">{"id": "8a4c07e5-1a80-4231-bba9-ac798af68477", "value": "http://vocab.getty.edu/aat/300111259"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "1b4f8e95-4e4d-4bbc-b8df-fd1493f03f73", "value": "Refers to the culture of the island of Ireland, which is located west of England on the Irish Sea and is currently divided administratively between the Republic of Ireland and Northern Ireland. It often refers specifically to the Celtic culture of the island of Ireland."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "de2e7a75-481c-4d31-a05a-241d4ce88da1", "value": "Irish"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "60c91251-ead6-4004-a12f-456fb8a5df59", "value": "http://vocab.getty.edu/aat/300228062"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6624ac22-3a56-41c9-865d-935d89b56161"> + <skos:Concept rdf:about="http://localhost:8000/8ef8ade6-fcdd-4da6-a9f7-1fb9e9df86d0"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "ef9ba772-191a-45fe-bef7-bae98d019527", "value": "Refers to that portion of the electromagnetic spectrum beyond that visible to the human eye. Infrared radiation has waves longer than red light and shorter than the shortest microwaves. Though not visible, it may be detected as the sensation of heat."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "a9886448-289a-4691-b1f9-7bce30cd055a", "value": "infrared radiation"}</skos:prefLabel> - <skos:prefLabel xml:lang="en-us">{"id": "eb858343-6582-4dde-86d2-a8519e0e2e3c", "value": "infrared radiation"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c3cc94c2-1867-4a48-a8f1-fbf3940a3535", "value": "http://vocab.getty.edu/aat/300225890"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "35977d19-7383-4c9c-b7d6-3c044e492404", "value": "Greek (modern)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f2ace28c-aaf8-4ca0-bb15-803c40daaf3e", "value": "http://vocab.getty.edu/aat/300264816"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "fe601627-4f5e-4836-b21b-1bdb6416ab36", "value": "Refers broadly to the culture and styles associated with the area of southeast Europe comprising the southern Balkan peninsula, Peloponnese, and various offshore islands, as well as other territories that were colonized or held by Greece during various periods of history."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/254161a9-5063-42e7-a718-05e1b6baebea"/> - <dcterms:identifier xml:lang="en">{"id": "d4c11b7e-fe23-4ff5-ae6b-63983edf8215", "value": "http://localhost:8000/e4ff9005-d58f-45b4-8dd0-6178fe8f4da9"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1682fbb6-52a3-46be-9488-8e50d1804172"> + <skos:Concept rdf:about="http://localhost:8000/93dc2aa7-a6d9-4a93-93dc-0752b890beb7"> + <skos:scopeNote xml:lang="en">{"id": "9aa1edb6-9ece-4af4-bf20-64105b3eea6b", "value": "The culture and nationality of the people in the current nation of Canada."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "a7879417-5ff0-4672-bf6b-59a845b67a67", "value": "http://vocab.getty.edu/aat/300107962"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "53feb0af-2fc7-4093-91c9-610271f60529", "value": "Refers to that portion of the electromagnetic spectrum beyond that visible to the human eye. Infrared radiation has waves longer than red light and shorter than the shortest microwaves. Though not visible, it may be detected as the sensation of heat."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "4ae8a3f8-c1cc-4aa7-b6a8-cead1ba9347a", "value": "http://vocab.getty.edu/aat/300225890"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "2f6998a4-0985-48c7-a6d0-88155b831a31", "value": "infrared radiation"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "1bebeb26-51da-4fc8-bd94-49797a3c0697", "value": "infrared radiation"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "eefc28d6-1bd6-4685-99ac-d5bf9a1f9e71", "value": "canadienne"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "f17a9554-c8d6-486e-a671-bd8bfd4cc912", "value": "Canadian"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0f419fca-4b00-422d-8353-0b24a18d7e8e"> - <skos:prefLabel xml:lang="en">{"id": "15822f2c-7700-4f9b-8464-6790ea118463", "value": "scraping"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/411df452-e9ba-481a-89dd-3b65fb8f08fd"> + <dcterms:identifier xml:lang="en">{"id": "563a61fb-c4fb-44f3-a20b-51d7b055bdb0", "value": "http://vocab.getty.edu/aat/300111218"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "d1ce55fe-9dad-4204-9df3-3c42883438ab", "value": "http://vocab.getty.edu/aat/300053711"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "3e664915-e607-4bd5-94bc-12a10cbd3173", "value": "Process of removing an outer layer by drawing the edge of some instrument held nearly perpendicularly across the surface."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "8d384b34-ab12-4fac-91dd-fc9e5991411a", "value": "Swedish (culture or style)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "94ef5088-4463-47ef-96ad-6a1de8e71c97", "value": "Refers to the culture of the modern nation of Sweden, or in general to cultures that have occupied the area of the eastern section of the Scandinavian peninsula in northwestern Europe."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/a7c83cb3-d116-4fb4-907c-c394fa3a63e0"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f8004550-b659-4647-bc2c-d969b68c5714"> - <skos:prefLabel xml:lang="en">{"id": "102dec97-2f4b-4a0a-aca6-b660a8f6282d", "value": "staining (coloring)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/64136ae8-03ed-41fa-afe4-8a3408bd34b9"> + <skos:prefLabel xml:lang="fr">{"id": "c149a6e5-ac88-4220-b741-e4e530e38084", "value": "indienne"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "f211bca5-c1a6-41c1-b93d-5a05ad841e51", "value": "Nationality, styles, and culture of the modern nation of India, or more broadly to cultures that developed on the subcontinent of India, which is bounded by the Arabian Sea, the Indian Ocean, the Bay of Bengal, and the Himalayn Mountains. It may also refer even more broadly to cultures of India, the East Indies, and the former British Indian Empire. It was formerly used less specifically to refer to any Oriental or Asian culture. Do not use this term to refer to the indigenous populations of North or South America; see \"Native American\" or other appropriate terms."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "e64b7751-e9c1-42e3-91af-41a21b9eb02c", "value": "http://vocab.getty.edu/aat/300018863"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "9cb64f96-3e01-4a21-a525-27297a4d0145", "value": "Indian (South Asian)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "7a7f5bdd-d50e-4798-9020-33a04d4b995f", "value": "Process of applying a coloring matter that tinges and penetrates or combines with the substance."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "b48670d6-8f82-437f-bcbe-8ac85b921077", "value": "http://vocab.getty.edu/aat/300053058"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/35159c58-3b68-4f2f-b6f6-10c2a873d5d7"> - <dcterms:identifier xml:lang="en">{"id": "d5ca3ee0-a861-4cb5-bd27-1e2ae59a6607", "value": "http://vocab.getty.edu/aat/300054107"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "49969144-2bbb-4d50-a6a1-cb69c22af75a", "value": "corrosion (condition changing process)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "0062b652-6b1b-4a78-97ed-5c8a01471487", "value": "The deterioration of metal or other substances by chemical or electrochemical reaction resulting from exposure to weathering, moisture, chemicals, or other agents."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/31dbfe57-3132-4bab-8c7c-eeccf0e7c3f5"> + <skos:prefLabel xml:lang="en">{"id": "6c3caf6f-2a77-4955-b7f8-558311e3ec5d", "value": "Flemish (culture or style)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "7b97d9bc-d5fb-419a-9b5f-9c2a22f6acd9", "value": "Refers to the culture of the southern Netherlands, roughly corresponding to modern Belgium, Luxembourg, and part of France, particularly during the historical period when Flanders was an independent principality."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "20c17125-b55d-4166-95ff-3c9be7d7b37a", "value": "http://vocab.getty.edu/aat/300111184"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/e77ea94b-c9c7-4e1f-879d-0916d1550d49"/> - <skos:narrower rdf:resource="http://localhost:8000/43a271b6-28f3-4524-b497-2d3e0902b6ca"/> - <skos:prefLabel xml:lang="en">{"id": "6fb47936-13ca-4413-8151-56d810433205", "value": "Destruction Types"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7bbbf8e3-76f9-4798-82aa-babfdacb6cd8"> - <skos:scopeNote xml:lang="en">{"id": "e8f165c2-2a42-4c78-b84d-69b93d69d6be", "value": "Resin formed by the reaction between dibasic acid and dihydroxy alcohol."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "5938a8f7-4260-4603-97ba-1884f3382d4d", "value": "polyester"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "68da96ee-12f0-403e-830b-ef4990e18157", "value": "polyester (resin)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "bc432579-e282-4b0c-82c7-911542cee5e4", "value": "http://vocab.getty.edu/aat/300014546"}</dcterms:identifier> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/9517a001-391c-4b5b-9939-b62e832721c1"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "5557db8e-7d50-422a-9949-2ea6cbeafec9", "value": "http://vocab.getty.edu/aat/300018125"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "659245f9-4580-4b81-86ac-9a5c62760f45", "value": "African American"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "64d11030-8fb8-42ba-b3c9-a31551d8c5f3", "value": "Designates the styles, culture, and heritage of Americans of African descent in North America. The styles capture the essence of the African American experience and how personal and political rebellion and triumphs over prejudice and social adversity have enriched and contributed to the music, art, and literature of American culture as a whole."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/43201e0e-3be9-445b-9b95-337b0a76094c"> - <skos:narrower rdf:resource="http://localhost:8000/77c89579-9cd7-4855-9126-7878278a1483"/> + <skos:narrower rdf:resource="http://localhost:8000/acccfdce-e713-4172-93c5-edc0fabb9e1a"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/08427def-f19a-4add-afe7-7f58ffc66e0d"> - <skos:narrower rdf:resource="http://localhost:8000/23cc4228-b166-403e-87c4-fb88ab7ff204"/> - <skos:narrower rdf:resource="http://localhost:8000/027ce46c-9428-4606-8352-af48ff5bd1bb"/> - <skos:narrower rdf:resource="http://localhost:8000/1f5435f5-153c-45c8-a140-bfda7f4e9b8c"/> - <skos:narrower rdf:resource="http://localhost:8000/6fcdb2d8-efa7-42f8-94fc-d491b5074631"/> - <skos:narrower rdf:resource="http://localhost:8000/b6323e0d-be53-4dc1-ab97-83f8cbb47d1c"/> - <skos:narrower rdf:resource="http://localhost:8000/c61ec308-a947-4010-83c7-0d9181dd203d"/> - <skos:narrower rdf:resource="http://localhost:8000/a1aba246-0843-4329-a12b-1c3dd0731900"/> - <skos:narrower rdf:resource="http://localhost:8000/ebf23273-18df-4605-a8d0-852c46e94b07"/> - <skos:prefLabel xml:lang="en">{"id": "124567db-e6c4-41fb-b2ee-ef63125a0def", "value": "Production Techniques"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/01ff64ed-bba4-40a1-8715-4ffbaa060780"/> - <skos:narrower rdf:resource="http://localhost:8000/1a670915-4a87-4f1a-84c4-fb2192a6e742"/> + <skos:Concept rdf:about="http://localhost:8000/e8300d8d-587a-46c1-8e79-44ee57b2c043"> + <dcterms:identifier xml:lang="en">{"id": "ade257ed-805b-4918-ab9f-3c003d79fa27", "value": "http://vocab.getty.edu/aat/300107956"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "f2602e7d-a45e-4acb-8a85-4a05b5d85911", "value": "Refers to the context of or associated specifically with the modern political entity of the United States of America."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "58d37be8-7945-4b56-bc3a-3b09348d8d9a", "value": "http://localhost:8000/08427def-f19a-4add-afe7-7f58ffc66e0d"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "9d1220bd-e3b2-4a00-adf3-674ea58ac512", "value": "am\u00e9ricaine"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "b5d92ac5-5f3d-4bfd-875c-5c021b76d0cd", "value": "American (North American)"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/84554ae9-0437-4ef3-94a3-6718fef184fe"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/84123513-2b77-4050-b1dc-4fcd1269d83f"> + <skos:Concept rdf:about="http://localhost:8000/5705baac-66ca-4fc3-adce-acc997d16b1d"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "d1adc747-6773-47c2-8470-a2ef0ab23fb9", "value": "preserving"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "78a0c255-7320-448e-bd3f-a406e4f1bb25", "value": "http://vocab.getty.edu/aat/300266154"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "dbbf0e21-f820-4284-845a-39a2010b0ac1", "value": "The process of performing actions to halt damage or to keep any object, material, or system from injury or destruction. For example, it may refer to the preservation of food or an ecological system. For the function of preservation, use \"preservation (function)\" or a specific type of preservation, such as \"historic preservation.\" For the discipline of involving treatment and long-term preventive care of cultural and natural heritage objects and systems, use \"conservation.\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "d58548b1-505a-4f19-8ba0-39368b7c138f", "value": "http://vocab.getty.edu/aat/300111175"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "d38948cb-7e57-4be5-be86-69d78169a449", "value": "Refers to the culture of the modern nation of the Netherlands, or in general to cultures that have occupied the same area in northwestern Europe along the North Sea. It is often used to distinguish the culture of the northern historic Netherlands from \"Flemish,\" which is the culture of the southern Netherlands or Flanders. It may also be used to refer in general to the culture of Germanic or Teutonic peoples; however, this meaning is seldom found in modern texts."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "5eddfe99-e9d4-4d34-a1b2-617912a3b736", "value": "Dutch (culture or style)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "8554fae3-9a3f-4aed-a093-a5898e6a6dec", "value": "hollandaise"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "8ea8844c-c175-420e-825b-3676ee0e332f", "value": "Production"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a9590301-77dc-4b3d-aa36-d669d1e338e3"> - <skos:scopeNote xml:lang="en">{"id": "1a91a127-0a68-4a8a-8827-c7b941eba7f1", "value": "Forming or producing letters to record the ideas which characters and words express or to communicate the ideas by visible signs."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "7b58788f-6d5b-4388-8387-da3d0f64b5cc", "value": "http://vocab.getty.edu/aat/300054698"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/d7562d63-8f82-4c88-8b43-f5d81044721d"> + <dcterms:identifier xml:lang="en">{"id": "9ae55fd3-8a53-4063-84af-e00646316f9e", "value": "http://vocab.getty.edu/aat/300111204"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "c74c933f-628b-483d-b0f2-74bfe14ce9ef", "value": "Polish (culture)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "9509ffba-4a7f-4204-ab7e-723769d6e973", "value": "Refers to the culture of the modern nation of Poland, or in general to the cultures that have occupied the same area in central Europe south of the Baltic Sea."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "0140d820-6541-4297-98b9-1c7619465b8d", "value": "writing (processes)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "561119cb-c441-4c87-9996-de0a729b93d9", "value": "http://localhost:8000/43201e0e-3be9-445b-9b95-337b0a76094c"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e9800977-841d-4f52-b3c8-a89ce2301640"> - <skos:prefLabel xml:lang="en">{"id": "d40a3c35-36b0-451b-86cc-f753e770b65b", "value": "sculpting"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/fdaa29fa-ac94-4c3a-802f-6a6b37f596fa"> + <skos:prefLabel xml:lang="fr">{"id": "e796a62e-7f89-4cab-b3e1-84c967d8542c", "value": "espagnole"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f1a13139-3a9d-44fa-b1fb-87a6ed87f686", "value": "http://vocab.getty.edu/aat/300111215"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "e6c7ac4b-27ca-4179-b37e-88e5547bf226", "value": "Refers to the culture of the modern nation of Spain, or in general to the cultures that developed on the Iberian Peninsula in southwestern Europe."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "97f9797c-bf5a-45eb-b710-d56cc748ddc7", "value": "Spanish (culture or style)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "40966378-46f5-484c-b3ca-e98d8b3bea73", "value": "Refers to the process or branch of fine art concerned with creating sculpture, which are three-dimensional works. It refers particularly to carving or engraving a hard material, or with molding or casting a malleable material, so as to produce designs or figures in relief, in intaglio, or in the round. It is typically used to refer to the production of large or medium-sized objects in stone, clay, or bronze. The production of small objects in bronze or stone is typically referred to by a specific term, such as \"stone carving\" or \"die sinking.\" The production of sculpture in wood or ivory is typically referred to as \"carving,\" even though the finished work in these materials may be called \"sculpture (visual work).\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "4feb67c3-6b31-4b8a-a190-33cd3d778006", "value": "http://vocab.getty.edu/aat/300264383"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/57f9fcb6-bfe5-4556-b610-35eb17798e08"> - <dcterms:identifier xml:lang="en">{"id": "92f17bf8-d108-4cee-991d-5b6a4cf03492", "value": "http://vocab.getty.edu/aat/300053104"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "8261852d-1228-4699-bb2d-2f1408650769", "value": "The act or process of making casts or of shaping in a mold; usually refers to pouring liquid material into a mold, as distinguished from pressing a material into a mold, for which prefer \"molding.\""}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/207a310b-14b6-4518-af42-79cc3900e8e6"> + <skos:prefLabel xml:lang="en">{"id": "626ac5e9-a24c-4aac-a75f-5d5cb54f6943", "value": "Belgian (modern)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b08b68bc-4a1d-4934-8e95-c02da8ce2e21", "value": "http://vocab.getty.edu/aat/300111156"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "c7a69dae-06fa-455e-bd27-8318a1e4b437", "value": "Refers to the culture of Belgium, usually the modern nation established in 1830 and defined as the Netherlandish provinces watered by the Meuse and Scheldt rivers."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "8186bea6-ccf7-405a-bd81-4e3f782eb62b", "value": "casting (process)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "2d3ee9ea-4928-47de-9bfd-81f103dcf029", "value": "belge"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/c7927e81-cd9f-4600-96ba-335200563fe5"/> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/268fd523-ce84-4e91-923b-01766b28f628"> + <skos:Concept rdf:about="http://localhost:8000/8b8e6860-60f7-4de8-9368-05e18f72c183"> + <skos:scopeNote xml:lang="en">{"id": "0431a0c5-eb6a-483e-8781-eae10d2848fc", "value": "Refers to the culture of the modern nation of France, or in general to cultures that have occupied the area of the modern nation in western Europe."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "23eb54af-2e6d-4629-8d17-036b06073f87", "value": "fran\u00e7aise"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "538ce756-66d7-4286-9f68-ec8a3115cbb8", "value": "Action or process of creating illumination, which comprises paintings and other adornments applied to books, scrolls, or other document types for the purpose of illustrating or decorating the text. "}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "5f864589-94c8-4e8c-915d-5aa3cad7c47c", "value": "http://vocab.getty.edu/aat/300220539"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "d664dbd4-a608-4051-aa5c-7331e194c819", "value": "illumination (image-making process)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "a8f24aa1-2d08-4239-8dc9-6bad660b6ddc", "value": "http://vocab.getty.edu/aat/300111188"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ae387340-70d7-4067-9c4b-c262fee84d27", "value": "French (culture or style)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/99b83e37-2fab-4eb6-8d9c-ca88970f078f"/> - <skos:narrower rdf:resource="http://localhost:8000/af4c0571-889d-4fb9-a7d5-f14c05d102ca"/> - <skos:narrower rdf:resource="http://localhost:8000/56f1db33-4d80-4871-bcb5-63ed73c67fec"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/31ea3a41-4561-4e0e-af20-00157fe9715b"> - <skos:scopeNote xml:lang="en">{"id": "a17818d1-d0cf-414d-9cbc-8616e96f0e1a", "value": "Refers to the activity of producing prints as works of art; for the specific processes employed, use such terms as \"intaglio printing\" or \"mezzotint.\" For the production of other types of printed material, use \"printing.\""}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "3fdc2df4-69ad-49f4-9cf8-10ed883b4a75", "value": "Druckgrafik"}</skos:prefLabel> - <skos:prefLabel xml:lang="en-us">{"id": "2ac3657e-6d94-4c32-9d5c-61593eeadb37", "value": "printmaking"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "015152db-cdab-466c-bcb9-daa3a113f814", "value": "http://vocab.getty.edu/aat/300131119"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/f7422ea0-8a1d-48c9-a3a8-c45904cfc74c"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "955ffe9e-a17a-445b-b7b3-c101d9515f67", "value": "British (modern)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ea5923d2-eb6a-46ca-8548-2f70d98ff788", "value": "Refers to the culture of the modern nation of the United Kingdom. It also refers to the cultures of historical nations that had Great Britain as the central ruling power. For the culture of the ancient Britons, who were those tribes that spoke the Celtic (Brythonic) language, use \"Ancient British.\""}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "9acc67f9-de5a-4d9a-b1d8-cdcc4ecf8ecc", "value": "britannique"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b373e098-d2ba-4732-9ad9-7f37c99644f2", "value": "http://vocab.getty.edu/aat/300111159"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/145c37a2-08d3-4f38-a4dc-7a141eb83bdc"> + <skos:Concept rdf:about="http://localhost:8000/8855248f-53da-4a46-8f05-41b95b1ebc8c"> + <skos:prefLabel xml:lang="fr">{"id": "a95b9e73-67e2-45f1-b82f-1dd0bcd6beb9", "value": "mexicaine"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c55594bb-6239-4f22-99fe-5929a3155a09", "value": "Culture and nationality of the nation of Mexico or its people."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a4c4b4e5-c6fe-4b1e-8291-d65b81e6e68b", "value": "Mexican"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f992171a-b52e-44dd-a785-ae5cd856f30f", "value": "http://vocab.getty.edu/aat/300107963"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "ea2fffb5-f4db-4ed9-be5e-bda76ffb4725", "value": "photography (process)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "fe0c3476-fff7-4ea1-8474-d3832e3366ae", "value": "The art or process of making photographs, which are pictures produced by means of the chemical action of light on a sensitive film, glass, paper, metal, or by digital means."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "f5df3c84-9310-4532-8166-cd7ddbf64e24", "value": "Fotographie"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "bb56a233-b99e-440e-825f-2afed6d1b495", "value": "http://vocab.getty.edu/aat/300054225"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "d2fda725-1674-4b20-b5f3-5dc35fb028c5", "value": "photographie (process)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ab17510a-b66c-455a-9f59-f4049ce522fa"> - <skos:prefLabel xml:lang="en">{"id": "47498cbd-b589-4f86-b327-423408493149", "value": "framing (processes)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/0ad7ee80-84b7-479d-a7f6-4229839643c3"> + <dcterms:identifier xml:lang="en">{"id": "6c12b4de-75d1-480a-b560-d8b7ca901f44", "value": "http://vocab.getty.edu/aat/300017437"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "62a0575b-3745-4947-93ca-351c77ee75e6", "value": "http://vocab.getty.edu/aat/300240903"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "91a4cb31-9f31-4e7e-82d0-e701148da79d", "value": "Providing a border or case to surround, support, enclose, or call attention to such items as a work of art, mirror, or document, leaving the item itself visible."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "080eaef5-5de3-4715-9cbd-4422a7a4244f", "value": "Native American"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ee1b9b8e-9a59-45ce-9d93-5627838d8009", "value": "Typically reserved to refer narrowly to the cultures of the native peoples of the United States and Canada, excluding the Eskimos and Aleuts. For the indigenous peoples of Canada use the term \"First Nations.\" For the broader concept of the cultures of any native peoples of Central America, South America, North America, or the West Indies who are considered to belong to the Mongoloid division of the human species, use \"Amerindian (culture).\""}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/8adca8e5-52db-434d-905f-477db70b08e9"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/31dbfe57-3132-4bab-8c7c-eeccf0e7c3f5"> + <skos:Concept rdf:about="http://localhost:8000/f3100a7d-393e-43f8-bc20-80e1c09a078b"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "7b97d9bc-d5fb-419a-9b5f-9c2a22f6acd9", "value": "Refers to the culture of the southern Netherlands, roughly corresponding to modern Belgium, Luxembourg, and part of France, particularly during the historical period when Flanders was an independent principality."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "6c3caf6f-2a77-4955-b7f8-558311e3ec5d", "value": "Flemish (culture or style)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "20c17125-b55d-4166-95ff-3c9be7d7b37a", "value": "http://vocab.getty.edu/aat/300111184"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "a15a08e9-0b14-4e53-a49e-4e4913c5146c", "value": "Danish (culture or style)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "2c28d0e1-1c52-4b4d-87a4-1434fa35346a", "value": "http://vocab.getty.edu/aat/300111172"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "d8f7bef1-e3a2-49b1-9d23-a8af2a0bf792", "value": "Refers to the culture of the modern nation of Denmark, or in general to the cultures that have occupied the area of northwestern Europe, north of Germany. It is often used to refer specifically to the cultures of the historic Danes, a Scandinavian branch of the Teutons. It is also sometimes used to refer to the culture of all Scandinavians who invaded England from the 9th century to the 11th century CE."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/6c400200-8763-49ad-9928-8135a918b5d5"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/84554ae9-0437-4ef3-94a3-6718fef184fe"> - <skos:scopeNote xml:lang="en">{"id": "b04ccbd1-1dde-469d-bba8-208f8177c7b4", "value": "The cultures, styles, and periods characteristic of China. To specifically refer to the cultures of ancient Chine, use \"Ancient Chinese.\""}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/545dd2fc-0d38-46de-8475-2a77ead4298e"> + <skos:prefLabel xml:lang="en">{"id": "211fb543-f098-49b5-8c74-e190562a6357", "value": "Bohemian"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "3aa9054a-2ab9-44da-aaf6-17bd07c39283", "value": "chinoise"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "2d61756e-7c1f-439a-9d07-68e60cbf9cce", "value": "Chinese (culture or style)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "15af88b7-fe4c-4610-af6f-074bfd1d777b", "value": "http://vocab.getty.edu/aat/300018322"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "8230d76a-f6b3-43e7-a384-3286613d595c", "value": "boh\u00eame"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b4233d9a-f794-4b24-a595-60eb1fbc7579", "value": "http://vocab.getty.edu/aat/300266148"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "f0839494-4bb1-40e1-b07d-09c7eff8a99c", "value": "Refers to the culture of the historical region, kingdom, and later administrative district of Bohemia. Often used as a synonym of 'Czech.' Bohemia ceased to be an autonomous administrative district in 1949, and in 1993 formed part of the modern Czech Republic. There is no cultural difference implied in the terms 'Czech' and 'Bohemian,' the distinction is more precisely a chronologic or historical one."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e8300d8d-587a-46c1-8e79-44ee57b2c043"> - <skos:scopeNote xml:lang="en">{"id": "f2602e7d-a45e-4acb-8a85-4a05b5d85911", "value": "Refers to the context of or associated specifically with the modern political entity of the United States of America."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/5745583d-2795-4305-995f-a85929f8bd54"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "ade257ed-805b-4918-ab9f-3c003d79fa27", "value": "http://vocab.getty.edu/aat/300107956"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "9d1220bd-e3b2-4a00-adf3-674ea58ac512", "value": "am\u00e9ricaine"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "b5d92ac5-5f3d-4bfd-875c-5c021b76d0cd", "value": "American (North American)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "d7c3fe92-cd95-4228-8157-7bfa2e1ca8ca", "value": "norv\u00e9gienne"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "40317e5d-6b3d-49ba-8b3d-14f3af67f96b", "value": "Refers to the culture of the modern nation of Norway, or in general to the cultures that have occupied the western part of the Scandinavian peninsula in northwestern Europe."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "d96b595d-11d0-48b8-a3dd-effe83d09ad1", "value": "Norwegian (culture)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "ee608400-f9bf-40b1-8563-451d1005bf6e", "value": "http://vocab.getty.edu/aat/300111201"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/465a8351-5ab1-4ffe-a768-57a08f44028e"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/465a8351-5ab1-4ffe-a768-57a08f44028e"> - <dcterms:identifier xml:lang="en">{"id": "a00e8eac-130e-40fd-b68e-833494eca59c", "value": "http://vocab.getty.edu/aat/300111198"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/73014870-366d-4c86-ac23-d01d40801d75"> + <skos:prefLabel xml:lang="fr">{"id": "7c99009f-df14-4f43-9d3b-d0e42b80691a", "value": "russe"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "75732f1e-0b31-4741-8cee-d3f051231f78", "value": "Refers to the culture of the modern nation of Russia, or to the cultures that have occupied the principal lands of historic Russia in eastern Europe and northern and western Asia. It may also be used to refer to the larger group of cultures controlled by the historic Soviet Union."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "2e742a15-3602-44c9-b335-fd9a25d2eeb8", "value": "http://vocab.getty.edu/aat/300111276"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7f4e351c-085d-45ea-8cea-02d269f30cfd", "value": "Russian (culture or style)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "cc5254fa-0744-41d6-b15d-4a0db5d486af", "value": "Italian (culture or style)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "357e7d80-0482-4913-9d30-2433fd00e9e9", "value": "Refers to the culture of the modern nation of Italy, or in general to cultures that have occupied the boot-shaped Italian peninsula in the Mediterranean Sea."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "f9b8488d-ddbc-4095-93a8-2e3b9321ad64", "value": "italienne"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8b8e6860-60f7-4de8-9368-05e18f72c183"> - <skos:scopeNote xml:lang="en">{"id": "0431a0c5-eb6a-483e-8781-eae10d2848fc", "value": "Refers to the culture of the modern nation of France, or in general to cultures that have occupied the area of the modern nation in western Europe."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "a8f24aa1-2d08-4239-8dc9-6bad660b6ddc", "value": "http://vocab.getty.edu/aat/300111188"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "ae387340-70d7-4067-9c4b-c262fee84d27", "value": "French (culture or style)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/24381687-0e47-4418-934e-c828c7ba16eb"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "23eb54af-2e6d-4629-8d17-036b06073f87", "value": "fran\u00e7aise"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6132e331-d06e-48fc-8560-47a819b55182", "value": "http://vocab.getty.edu/aat/300111153"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "b0e55b7e-eb62-4558-b6f4-3cc3ab284ef7", "value": "Refers to the culture of the modern nation of Austria, or of the culture in central Europe in the area comprising modern Austria."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "b4641a63-66a2-4b83-940a-c99faea1dc17", "value": "autrichienne"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "ae4f3a00-eb55-4ff7-a609-429518af6b39", "value": "Austrian"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/acfbbb87-8a30-40c8-8399-3b64d0bda2c2"> - <skos:prefLabel xml:lang="en">{"id": "ce664275-1a89-4e18-ae35-1d7114823be8", "value": "Romano-Egyptian"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/77181be9-230a-490e-8b81-2c242efdcfb9"> + <skos:scopeNote xml:lang="en">{"id": "dc498436-f3ef-45e8-8dc2-61fffcc51556", "value": "Refers to the culture of the modern nation of Switzerland, or in general to cultures that have occupied the Alpine region of northwestern Europe, north of Italy and west of Austria."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "f3b8be20-87a4-4faa-892f-d50e31950767", "value": "Swiss"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "9d866233-7af0-458d-97c1-917918d6dc2b", "value": "Refers to the styles and cultures that developed in Egypt under the influence of Roman rule and culture."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "eb970b3e-89a5-455f-81b6-7dc00d8abe1d", "value": "http://vocab.getty.edu/aat/300379774"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "cbe4114c-4ce1-4ab7-836f-2fbd157c0813", "value": "http://vocab.getty.edu/aat/300111221"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "d714b8a5-af64-4cbc-8ff2-c5ec21439f6a", "value": "suisse"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/64136ae8-03ed-41fa-afe4-8a3408bd34b9"/> - <skos:prefLabel xml:lang="en-us">{"id": "b2e712bf-3773-4b71-9705-d2b9b4174ecb", "value": "Nationalities"}</skos:prefLabel> <skos:narrower> <skos:Concept rdf:about="http://localhost:8000/70ac381a-6eb8-4e33-9acd-12b8930f66c4"> - <dcterms:identifier xml:lang="en">{"id": "a9778168-8ddc-4671-9166-1d98bb46d275", "value": "http://vocab.getty.edu/aat/300111207"}</dcterms:identifier> <skos:scopeNote xml:lang="en">{"id": "2f3c394c-d7a3-4063-9870-29b198c0bd0e", "value": "Refers to the culture of the modern nation of Portugal, or in general to the cultures that have occupied the same area in the western part of the Iberian Peninsula."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:prefLabel xml:lang="en">{"id": "6475288d-7c51-4550-a2b9-ed8d5d72a416", "value": "Portuguese (culture or style)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "a9778168-8ddc-4671-9166-1d98bb46d275", "value": "http://vocab.getty.edu/aat/300111207"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "8ebef50f-477f-444f-b2d2-075e313102f3", "value": "http://localhost:8000/8adca8e5-52db-434d-905f-477db70b08e9"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f3100a7d-393e-43f8-bc20-80e1c09a078b"> - <dcterms:identifier xml:lang="en">{"id": "2c28d0e1-1c52-4b4d-87a4-1434fa35346a", "value": "http://vocab.getty.edu/aat/300111172"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "a15a08e9-0b14-4e53-a49e-4e4913c5146c", "value": "Danish (culture or style)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "d8f7bef1-e3a2-49b1-9d23-a8af2a0bf792", "value": "Refers to the culture of the modern nation of Denmark, or in general to the cultures that have occupied the area of northwestern Europe, north of Germany. It is often used to refer specifically to the cultures of the historic Danes, a Scandinavian branch of the Teutons. It is also sometimes used to refer to the culture of all Scandinavians who invaded England from the 9th century to the 11th century CE."}</skos:scopeNote> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/411df452-e9ba-481a-89dd-3b65fb8f08fd"> - <skos:scopeNote xml:lang="en">{"id": "94ef5088-4463-47ef-96ad-6a1de8e71c97", "value": "Refers to the culture of the modern nation of Sweden, or in general to cultures that have occupied the area of the eastern section of the Scandinavian peninsula in northwestern Europe."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "563a61fb-c4fb-44f3-a20b-51d7b055bdb0", "value": "http://vocab.getty.edu/aat/300111218"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "8d384b34-ab12-4fac-91dd-fc9e5991411a", "value": "Swedish (culture or style)"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/0ad7ee80-84b7-479d-a7f6-4229839643c3"/> - <skos:narrower rdf:resource="http://localhost:8000/d7562d63-8f82-4c88-8b43-f5d81044721d"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/207a310b-14b6-4518-af42-79cc3900e8e6"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "626ac5e9-a24c-4aac-a75f-5d5cb54f6943", "value": "Belgian (modern)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "c7a69dae-06fa-455e-bd27-8318a1e4b437", "value": "Refers to the culture of Belgium, usually the modern nation established in 1830 and defined as the Netherlandish provinces watered by the Meuse and Scheldt rivers."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "b08b68bc-4a1d-4934-8e95-c02da8ce2e21", "value": "http://vocab.getty.edu/aat/300111156"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "2d3ee9ea-4928-47de-9bfd-81f103dcf029", "value": "belge"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "8ebef50f-477f-444f-b2d2-075e313102f3", "value": "http://localhost:8000/8adca8e5-52db-434d-905f-477db70b08e9"}</dcterms:identifier> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/77181be9-230a-490e-8b81-2c242efdcfb9"> - <dcterms:identifier xml:lang="en">{"id": "cbe4114c-4ce1-4ab7-836f-2fbd157c0813", "value": "http://vocab.getty.edu/aat/300111221"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "dc498436-f3ef-45e8-8dc2-61fffcc51556", "value": "Refers to the culture of the modern nation of Switzerland, or in general to cultures that have occupied the Alpine region of northwestern Europe, north of Italy and west of Austria."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "d714b8a5-af64-4cbc-8ff2-c5ec21439f6a", "value": "suisse"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "f3b8be20-87a4-4faa-892f-d50e31950767", "value": "Swiss"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/73014870-366d-4c86-ac23-d01d40801d75"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "2e742a15-3602-44c9-b335-fd9a25d2eeb8", "value": "http://vocab.getty.edu/aat/300111276"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "75732f1e-0b31-4741-8cee-d3f051231f78", "value": "Refers to the culture of the modern nation of Russia, or to the cultures that have occupied the principal lands of historic Russia in eastern Europe and northern and western Asia. It may also be used to refer to the larger group of cultures controlled by the historic Soviet Union."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "7f4e351c-085d-45ea-8cea-02d269f30cfd", "value": "Russian (culture or style)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "7c99009f-df14-4f43-9d3b-d0e42b80691a", "value": "russe"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/3db4ef7a-437d-48fb-8f34-422e226d49cd"> - <skos:scopeNote xml:lang="en">{"id": "1b4f8e95-4e4d-4bbc-b8df-fd1493f03f73", "value": "Refers to the culture of the island of Ireland, which is located west of England on the Irish Sea and is currently divided administratively between the Republic of Ireland and Northern Ireland. It often refers specifically to the Celtic culture of the island of Ireland."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "8a4c07e5-1a80-4231-bba9-ac798af68477", "value": "http://vocab.getty.edu/aat/300111259"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/acfbbb87-8a30-40c8-8399-3b64d0bda2c2"> + <dcterms:identifier xml:lang="en">{"id": "eb970b3e-89a5-455f-81b6-7dc00d8abe1d", "value": "http://vocab.getty.edu/aat/300379774"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ce664275-1a89-4e18-ae35-1d7114823be8", "value": "Romano-Egyptian"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "de2e7a75-481c-4d31-a05a-241d4ce88da1", "value": "Irish"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "9d866233-7af0-458d-97c1-917918d6dc2b", "value": "Refers to the styles and cultures that developed in Egypt under the influence of Roman rule and culture."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> <skos:Concept rdf:about="http://localhost:8000/2be75a62-6065-45e0-8660-dddeeaa2d685"> - <dcterms:identifier xml:lang="en">{"id": "3ac4a257-aaef-4312-8927-eda9c56cac7b", "value": "http://vocab.getty.edu/aat/300111192"}</dcterms:identifier> <skos:prefLabel xml:lang="en">{"id": "b4cead15-2d5c-4523-ae48-21390a16783f", "value": "German (culture or style)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:prefLabel xml:lang="fr">{"id": "030c8587-59e3-4cff-bef5-cef75536055f", "value": "allemande"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "3ac4a257-aaef-4312-8927-eda9c56cac7b", "value": "http://vocab.getty.edu/aat/300111192"}</dcterms:identifier> <skos:scopeNote xml:lang="en">{"id": "7dc67f81-a383-4805-b127-28c5030ce5e1", "value": "Refers to the culture of the modern nation of Germany, or in general to the cultures that have occupied the area of the modern nation in central Europe. More broadly, it can refer to the cultures of the ancient groups of related peoples who inhabited central and northern Europe, and who spoke dialects from which the Germanic or Teutonic languages developed."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/93dc2aa7-a6d9-4a93-93dc-0752b890beb7"/> - <skos:narrower rdf:resource="http://localhost:8000/6c400200-8763-49ad-9928-8135a918b5d5"/> + <skos:prefLabel xml:lang="en-us">{"id": "b2e712bf-3773-4b71-9705-d2b9b4174ecb", "value": "Nationalities"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/7bbbf8e3-76f9-4798-82aa-babfdacb6cd8"> + <skos:prefLabel xml:lang="en">{"id": "68da96ee-12f0-403e-830b-ef4990e18157", "value": "polyester (resin)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "5938a8f7-4260-4603-97ba-1884f3382d4d", "value": "polyester"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "e8f165c2-2a42-4c78-b84d-69b93d69d6be", "value": "Resin formed by the reaction between dibasic acid and dihydroxy alcohol."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "bc432579-e282-4b0c-82c7-911542cee5e4", "value": "http://vocab.getty.edu/aat/300014546"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/62f83f13-058e-4c73-a0b0-4f1816780f52"> + <skos:scopeNote xml:lang="en">{"id": "db2aa345-b051-4c4d-b440-08a648f4fe90", "value": "Identification numbers or alphanumeric codes assigned to, and usually posted on, buildings or plots located on a thoroughfare."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "4066b7b4-2bfe-404f-9254-0c2cfaba5ce5", "value": "http://vocab.getty.edu/aat/300419272"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "32b8a4c6-bc01-4742-97e4-6b265c9ea1ab", "value": "street numbers (address elements)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f4ea3658-51df-4475-aaf6-9bbdf384ed0c"> + <dcterms:identifier xml:lang="en">{"id": "e8352809-5c21-4713-a4c8-43010c08f023", "value": "http://localhost:8000/f4ea3658-51df-4475-aaf6-9bbdf384ed0c"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "e208df66-9e61-498b-8071-3024aa7bed30", "value": "web service"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/95d56de2-7c29-4a03-b0b1-4f8d5ea3aaed"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "ed00466f-385b-4d45-962f-229f57a25e04", "value": "http://localhost:8000/95d56de2-7c29-4a03-b0b1-4f8d5ea3aaed"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "a79e6528-63c1-4699-aeaf-23e1a43e3674", "value": "standardizing"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/ae171d08-208e-48b4-ab41-43c34a2e2559"> + <skos:prefLabel xml:lang="en">{"id": "1a0dbab5-aab1-4d4e-a4f5-9267ab382fa2", "value": "alternate titles"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "2ddcf206-8135-4c3d-81b8-f9b490b05806", "value": "Titles that vary from the primary title. Distinguished from \"alternative titles.\""}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "07a02341-a872-4b8e-a01a-d55169071636", "value": "http://vocab.getty.edu/aat/300417227"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/d6d36746-2a09-495c-817e-18ceca57a25a"> + <skos:prefLabel xml:lang="en">{"id": "ca1ff4ee-2b37-457b-b4d6-043acdec4de2", "value": "street addresses"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "2903f0ec-c296-4c44-a7c9-ea370d2a9a98", "value": "http://vocab.getty.edu/aat/300386983"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "5249ee49-01d3-4f70-9f2e-a31f3e383a50", "value": "Particulars of the place where a person, organization, building, or monument can be found on a street or other thoroughfare; typically consisting of a number, street name, the name of the administrative area (a town or district). May also include a postcode, as the street address may also be the \"mailing address.\""}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f857e104-6587-4b32-8149-8caaac01b8ea"> + <skos:prefLabel xml:lang="en">{"id": "4a563951-f2ab-4188-b053-42dcc294f408", "value": "polyvinyl alcohol"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "fcff6780-5da6-492a-bb51-12d26236fd06", "value": "A thermoplastic resin that is soluble or swells in water and can become insoluble in time through crosslinking; used chiefly for emulsifier, adhesive, and film resistant to solvent and abrasion, and in making molded and extruded products, and polyvinyl acetal."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "240020dd-668e-4256-bdff-6aa3ae611d78", "value": "http://vocab.getty.edu/aat/300014509"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/23e4a3b3-ad56-456f-b9ae-88211f0dc40d"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "4b2af38b-ae61-4700-bdd8-74a00a84ca79", "value": "contact point"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "5774430b-f604-4b9b-a838-864d496a8044", "value": "http://localhost:8000/23e4a3b3-ad56-456f-b9ae-88211f0dc40d"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/1bd9f61f-fbc6-4b0d-9107-0e5b1ed9b277"> + <skos:scopeNote xml:lang="en">{"id": "f901e6e6-c56c-4dff-8447-66415330edc6", "value": "The art or practice of producing creative works with acrylic paint."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "4c760add-9cec-4705-a7b8-0d4759af2a47", "value": "acrylic painting (technique)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "3bc08650-9566-4684-9a6c-a910d694c9b2", "value": "http://vocab.getty.edu/aat/300182574"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/b391c967-2a6b-4972-9289-17130cf96557"> + <skos:prefLabel xml:lang="en">{"id": "f729dd3e-c92c-4ebc-95d1-7e765c5606eb", "value": "weight (heaviness attribute)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "1d393d34-0f71-4b07-b4d4-27b50ec00df3", "value": "http://vocab.getty.edu/aat/300056240"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "cd2bc895-fbeb-4552-a7d1-b998e67f27d3", "value": "Measurement of the relative heaviness of an object or other body; the force with which a body is attracted toward the earth or a celestial body by gravity."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e1e98abd-d69c-4323-a01f-697c28dcecab"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "62fd6575-2a34-4f36-9b64-3026156cc0c8", "value": "acrylic (fiber)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c16271a2-6424-484e-9f03-0f89c683c506", "value": "Synthetic fiber in which the fiber forming substance is composed of at least 85% acrylic resin."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "50693633-ad29-43d8-a0c4-0aa62f1fb323", "value": "http://vocab.getty.edu/aat/300386559"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e77ea94b-c9c7-4e1f-879d-0916d1550d49"> + <dcterms:identifier xml:lang="en">{"id": "a3a23ca0-a7f5-4730-8164-9a7247d2de90", "value": "http://vocab.getty.edu/aat/300053083"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "20bffec8-f252-43b6-b19a-6831396e7ace", "value": "breaking"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "adfc7cff-f1ae-4ffc-9744-ab35f355c480", "value": "Splitting into pieces or smashing into parts or fragments, typically by a blow or stress and with suddenness or violence."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/0ed12180-2d92-46d9-9ad4-72594487fe8f"> + <skos:scopeNote xml:lang="de">{"id": "a7576255-4a6c-4093-b074-9f80bcb6734a", "value": "Visuelles Werk, das durch Zeichnen hergestellt wurde, was das Auftragen von Linien auf eine Oberfl\u00e4che ist, oft Papier, unter Verwendung eines Bleistifts, einer Feder, Kreide oder eines anderen Zeichenmittels, mit dem Schwerpunkt eher auf der Darstellung der Form als der Betonung der Farbe. Der Begriff wird oft allgemein definiert und auch auf computergenerierte Bilder angewendet.\t\t\t\r\n"}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "9c1e2e45-36d9-4d6d-b3e2-aabe7a8a9ff2", "value": "http://vocab.getty.edu/aat/300033973"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "f5cb7a5b-e5f7-424b-a5a1-3f88a8bb48d0", "value": "drawings (visual works)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "d89269eb-c3e4-4327-bf88-3d4d696b5ea7", "value": "Visual works produced by drawing, which is the application of lines on a surface, often paper, by using a pencil, pen, chalk, or some other tracing instrument to focus on the delineation of form rather than the application of color. This term is often defined broadly to refer to computer-generated images as well."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "fc66a7ec-ee8b-469b-bc5a-806ff0e7a72a", "value": "dessins"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/edead18b-2e9e-4790-856f-9bf05dc78b23"> + <skos:narrower rdf:resource="http://localhost:8000/8362bfe2-eb98-4445-a18d-609f1515879f"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c7927e81-cd9f-4600-96ba-335200563fe5"> - <skos:scopeNote xml:lang="en">{"id": "969c5f06-806e-4ec3-b1a3-dba2717199ad", "value": "Refers to the styles and culture that developed in antiquity in the Nile Valley in the area of modern-day Egypt and southwards. For the cultures and styles of the modern nation of Egypt, use \"Egypt (modern).\""}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "df2b2714-3e12-4968-bc0a-89939a640ef4", "value": "\u00e9gyptienne"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "0e8d87d9-0bf9-4e23-ad55-8b269f9bac9a", "value": "Egyptian (ancient)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a6e67e77-d426-4a4c-b24a-d404fef7d9de", "value": "http://vocab.getty.edu/aat/300020251"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/b9721f25-a10c-4b55-85fc-ce03bb85b3a0"> + <skos:prefLabel xml:lang="en">{"id": "507aba8a-a992-48da-90ba-f10757b02a0e", "value": "file size"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "0f9acc8b-5e70-4a73-9960-ba71de0ddf54", "value": "http://localhost:8000/b9721f25-a10c-4b55-85fc-ce03bb85b3a0"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/5745583d-2795-4305-995f-a85929f8bd54"/> + <dcterms:identifier xml:lang="en">{"id": "6ed60da8-538a-48a2-a1d5-48d53a2cf0db", "value": "http://localhost:8000/edead18b-2e9e-4790-856f-9bf05dc78b23"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "cd7b2bb6-e2e6-4f09-b2fd-160bdd72bf5f", "value": "Digital Dimensions"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/0c9c8887-e4fb-480a-9cf0-9506b9650d40"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "25d7367f-659e-4d15-bd10-8829939d5af8", "value": "Names or appellations that are given to a person, animal, or place as a familiar or humorous replacement for, or addition to, the proper name."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "b833f4e2-5144-4cb8-96a9-e1362cd56763", "value": "http://vocab.getty.edu/aat/300404656"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7c4a4468-7d9d-4bcd-aea5-d9ec5228a9bb", "value": "nicknames"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/d5c8c4b4-f569-4963-9f2b-b4869c768b7c"> + <skos:scopeNote xml:lang="en">{"id": "450bf882-0328-4c81-b8cb-bd09d0d7b61e", "value": "Method of transferring loaned property back to the original owner or custodian."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "79ef402f-3441-4e90-a60b-cf2cf98dbf87", "value": "http://vocab.getty.edu/aat/300438467"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "85ccd30a-a086-4aa0-a4a7-233af842bbd8", "value": "return of loan"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/57f9fcb6-bfe5-4556-b610-35eb17798e08"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "8186bea6-ccf7-405a-bd81-4e3f782eb62b", "value": "casting (process)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "8261852d-1228-4699-bb2d-2f1408650769", "value": "The act or process of making casts or of shaping in a mold; usually refers to pouring liquid material into a mold, as distinguished from pressing a material into a mold, for which prefer \"molding.\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "92f17bf8-d108-4cee-991d-5b6a4cf03492", "value": "http://vocab.getty.edu/aat/300053104"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/1c09bed5-8ef4-4d1d-9b29-3764bdb8c14b"> + <dcterms:identifier xml:lang="en">{"id": "87f900f9-4d3e-4965-baea-ef09a08fba80", "value": "http://localhost:8000/1c09bed5-8ef4-4d1d-9b29-3764bdb8c14b"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "ec2c684b-a678-4434-8f81-a2be786ec1b1", "value": "first installment"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e22afbaa-948c-4063-a4f9-8ea7ce5a35c7"> + <skos:scopeNote xml:lang="en">{"id": "bd2d7efa-b804-4ee9-820b-c1c2efcc02a8", "value": "Method of acquiring property by payment of funds."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "7691512a-c9a7-47ee-be67-6f8908a0763a", "value": "purchase (method of acquisition)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "9bdb8156-711f-48f2-8cfc-a2725753966a", "value": "http://vocab.getty.edu/aat/300417642"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/62793e6b-097a-4045-be89-bcb0b4bc5cef"> + <skos:prefLabel xml:lang="de">{"id": "0794b407-31cf-437b-a8dd-f45a90f6b5d2", "value": "Pixel"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b723ac18-c0ae-4ce3-a205-cfc9cc16dc80", "value": "http://vocab.getty.edu/aat/300266190"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "28f0d3b3-d57f-4337-a988-418da825cea3", "value": "pixels"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "e638fcc3-751f-46e6-af16-f5302b077c0a", "value": "The smallest units of an electronic display of digital imagery. In a black and white display this unit registers as either on or off. With a color display, the number of colors that may be displayed are limited by the screen's 'pixel depth,' measured in bits. The resolution of computer displays is also measured in pixels: the higher the number of pixels, the greater the resolution of the image displayed."}</skos:scopeNote> + <skos:scopeNote xml:lang="de">{"id": "e7e5556d-2ca0-4bdc-b501-c728da6c5e47", "value": "Bezieht sich auf das Ma\u00df der kleinsten Einheit einer elektronischen Anzeige von computererzeugten Bildern. Auf einem Schwarz-Wei\u00df-Monitor ist diese Einheit entweder an oder aus. Bei einer Farbanzeige wird die Anzahl der Farben, die angezeigt werden k\u00f6nnen, durch die \"Pixeltiefe\" beschr\u00e4nkt, die in Bit gemessen wird. Die Aufl\u00f6sung des Computerbildschirms wird ebenfalls in Pixeln gemessen: je h\u00f6her die Anzahl der Pixel, desto gr\u00f6\u00dfer ist die Aufl\u00f6sung des gezeigten Bildes."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/9d30b6a3-e948-4a87-97a8-f145984694bb"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/acccfdce-e713-4172-93c5-edc0fabb9e1a"> + <skos:Concept rdf:about="http://localhost:8000/cbc2485e-0e8b-4884-9045-e764078bbbb2"> + <skos:scopeNote xml:lang="en">{"id": "3e0dbfa7-9719-4570-a652-693b2f9cc76a", "value": "The art or practice of producing creative works in oil paint, which is pigment suspended in vegetal drying oils. It dates from at least the Middle Ages in Europe, and was widely adopted for easel painting by the fifteenth century."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "6d052565-8087-47f8-92ec-9bd49c30ed7e", "value": "http://vocab.getty.edu/aat/300178684"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "06403250-0b9c-4208-8a24-3bd6d5f639a3", "value": "oil painting (technique)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "cdba3622-edb2-4f70-bab5-cd3d47a27da8", "value": "http://vocab.getty.edu/aat/300111166"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "5c73a023-45eb-4c0b-a3b7-c7d50ef446e6", "value": "Refers to the culture of the modern nation of the Czech Republic, or in general to cultures that have occupied the area of the modern nation in central Europe. It is also used to refer broadly to the culture of the Bohemian people."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "f11d4aa0-49aa-47b3-b0f5-3d70854c3534", "value": "Czech (culture or style)"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:prefLabel xml:lang="en">{"id": "5f70a114-c4a2-46dd-a72b-a230ee3df74d", "value": "painting techniques"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8855248f-53da-4a46-8f05-41b95b1ebc8c"> + <skos:Concept rdf:about="http://localhost:8000/96c6ba52-ac8b-4c26-a020-a8199a851e42"> + <skos:prefLabel xml:lang="en">{"id": "cc9408b8-efe1-4282-9844-4dbeeaff5252", "value": "acrylic painting (technique)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "7b39c459-a692-4a6f-8af2-ae23dd34a12c", "value": "http://vocab.getty.edu/aat/300182574"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "c55594bb-6239-4f22-99fe-5929a3155a09", "value": "Culture and nationality of the nation of Mexico or its people."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "f992171a-b52e-44dd-a785-ae5cd856f30f", "value": "http://vocab.getty.edu/aat/300107963"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "a4c4b4e5-c6fe-4b1e-8291-d65b81e6e68b", "value": "Mexican"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "a95b9e73-67e2-45f1-b82f-1dd0bcd6beb9", "value": "mexicaine"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "5773647b-5d17-4a7a-bff8-8eee0a88daa8", "value": "The art or practice of producing creative works with acrylic paint."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/94bb858b-3d17-41c7-a145-d70fda1822c5"/> + <dcterms:identifier xml:lang="en">{"id": "8990f09b-dc0a-4dfa-a337-ab92d2994104", "value": "http://localhost:8000/9d30b6a3-e948-4a87-97a8-f145984694bb"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/545dd2fc-0d38-46de-8475-2a77ead4298e"> - <skos:prefLabel xml:lang="fr">{"id": "8230d76a-f6b3-43e7-a384-3286613d595c", "value": "boh\u00eame"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "211fb543-f098-49b5-8c74-e190562a6357", "value": "Bohemian"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/b1a3bc7a-441a-48c8-9cfa-d37627b021a5"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b4233d9a-f794-4b24-a595-60eb1fbc7579", "value": "http://vocab.getty.edu/aat/300266148"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "f0839494-4bb1-40e1-b07d-09c7eff8a99c", "value": "Refers to the culture of the historical region, kingdom, and later administrative district of Bohemia. Often used as a synonym of 'Czech.' Bohemia ceased to be an autonomous administrative district in 1949, and in 1993 formed part of the modern Czech Republic. There is no cultural difference implied in the terms 'Czech' and 'Bohemian,' the distinction is more precisely a chronologic or historical one."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "f52a7da5-c4ca-425a-b9ac-c5dc189dd487", "value": "impasto"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "18d9aec3-0a1e-411b-afa6-e72f9e88d6da", "value": "Pastos (impasto)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "a1496a86-a1df-4b9b-b673-e179835bb778", "value": "http://vocab.getty.edu/aat/300053368"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "ae6dbaa2-756d-4613-8f22-22997a48e126", "value": "Application of paint in thick, opaque masses, usually with a well-loaded brush or a palette knife."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f7422ea0-8a1d-48c9-a3a8-c45904cfc74c"> - <skos:prefLabel xml:lang="en">{"id": "955ffe9e-a17a-445b-b7b3-c101d9515f67", "value": "British (modern)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "9acc67f9-de5a-4d9a-b1d8-cdcc4ecf8ecc", "value": "britannique"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "ea5923d2-eb6a-46ca-8548-2f70d98ff788", "value": "Refers to the culture of the modern nation of the United Kingdom. It also refers to the cultures of historical nations that had Great Britain as the central ruling power. For the culture of the ancient Britons, who were those tribes that spoke the Celtic (Brythonic) language, use \"Ancient British.\""}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/5b5b8456-900a-4a9b-8382-ebb9390d5fc8"> + <skos:scopeNote xml:lang="en">{"id": "df882c95-932d-4b0a-9a24-26a1f29b4132", "value": "Painting technique whereby tones and hues are obtained by applying regular small dots or touches of unmixed pigment on the canvas so that they combine optically. The French critic F\u00e9lix F\u00e9n\u00e9on coined the term \"peinture au point\" in 1886 after seeing Seurat's \"La Grande Jatte.\" Paul Signac offered the alternative term of \"divisionism\" in his book \"D'Eug\u00e8ne Delacroix au N\u00e9o-Impressionnisme (1899), although in modern usage \"pointillism\" is reserved for the technique involving dots applied in a controlled manner, while \"divisionism\" refers to use of marks of unmixed color in Italian painters\u2019 works."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "223c8fa7-88a0-48a2-84b2-d786baf4542e", "value": "pointillism (painting technique)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "4334aa6e-bb6f-44b6-8d80-3c96dc71f8f8", "value": "pointillisme"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0fce0d73-bdb9-4769-b8c0-7010d3659cdd", "value": "http://vocab.getty.edu/aat/300067450"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b373e098-d2ba-4732-9ad9-7f37c99644f2", "value": "http://vocab.getty.edu/aat/300111159"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/5705baac-66ca-4fc3-adce-acc997d16b1d"/> + <skos:narrower rdf:resource="http://localhost:8000/07edfe46-dc43-40ab-aeec-3103e2673bab"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/581d3c26-5265-4979-aa1a-8a0409583c48"> + <skos:prefLabel xml:lang="en">{"id": "dbc4590c-88dc-428b-9997-5e4e2b03e165", "value": "corporations"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e9b742f2-6b58-4354-8df7-dacb40493958", "value": "http://vocab.getty.edu/aat/300025969"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "5cd641f5-b7d5-46db-8180-5d22ed32fe50", "value": "Groups of persons, commonly formed as business enterprises, considered in law as legal persons having an existence and rights and duties distinct from those of the individuals who form them. For unincorporated groups of persons contractually associated as joint principals in business, use \"partnerships.\""}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/42f66db6-b76f-416a-8fd8-5dc3f5d3c171"> + <skos:prefLabel xml:lang="en">{"id": "eef67223-b9e5-4f90-a128-de53ad426c16", "value": "Move Event Type"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fdaa29fa-ac94-4c3a-802f-6a6b37f596fa"> - <dcterms:identifier xml:lang="en">{"id": "f1a13139-3a9d-44fa-b1fb-87a6ed87f686", "value": "http://vocab.getty.edu/aat/300111215"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "97f9797c-bf5a-45eb-b710-d56cc748ddc7", "value": "Spanish (culture or style)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "e796a62e-7f89-4cab-b3e1-84c967d8542c", "value": "espagnole"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/32c7ac9c-9ab0-445b-b0c7-e08f65850356"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "e6c7ac4b-27ca-4179-b37e-88e5547bf226", "value": "Refers to the culture of the modern nation of Spain, or in general to the cultures that developed on the Iberian Peninsula in southwestern Europe."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a0a8d0f0-94fc-4476-bc3a-658ca771d6fd", "value": "mailing"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c1a9f17e-73aa-4983-ac64-403756b8fff1", "value": "Sending through a postal service."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "b471e6fb-b7bb-42a3-9952-611a06729794", "value": "http://vocab.getty.edu/aat/300077526"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "b0587eec-002d-4389-b802-d21ce18a9435", "value": "http://localhost:8000/42f66db6-b76f-416a-8fd8-5dc3f5d3c171"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/4b2ed1f9-3b31-47c1-975e-1e114f0fe099"/> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/87da0b3d-f6b7-4e40-aea3-15a0d7dc7878"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/24381687-0e47-4418-934e-c828c7ba16eb"> - <skos:prefLabel xml:lang="en">{"id": "ae4f3a00-eb55-4ff7-a609-429518af6b39", "value": "Austrian"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/f899df4e-86eb-4579-aca8-d0cbadc31994"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "b4641a63-66a2-4b83-940a-c99faea1dc17", "value": "autrichienne"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "b0e55b7e-eb62-4558-b6f4-3cc3ab284ef7", "value": "Refers to the culture of the modern nation of Austria, or of the culture in central Europe in the area comprising modern Austria."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "6132e331-d06e-48fc-8560-47a819b55182", "value": "http://vocab.getty.edu/aat/300111153"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "fe2d63d9-af88-4014-82e9-8c32d01ba30d", "value": "http://localhost:8000/f899df4e-86eb-4579-aca8-d0cbadc31994"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "607f4467-9956-46fe-8355-fc3f4bee3791", "value": "Joining as Leader"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8ef8ade6-fcdd-4da6-a9f7-1fb9e9df86d0"> - <skos:scopeNote xml:lang="en">{"id": "fe601627-4f5e-4836-b21b-1bdb6416ab36", "value": "Refers broadly to the culture and styles associated with the area of southeast Europe comprising the southern Balkan peninsula, Peloponnese, and various offshore islands, as well as other territories that were colonized or held by Greece during various periods of history."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/5bf90b5e-37eb-45af-b326-e4609208fcb0"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "35977d19-7383-4c9c-b7d6-3c044e492404", "value": "Greek (modern)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "f2ace28c-aaf8-4ca0-bb15-803c40daaf3e", "value": "http://vocab.getty.edu/aat/300264816"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "5c034bb5-0316-41fb-828b-54e9fca80055", "value": "Joining as Participant"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "34dc414a-dbc1-4068-9dd7-c437eb75763d", "value": "http://localhost:8000/5bf90b5e-37eb-45af-b326-e4609208fcb0"}</dcterms:identifier> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c19aa471-036d-4828-8ae8-1a9c8c7792c6"> - <skos:narrower rdf:resource="http://localhost:8000/9038c161-43ac-4567-abae-9bb546e7898a"/> - <skos:prefLabel xml:lang="en">{"id": "6d2a3383-9057-4b32-aade-ded8b0d0f9b9", "value": "Part Removal"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en-us">{"id": "cfcee227-9929-49a0-a773-55df9c51d9ea", "value": "Group Joining Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6e76d272-7f20-469b-a294-193a91612874"> - <dcterms:identifier xml:lang="en">{"id": "540a7f45-664f-41ee-82d3-d2c4650e10c8", "value": "http://vocab.getty.edu/aat/300192586"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "954e8d52-43a2-453a-aec9-fb5495da521f", "value": "The making of holes through an object; may be done purposefully, either when the object is made or later, or may be the result of natural processes."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/47e940a3-b483-41c9-9430-34c990014764"> + <skos:prefLabel xml:lang="en-us">{"id": "bb1ad401-9ade-4e3a-abef-17ad92934f05", "value": "Joining as Contact Point"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "db2f534d-d99b-4a03-8d66-c8744c794da5", "value": "perforating"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "07c0586d-6359-4f51-97e4-3819e4ef6c99", "value": "http://localhost:8000/47e940a3-b483-41c9-9430-34c990014764"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "51ff619a-9bb1-43a5-a3a2-0b2b1b52ddf4", "value": "http://localhost:8000/87da0b3d-f6b7-4e40-aea3-15a0d7dc7878"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/763b6d6d-d745-4dc8-9605-122d7c15a2d8"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "3b114c8e-a686-4b19-abcf-90b6a30df4bb", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/titles/foreign-language-title"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "8f9ca198-cd32-4c3e-9ab8-afa0625a6a57", "value": "foreign language title"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/fb9397d4-06fa-4f60-8493-b36198f6bceb"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7d8aa2f8-f8a0-4d0d-a2a8-2fa8d64ae16b"> + <skos:Concept rdf:about="http://localhost:8000/d8de88fc-19c6-4129-bcc2-7bb3ff8e841a"> + <skos:prefLabel xml:lang="en">{"id": "11762e7f-9797-44bd-b64f-8b2b1d6cabe7", "value": "gospels"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "ed49b40e-7104-45c2-8832-1988cd3a9510", "value": "snipping"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "acde7941-0f60-4ca7-add9-1def1c125db1", "value": "The action of cutting, clipping, or dividing something with scissors or a similar tool."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "18408e4e-52a1-4d83-a5e9-0230e40a625e", "value": "http://vocab.getty.edu/aat/300053073"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "7475b719-d1b3-4a7b-9c14-d4ef1b249d0a", "value": "Literary genre based on the Biblical New Testament, comprising the stories and body of religious doctrine described as having been taught by Jesus and apostles."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "ea271143-e319-4b6f-b6b4-0d7d33bf0b9e", "value": "http://vocab.getty.edu/aat/300404696"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/87d354fd-8284-444e-a5ee-0718d4c84f56"> - <skos:prefLabel xml:lang="en">{"id": "de038d5e-f803-4c03-bc56-a7fb23510c0a", "value": "removing"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/b727e4b6-3169-457d-ab05-5991bacb03cd"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "9782cbff-dda1-4910-bc9c-da93a80b3fe6", "value": "http://vocab.getty.edu/aat/300224146"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "eae01c4d-e708-4536-bce2-f5854359d6b2", "value": "Taking away or getting rid of something."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "831e84cf-4f9a-40e4-a2ce-8b431faacca5", "value": "Belief systems that encompass various personal and institutional relationships between human beings and what they regard as holy, sacred, or divine, usually but not always a deity, or a spiritual or occult force. Participation in a religion is typically manifested in obedience, reverence, and worship, often including group activities and alliance with a leader. Elements of a religion or similar belief system include doctrine, ritual, defined parameters of morality, and a code of living, often seen as a means of achieving spiritual or material improvement."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "7d6f39b3-d3d2-4958-afb0-599b8d4152d8", "value": "religions (belief systems, cultures)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "042fd781-cc81-46c7-afca-d08bd96710f2", "value": "http://vocab.getty.edu/aat/300073708"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "30995b7a-580d-4510-9b4a-a1be4a21f80f", "value": "http://localhost:8000/fb9397d4-06fa-4f60-8493-b36198f6bceb"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "515f3896-e81b-4af3-b558-91ffbac7f874", "value": "Visual Work Subject"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d5b6cfce-f3b4-4ff1-acf1-3b9353a87953"> - <skos:prefLabel xml:lang="en">{"id": "a74bc315-309d-4151-a3e1-a620950d8d33", "value": "disassembling"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/ce7ad2f6-e99e-43b8-be84-98e4272c803f"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d9ade436-9f24-49a7-a360-89a6b591a59a", "value": "The process of taking apart, whether by damage or intentionally; examples are when folios of manuscripts are cut out of the volume for redistribution separately."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "14c10d31-a880-4ca6-896d-d36121baf74d", "value": "http://vocab.getty.edu/aat/300404064"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "f4aa87dd-c70c-44cd-90c6-cb04c9dcdfff", "value": "http://vocab.getty.edu/aat/300073711"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "bc29711e-4fce-46c6-a769-afafe8d6060f", "value": "Refers to the world religion and culture that developed in the first century CE, driven by the teachings of Jesus Christ of Nazareth. Its roots are in the Judaic tradition and the Old Testament. The tenets include a belief in the death and redemptive resurrection of Jesus. The religion incorporates a tradition of faith, ritual, and a form of church authority or leadership."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "aef3db33-75d0-4353-b489-e2f7d137d196", "value": "Christianity"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/1bcdf300-a595-43e5-b17e-fdb8abc37a3f"/> - <dcterms:identifier xml:lang="en">{"id": "6b228de6-ace8-4212-b382-0485bc4f061d", "value": "http://localhost:8000/c19aa471-036d-4828-8ae8-1a9c8c7792c6"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/3edc9a03-36c6-4b6a-8c19-3a626f5a0b7d"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/5b2324ed-1afc-4e69-8edc-4547fe2166bc"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "6474b02c-81bc-470a-9bb7-6cd34247301a", "value": "Regarding personal names, assumed names used by authors rather than their real names."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "926b35fd-698b-4f77-8bf7-d4c0a4e8e4f0", "value": "pen names"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "7873ebe3-6ef0-4098-b057-0535da992c2a", "value": "http://vocab.getty.edu/aat/300404678"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/51eb7a71-66e1-45ba-97c7-f92edcf4cdec"> + <skos:prefLabel xml:lang="en">{"id": "bb1842b8-8d97-4a61-933a-b0a82d7c5350", "value": "institutions (organizations)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a78b9f25-0401-4eca-b478-59862f512060", "value": "Formally structured organizations, establishments, or associations created for the promotion of a specific benevolent public or private objective, usually a religious, charitable, or educational objective, such as a church, school, college, hospital, asylum, reformatory, mission, or the like."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "4345eb1d-611a-44a9-8e34-1cd7556f17a3", "value": "http://vocab.getty.edu/aat/300026004"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f8004550-b659-4647-bc2c-d969b68c5714"> + <dcterms:identifier xml:lang="en">{"id": "b48670d6-8f82-437f-bcbe-8ac85b921077", "value": "http://vocab.getty.edu/aat/300053058"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "102dec97-2f4b-4a0a-aca6-b660a8f6282d", "value": "staining (coloring)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "7a7f5bdd-d50e-4798-9020-33a04d4b995f", "value": "Process of applying a coloring matter that tinges and penetrates or combines with the substance."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/9761c5b7-5d6e-4dd0-9845-2a53d1456091"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/49add32c-3045-47aa-b1c7-9cf3307a2754"> + <skos:Concept rdf:about="http://localhost:8000/857c6735-bc48-421b-a042-6c96b3f72b75"> + <skos:prefLabel xml:lang="fr">{"id": "c2a0599e-4e25-46e0-ad8e-947ea8afcdff", "value": "lettre de cr\u00e9dit"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "5afef2ce-a7a2-4af7-a007-b9d5f1bcc7a3", "value": "letters of credit"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "244c67ff-91bf-44d6-b744-bfa43415a1a3", "value": "Use both for letters addressed by a bank to a correspondent certifying that a person named therein is entitled to draw upon his credit up to a certain sum and for letters addressed by a banker to a person to whom credit is given, authorizing that person to draw on the issuing bank."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b00ff40b-7014-4c1e-a28e-1d56ba9e3e70", "value": "http://vocab.getty.edu/aat/300061163"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "36588eea-ab65-45d8-867b-6fbb79d357dc", "value": "dismantling"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "e2d52727-036f-4fb7-a1a7-0cb0a49fada0", "value": "Taking apart or removing significant pieces, especially to reduce or disable the function."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "133c9ee6-60f1-44aa-9819-f0d721b61716", "value": "http://vocab.getty.edu/aat/300027550"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/5e4b95e8-70ff-41d4-8926-31182e4a5e56"/> + <skos:prefLabel xml:lang="en">{"id": "f15b7638-c21a-489c-9cac-1cf64c8522a3", "value": "Payment Event Type"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a17a13c9-58f0-4e66-8a73-bfae8f6247fa"> - <skos:prefLabel xml:lang="en">{"id": "ecb30ff6-c3d2-4c1b-abed-5f9030e47963", "value": "cleavage"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/e06c72b1-9462-47bf-a3f1-f313e22a3b31"> + <dcterms:identifier xml:lang="en">{"id": "09bb9eb8-8841-4b5e-b808-51f61d4d9cb6", "value": "http://localhost:8000/e06c72b1-9462-47bf-a3f1-f313e22a3b31"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "017b658b-e27f-4663-9368-1d04ebcfef4d", "value": "http://vocab.getty.edu/aat/300220007"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "cbd6be06-787b-4b6c-8b3f-e579b6a6d2f3", "value": "Separation between layers, as between a paint or varnish film and other film layers, or between a film layer and its support, or separation along planes of weakness in crystalline materials."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "78994040-d30d-4585-b31d-3b4144ec4298", "value": "credit"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e7c365a4-aa13-41ea-870a-64780dfb3d39"> - <dcterms:identifier xml:lang="en">{"id": "c8d9c9cb-019b-4819-85d9-03b64f7a0f7e", "value": "http://vocab.getty.edu/aat/300379769"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "698796c9-785c-4e81-be0d-773945d073dd", "value": "Signifies the act of drawing forth a material from that which holds it."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/7baa8baa-38a4-4f83-a96a-1a18bd751c36"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "0345eea6-f11e-4bc4-9002-291796cdbc6d", "value": "extracting (subtractive process)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "15b943a3-b838-4baa-89d7-f8d501680cf8", "value": "http://localhost:8000/7baa8baa-38a4-4f83-a96a-1a18bd751c36"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "507cd856-809b-446b-9686-b593b810e971", "value": "total payment"}</skos:prefLabel> </skos:Concept> </skos:narrower> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/deebb113-05f9-4a53-b0ad-9d9a8dac9317"> + <skos:narrower rdf:resource="http://localhost:8000/1c09bed5-8ef4-4d1d-9b29-3764bdb8c14b"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1635bf19-34b2-4f52-b2dd-f67116830f05"> - <skos:prefLabel xml:lang="en">{"id": "48dc926a-9637-4465-a26f-ff6f1bf3efb8", "value": "pseudonyms"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/479e887b-5700-4629-adfa-a71d652756fa"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "ef9a66c4-e827-4e8a-8714-403b66a0c72c", "value": "http://vocab.getty.edu/aat/300404657"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "e0ee3d78-f474-460b-8d50-ba4672ac24ef", "value": "General term for false or ficticious names or appellations used instead of personal names, place names, and other names. When adopted for personal names, pseudonyms may be used to conceal the real identity of the person, for example, as used by authors and artists."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "e6e4f496-644b-42f1-9e80-0d22eeaf0b6c", "value": "http://localhost:8000/479e887b-5700-4629-adfa-a71d652756fa"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "b147aaf2-9a93-4908-a9fc-fa82ac87dd09", "value": "partial payment"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0c9c8887-e4fb-480a-9cf0-9506b9650d40"> - <skos:scopeNote xml:lang="en">{"id": "25d7367f-659e-4d15-bd10-8829939d5af8", "value": "Names or appellations that are given to a person, animal, or place as a familiar or humorous replacement for, or addition to, the proper name."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "b833f4e2-5144-4cb8-96a9-e1362cd56763", "value": "http://vocab.getty.edu/aat/300404656"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/b5fdfbea-55d1-4777-a376-85c87397cacc"> + <skos:prefLabel xml:lang="en">{"id": "cae0a99a-7266-4aeb-bda2-ce7371479ff9", "value": "money orders"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "85f3973b-f3bc-4ad5-b1b1-1e436bc4733c", "value": "mandat de banque"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a1b6f65e-6626-4412-b5ea-6577e6ff632d", "value": "Credit instruments ordering the payment of a specified amount of money, usually issued and payable at a bank or post office."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "6b9506ee-e1b0-4448-84a7-6a31008c4b15", "value": "http://vocab.getty.edu/aat/300193975"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "7c4a4468-7d9d-4bcd-aea5-d9ec5228a9bb", "value": "nicknames"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/fa579432-0d81-4d5e-a721-01015f8fbfe5"/> - <skos:narrower rdf:resource="http://localhost:8000/d435267f-7de2-4321-9b02-f495386866b3"/> - <skos:narrower rdf:resource="http://localhost:8000/ac05986c-ffe8-4910-a73e-6efe0d451eda"/> - <skos:prefLabel xml:lang="en-us">{"id": "19c15278-aba2-4017-9b1e-8b45f0bc38be", "value": "Personal Name Types"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a7f57328-776a-4a72-a3e2-73d5fcf54155", "value": "http://localhost:8000/deebb113-05f9-4a53-b0ad-9d9a8dac9317"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/02040456-2800-4934-9a95-70b2af7e8966"> - <skos:scopeNote xml:lang="en">{"id": "b75068d8-5887-48c2-a36c-c9e161a2a8ef", "value": "Names for people, places, or things that are legal or otherwise formally sanctioned."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "7ed197f4-d22f-4aae-96fd-b0441f239e9f", "value": "http://vocab.getty.edu/aat/300404686"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "57ba00a3-f33e-481c-b2f0-770ce5f4ccf7", "value": "official names"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/75834779-936c-4b61-ab2a-c1ba7ae48372"> + <skos:prefLabel xml:lang="en">{"id": "0750e193-41b7-4bd0-9faf-1dfc2d104533", "value": "cash"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "ce972b70-66d1-45d1-ae13-c612d1f6e11a", "value": "http://localhost:8000/75834779-936c-4b61-ab2a-c1ba7ae48372"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "de640b43-2a21-4ce8-82ea-bedbc5eba697", "value": "http://localhost:8000/9761c5b7-5d6e-4dd0-9845-2a53d1456091"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b9c2b0a7-88b8-40d5-b605-0f74e4e0da61"> - <skos:scopeNote xml:lang="en">{"id": "21dca980-d00c-424d-ad17-7c32d088c266", "value": "Names for people, places, or things that are commonly used, but not necessarily the official version of the name."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "4e6418ff-0b0f-4092-8265-3253ba87a25e", "value": "common names"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "eaf3d4fb-e634-47cb-8870-2f4db1081850", "value": "http://vocab.getty.edu/aat/300404687"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/cf5052ee-e2bb-4112-a838-28aa3d048666"> + <skos:prefLabel xml:lang="fr">{"id": "0ae53a96-8b7a-43e3-94de-648be6d7e738", "value": "lettre de change"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "901d76c6-7a22-47bb-9bd8-50fc92e630ac", "value": "bills of exchange"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "5ff3ae7d-bce4-4a4e-aa9b-00f6d9778cb7", "value": "Historically a form of paper currency used in Europe from the late Medieval to the early Modern period often as credit among merchants. Now refers to written orders to pay a specific sum of money on demand or at a specified future time; used with reference to foreign transactions; for similar orders to pay usually restricted to domestic transactions, use \"drafts (negotiable instruments).\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "7ceb2c96-736c-4522-afbd-96996d0133c3", "value": "http://vocab.getty.edu/aat/300193972"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5b2324ed-1afc-4e69-8edc-4547fe2166bc"> - <skos:scopeNote xml:lang="en">{"id": "6474b02c-81bc-470a-9bb7-6cd34247301a", "value": "Regarding personal names, assumed names used by authors rather than their real names."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/3f407090-d21c-4e43-bea1-efd6920fc981"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "7873ebe3-6ef0-4098-b057-0535da992c2a", "value": "http://vocab.getty.edu/aat/300404678"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "926b35fd-698b-4f77-8bf7-d4c0a4e8e4f0", "value": "pen names"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "b1624e29-5891-47dc-bb4f-5bf88685afce", "value": "certified checks"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0b2caa91-2d79-44c5-b742-72ad7c763793", "value": "http://vocab.getty.edu/aat/300193974"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "c494c9be-9ccb-48b9-9e95-557e2e7f6d80", "value": "ch\u00e8que certifi\u00e9"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "92b88557-a5f2-476e-8585-eacca829c94e", "value": "Checks that certify that the signature of the drawer is genuine and that the depositor has sufficient funds on deposit for payment."}</skos:scopeNote> </skos:Concept> </skos:narrower> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/4157e908-660c-45cc-a20f-06a3841b1543"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c54f3642-9f8d-475d-8c6d-b82fc4b5b853"> - <skos:prefLabel xml:lang="en">{"id": "828a2e14-8976-4d99-96d0-aeb1bd4223cc", "value": "full names (personal names)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "bebe6c1a-3ecd-4483-8f4b-af63eb6d247d", "value": "http://vocab.getty.edu/aat/300404688"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "8fd5db9c-b681-4530-9463-f99bf602bd9c", "value": "Names for people, places, or things that are the fullest version of the name. For personal names, includes the first name, one or more middle names, one or more family names and last names, suffixes, and honorfics."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/c6ad85c9-12a5-40f5-8773-9b513ded7585"> + <skos:prefLabel xml:lang="en">{"id": "1b23b170-114c-4602-b01a-4d0f8aba05ec", "value": "2D Data Measurement"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/9ef07691-f751-415a-805e-6fc52fbdb5a1"/> + <skos:narrower rdf:resource="http://localhost:8000/977c662f-c1d9-4a35-b556-696517e312ec"/> + <skos:narrower rdf:resource="http://localhost:8000/b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982"/> + <skos:narrower rdf:resource="http://localhost:8000/2e3e64b3-c802-4bbc-b284-5dbcd50ee4da"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> + <skos:prefLabel xml:lang="en">{"id": "9e9a2bd9-10df-4cb3-88c1-dee4b74e6459", "value": "Observation Type"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/9f336e9a-17bd-45bc-a4a2-f816a551d196"/> + <dcterms:identifier xml:lang="en">{"id": "600761d9-f4d1-400b-b875-d851b5d70fd0", "value": "http://localhost:8000/4157e908-660c-45cc-a20f-06a3841b1543"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/8362bfe2-eb98-4445-a18d-609f1515879f"> - <skos:scopeNote xml:lang="en">{"id": "2702fe77-11bf-49e8-9468-941a2ea2ef72", "value": "The degree to which an image is distinct in its details as a function of the spacing of individual optical elements, such as grains of light-sensitive chemicals in a photograph or pixels in an electronic image; an important factor affecting image quality."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "e8f4340c-af74-4ae8-9edc-131de4121617", "value": "http://vocab.getty.edu/aat/300222980"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/9ef07691-f751-415a-805e-6fc52fbdb5a1"> + <skos:altLabel xml:lang="en">{"id": "6fea7584-b592-11ee-8d43-b3e9eed55f79", "value": "Fourier-transform infrared (FTIR) spectroscopy Measurement"}</skos:altLabel> + <skos:prefLabel xml:lang="en">{"id": "851414d5-4a7f-4e70-a4fb-6d37e6657798", "value": "FTIR Measurement"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "0d407887-5784-4c83-9012-34ad72fd0121", "value": "resolution (optical concept)"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/19b0fa01-3d14-43c5-afde-0662376fb3f2"> - <skos:scopeNote xml:lang="en">{"id": "bedd4cf5-01e9-4780-884a-aff7008da268", "value": "Referring to the sex that in reproduction normally produces sperm cells or male gametes."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "865e009c-ad1a-4f15-9d57-fb43d4730834", "value": "male"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "aa534651-1ffa-487d-88ea-d0bc2a681762", "value": "http://vocab.getty.edu/aat/300189559"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/693bf783-7cd9-4ce3-a7d2-fb59b80c1f2e"> + <skos:prefLabel xml:lang="en">{"id": "13dbca47-5293-4e31-a102-b3d93ba58fd4", "value": "art conservation"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "cb59dc0a-31d9-497b-bbc3-e624d7dcfcf0", "value": "http://localhost:8000/693bf783-7cd9-4ce3-a7d2-fb59b80c1f2e"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/804e24c6-f30b-4675-b4d4-49b0897b589c"> - <skos:scopeNote xml:lang="en">{"id": "f754119c-a014-4a1f-93d7-c8e9afa70a35", "value": "Refers to the practice of making photographs with a pinhole camera. Light-sensitive film or paper is exposed through a tiny, lensless aperture: the resulting images have very great depth of field, but lack critical sharpness."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "72eeb195-6865-4481-bdf2-c4d909fb701f", "value": "pinhole photography"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/a16a24c8-7b71-43a3-8473-39638039eaf4"> + <skos:prefLabel xml:lang="en-us">{"id": "ecdf7e44-d487-41ec-bcb9-7d20e9ee6e4e", "value": "Identifier Part Types"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "212a65fb-f2d3-43d0-b32b-c0715fc83917", "value": "http://localhost:8001/a16a24c8-7b71-43a3-8473-39638039eaf4"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "9eca253b-4167-4d7d-aa79-037bc8ef64d2", "value": "http://vocab.getty.edu/aat/300265124"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4617ed4f-e1ff-4a2d-90e1-c22cac2a1436"> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/77e3d54b-b98d-43da-9049-1725645308d6"> - <dcterms:identifier xml:lang="en">{"id": "92280997-010f-440f-815b-1fdc5c4a7a46", "value": "http://vocab.getty.edu/aat/300054277"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "4431d911-f094-4231-92f5-7ec3ccb67151", "value": "curating"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "5313e5d5-201e-4051-946d-ba70a1064f24", "value": "Superintending or managing the collections, exhibitions, research activities, and personnel of a museum, art gallery, zoo, or other place of exhibit; also, the superintending or managing of a single collection or subject of study in such an institution."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - </skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/082b3c01-0c6a-43e6-bac5-7ce2bdbcdeec"> + <dcterms:identifier xml:lang="en">{"id": "4d6c6459-f3bd-4293-9c8d-845beb729e0e", "value": "http://vocab.getty.edu/aat/300379522"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "5d7efdb7-ef7d-438e-b11c-cbbfe7f8d621", "value": "In science, business, policy, and other fields, a careful item-by-item comparison of two or more comparable characteristics, alternatives, processes, products, qualifications, sets of data, or other features."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "3fe36bac-fdd5-4fde-969a-c17f06e2cfbd", "value": "comparative analysis"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f6ae1e05-4657-464d-858e-f1426de3e9d3"> + <dcterms:identifier xml:lang="en">{"id": "d2702fe4-680a-4d64-8381-bc23017f33a9", "value": "http://vocab.getty.edu/aat/300443859"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "148f987c-30f1-4a51-8e17-7a8119d93442", "value": "Groups who work to promote or accomplish stated goals through projects or other activities."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "31016139-7fc4-4bca-a67c-bb1e995451d7", "value": "initiatives (groups)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "08dbf153-013c-41de-9e0a-014dcc7b71a1", "value": "Indication of the placement of a work of art or architecture within a classification scheme that groups other, similar works together on the basis of similar characteristics"}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a1e69344-d821-4cf6-8763-731c955e0489", "value": "classification (category)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "097bb090-c56c-46b1-af32-8cd75291d28e", "value": "http://vocab.getty.edu/aat/300435444"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/1fc2970f-60b4-46fe-82e8-a874a978e6a3"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fa5108b1-0643-4605-ad0d-e7a3c22e7fd6"> - <skos:prefLabel xml:lang="en-us">{"id": "2f129e27-c895-45c5-8666-3e74774d53f6", "value": "crowdsourcing"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "bc6c9f9c-832b-4f11-8b4b-b68e2996b096", "value": "http://localhost:8000/fa5108b1-0643-4605-ad0d-e7a3c22e7fd6"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/16f5f34f-a67f-444a-afd7-117831a1a512"> + <skos:scopeNote xml:lang="en">{"id": "63c1b619-efa5-4e8a-88b8-6badc3f8ec13", "value": "Filing or collecting (as records or documents) in an archive or other repository."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "e8fc4d05-a346-4c74-9f5d-a8a9401d5643", "value": "http://vocab.getty.edu/aat/300054627"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "45abd998-3aea-4a69-9501-5e082760cf31", "value": "archiving"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d6a36ca5-c661-4dfd-9903-6a502eb52bbb"> - <skos:prefLabel xml:lang="en-us">{"id": "a506d47d-e403-4bf8-9757-68155df43107", "value": "treatment study"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "974d010d-5c39-414d-bba2-938da5f78f69", "value": "http://localhost:8000/d6a36ca5-c661-4dfd-9903-6a502eb52bbb"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/70b50991-3662-4373-a7d5-f378139bfee8"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "3f97891a-f35a-4c6a-bfff-9c18fd718017", "value": "http://vocab.getty.edu/aat/300054626"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "5e914c3e-c408-4611-9019-f625e3d13ac0", "value": "Recording the entry of items into a collection in the order of acquisition."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "97ab0e9b-c518-4173-bcee-2d845d57d7e0", "value": "accessioning (collections management)"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1bef9076-8fcc-421f-9ac9-7efd152570ef"> + <skos:Concept rdf:about="http://localhost:8000/546e7e19-54c6-44ed-8a81-3da08e275009"> + <skos:scopeNote xml:lang="en">{"id": "cb554d8b-f726-4990-8449-aa53e1e68ca8", "value": "The function, act, and process of making a new, amended, improved, or up-to-date version of something, such as data, a document, building plan, etc."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a51e973a-6502-459f-b60b-fdbdf6a77572", "value": "revising"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "04f04710-7d0e-4221-b0fc-fdc6a7904081", "value": "fundamental methods research"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "986ce9b9-c552-447b-9aaf-00b3eb84fa2f", "value": "http://localhost:8000/1bef9076-8fcc-421f-9ac9-7efd152570ef"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "d617c4f6-1f96-41c5-831a-6b40175b799c", "value": "http://vocab.getty.edu/aat/300191071"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/478c39e7-9d07-4f5d-847d-ac887c2c4469"> - <dcterms:identifier xml:lang="en">{"id": "1995d811-8920-4bf7-9bf3-e844ea73a2e8", "value": "http://vocab.getty.edu/aat/300379518"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "f5be46ff-b05a-4010-b898-81aef0d1868a", "value": "The application of testing methods to materials or objects in order to analyze their composition and manufacture. In a conservation science context, this may refer to movable art works and artifactual objects in a conservation lab. For a broader range of testing methods, prefer \"scientific analysis.\" "}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "635706ab-5a36-4564-b27e-bb0bec046205", "value": "technical analysis"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/4e7f0c35-fbb8-477f-8a19-00655d840e45"> + <skos:scopeNote xml:lang="en">{"id": "7e9aa1cd-90bd-4451-af35-de8c1b061e2c", "value": "Converting, sound, motion pictures, images, or other analog data to binary form to be stored or altered with a computer."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "5d9c6e15-0b11-48e5-a4cd-af6de9b73072", "value": "http://vocab.getty.edu/aat/300202383"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "18d7f1d5-20b9-4f53-8532-013f7c0c7d0e", "value": "digitizing"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fdb282ff-4e71-4334-9993-46956fc2b64d"> - <skos:prefLabel xml:lang="en">{"id": "28699349-18fe-409e-86da-8ba34eae7776", "value": "experimentation"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "605e17d9-5b0b-467a-b60e-12e3b0e2e73e", "value": "Testing a hypothesis or model. In science and related fields, refers to testing systematically under controlled conditions in order to discover the qualities, behavior, or effects of the subject of the experiment."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/6585f0e4-712a-4b88-81c8-7d8732f9fa78"> + <skos:prefLabel xml:lang="en">{"id": "13fe2c14-e9b6-4105-aaae-709017a344cf", "value": "deaccessioning"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "6dbafa32-abd6-4aef-a2cf-f51b679627b3", "value": "ausscheiden"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "85db1315-47bc-4b69-a10e-014c0f84f0b3", "value": "http://vocab.getty.edu/aat/300079654"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "a187761a-1a94-4656-aa1f-939a55ccd43f", "value": "http://vocab.getty.edu/aat/300137801"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "788518ac-10db-4e6e-830e-af80632bc154", "value": "Permanently removing an object from a collection. In the context of public collections, it is generally done only with reference to a set of official criteria. Typically, the process is applied to art works, books, or other materials that are no longer appropriate, functional, or meeting the standards or objectives of the owner or repository."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "2da38d56-b9b0-44bd-88bd-9ff88182161d", "value": "retrait"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/60a64ca0-b6db-40da-b18c-6310515d22da"> - <dcterms:identifier xml:lang="en">{"id": "977f69dd-1665-4008-9fb8-1e2b66785af6", "value": "http://localhost:8000/60a64ca0-b6db-40da-b18c-6310515d22da"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "2573d862-7d6a-4970-83f9-340c5f864c58", "value": "applied research"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/97c77b61-26be-4e34-8b03-0938feb915a3"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ce042b1c-f512-4933-9aeb-0552974d51ca"> + <skos:Concept rdf:about="http://localhost:8000/26b5a060-eddb-4e4a-a98c-98abc6272296"> + <skos:prefLabel xml:lang="en">{"id": "a4c360d7-8755-4433-bc0c-fad30493a5c1", "value": "deleting (information handling)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a3328185-3cc5-47fd-a45d-00e8478b0ed0", "value": "The process or function of subtracting material or records."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "8a9191d7-2d1f-4857-9b65-910ddf76160d", "value": "method development"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "77437b00-2190-4ea3-8aef-e9e3bf2d5937", "value": "http://localhost:8000/ce042b1c-f512-4933-9aeb-0552974d51ca"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "54a69f92-4cfa-4da0-b8ce-4a96549bd6c8", "value": "http://vocab.getty.edu/aat/300417258"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/63a18937-5a9a-4660-a26a-149121b35048"> - <skos:scopeNote xml:lang="en">{"id": "6adeb349-5860-439d-8427-030d1fe99c68", "value": "Scrutinizing a situation or object, usually in order to determine its nature, qualities, or current condition."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "f03d1d93-c2ee-4ef0-ae4a-e7d2090d7d1d", "value": "examination (function)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/edcb51e8-6c01-440f-8ace-d707c352148a"> + <skos:scopeNote xml:lang="en">{"id": "06a03c9d-78ff-4e77-bef1-b9efa442c7b5", "value": "Gathering things in order to retain them."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "becf0ac4-e253-4a2a-903b-1f694b93a19c", "value": "http://vocab.getty.edu/aat/300077121"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "60f834bb-8b0a-43f7-9f29-ac87a147b447", "value": "http://vocab.getty.edu/aat/300226216"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "0fb1e517-0f69-4e1a-991b-580802ea85e9", "value": "collecting"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/11378278-d14a-49c7-afe6-3a7fbb60f347"> - <skos:prefLabel xml:lang="en">{"id": "cb7880d5-637c-4bf7-8258-106e2a173314", "value": "painting (image-making)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "3d301dea-fe8c-413f-aad0-8bc6f99923c5", "value": "http://vocab.getty.edu/aat/300054216"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "31c84a98-e4d4-4a44-b891-219f894307ef", "value": "The art and practice of applying pigments suspended in water, oil, egg yolk, molten wax, or other liquid to a surface to create an expressive or communicative image. Paint is usually, but not always, applied with a brush. For the application of paint primarily to protect a surface or add a general color, use \"painting (coating).\""}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/081ac682-081c-4a50-9fb8-30c49aa8da7c"> + <skos:prefLabel xml:lang="fr">{"id": "719a3328-3db4-46f6-bf3f-c555f53a1e5b", "value": "cataloguer (process)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "c57383b0-7c73-4120-9929-8bb702cecd59", "value": "katalogisieren"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "5e0bec7e-ef14-45b2-b2d4-2648a00c44b1", "value": "Systematically analyzing, listing, and describing items in a collection and arranging the information into a catalog."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en-us">{"id": "0bc1f9e1-9020-4e79-96bb-63c97ddc43fd", "value": "cataloging"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "25622d61-1c45-4070-8876-1e0039e2641c", "value": "http://vocab.getty.edu/aat/300054628"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/e15a5258-c4c6-479f-bd0b-30e83ec5a3f1"/> + <dcterms:identifier xml:lang="en">{"id": "1f2f8178-6d13-4cba-a770-ce613d318e9d", "value": "http://localhost:8000/1fc2970f-60b4-46fe-82e8-a874a978e6a3"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/c1b53f0c-f372-4094-b0cb-5be66a44cefe"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/cfb4f5fa-6291-4642-be9b-0c76cece2ae1"> - <skos:prefLabel xml:lang="en">{"id": "d6649015-54ba-4452-8b09-8b268f33af06", "value": "glassblowing"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "cb66224c-1bc7-4335-b9d8-43d3e1135b84", "value": "The process of shaping glass by blowing air through a blowpipe into a glob of molten glass and forming it with tongs and shears or by rolling it against a hard surface."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/f3725a5c-4f37-4142-b252-86bdd125988a"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "9752dd85-24c1-4362-83f7-3b5eed1258eb", "value": "http://vocab.getty.edu/aat/300053932"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "1bbdfb3f-e3ed-4331-a131-e2a028370e6e", "value": "http://vocab.getty.edu/aat/300054277"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "461bf80b-bf25-47a1-b757-2dbefb157aa4", "value": "curating"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c192ac2d-6873-4310-877e-ce50614056da", "value": "Superintending or managing the collections, exhibitions, research activities, and personnel of a museum, art gallery, zoo, or other place of exhibit; also, the superintending or managing of a single collection or subject of study in such an institution."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/17324c42-eb04-4527-8ea4-fe6b37ba03d2"> - <dcterms:identifier xml:lang="en">{"id": "4709f1c7-ae0b-4419-b51a-6324f35febcd", "value": "http://localhost:8000/17324c42-eb04-4527-8ea4-fe6b37ba03d2"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "8b0172f9-620d-4658-9b2e-f143d654293a", "value": "pilot project"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/dc5fe25b-6499-4b41-9ac8-08db72fcadf4"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "9d77b55d-434f-4e02-b4ad-bdbd34ccd1ff", "value": "http://localhost:8000/dc5fe25b-6499-4b41-9ac8-08db72fcadf4"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "655a8553-9d8b-4ea8-9fd5-51805169dee0", "value": "designation"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/e576485c-36c1-41e0-be6e-67dde3c52d9f"/> + <skos:prefLabel xml:lang="en">{"id": "157dca83-807c-4340-913d-67adc0fc24f3", "value": "Set Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/6444d3a3-f9bd-42e4-9c62-ea3fb2cd4f90"> + <skos:Concept rdf:about="http://localhost:8000/3713f15e-f142-4ce0-9119-ac3d4d6a248e"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "07539834-a9e5-4248-a1f8-7a18f35abcc0", "value": "Sammlungsverwaltung"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "c96fe943-2751-41e7-850e-db98ce31274c", "value": "collections management"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "6a26a154-c967-413b-9411-ff92de80980c", "value": "gestion des collections"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "93920192-4bde-4399-b4d1-01e5f8acf611", "value": "General term for the gathering, organization, description, provision of access, storage, and overall maintenance of a collection of objects, documents, or other materials."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "c9d59b83-6ac5-43ac-b489-5d285d6145b1", "value": "http://vocab.getty.edu/aat/300137819"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "a7b52b2a-cd8c-4c0f-b2f5-09c334be0e7f", "value": "http://vocab.getty.edu/aat/300077506"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "087bcfe0-0c02-416c-a3a5-fc6f1284898a", "value": "Listing items on hand."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "b4c6875a-d76d-4cea-adaa-3bb01d8a4097", "value": "inventorying"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/db62dc19-f356-410b-a309-474f5b59c767"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c6d0fd93-ac62-4927-b15b-5388af12d956"> - <dcterms:identifier xml:lang="en">{"id": "8c880ec1-688e-4412-bd70-480601aeb8d9", "value": "http://vocab.getty.edu/aat/300379543"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "95be6f40-c4e6-4864-9dde-f67a4ee40d95", "value": "Systematic assessments of the condition of a group, collection, or system, for example, the contents of a library or archive. For reports on individual items, use \"condition reports.\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "c2fac67d-f2f0-41ad-92a7-31b10a4a9e73", "value": "condition surveys"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/f01f324e-a192-4aab-9bdb-9a2fd5c355a2"> + <dcterms:identifier xml:lang="en">{"id": "e35c39b9-19d5-40e5-beb8-693e083cf1e6", "value": "http://localhost:8000/f01f324e-a192-4aab-9bdb-9a2fd5c355a2"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "5fe8d8c0-565a-4d99-9774-5728fdf28d32", "value": "inserting"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "53e24b1c-a07c-49bb-89be-ae2b508692f3", "value": "Techniques"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "7734f0ef-ce1a-49f9-b847-69197f7e1ada", "value": "http://localhost:8001/4617ed4f-e1ff-4a2d-90e1-c22cac2a1436"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/cf73b0a9-ecca-471c-ade9-e4fbcd404f63"> - <skos:prefLabel xml:lang="en">{"id": "8f959313-105f-4bf8-b1f9-0cd49d73ffb3", "value": "conservation scientists"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "b316a648-9d7a-4719-aa9d-7f23a7ea9e6f", "value": "http://vocab.getty.edu/aat/300025820"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/1dfca74c-101d-4089-b553-d03156750e19"> + <skos:scopeNote xml:lang="en"><![CDATA[{"id": "8eae90d7-c5fb-40cd-9862-e7ee91e164d8", "value": "Refers to still images produced from radiation-sensitive materials (sensitive to light, electron beams, or nuclear radiation), generally by means of the chemical action of light on a sensitive film, paper, glass, or metal. Photographs may be positive or negative, opaque or transparent. The concept does not include reproductive prints of documents and technical drawings, for which descriptors found under \"<reprographic copies>\" are more appropriate. The concept may include photographs made by digital means."}]]></skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "88a4ca5e-8612-4efd-bee9-30503811934e", "value": "photographies"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "2f4cf26f-4b5d-4815-90b8-08d1b234faa1", "value": "Foto"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "3ad5947c-34a1-4edb-9e4e-c82b9ddaaf58", "value": "http://vocab.getty.edu/aat/300046300"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "07a047e6-fd03-4827-b3d1-107ed0313777", "value": "photographs"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "c0c11df0-54ca-45c8-9f5a-90dfd8be795e", "value": "Scientists who apply their knowledge to problems of conservation."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/70b50991-3662-4373-a7d5-f378139bfee8"> + <skos:Concept rdf:about="http://localhost:8000/6fcdb2d8-efa7-42f8-94fc-d491b5074631"> + <skos:scopeNote xml:lang="en">{"id": "5351d277-5f72-468a-aaad-d7aa451ff084", "value": "Refers to the practice of making photographs with a pinhole camera. Light-sensitive film or paper is exposed through a tiny, lensless aperture: the resulting images have very great depth of field, but lack critical sharpness."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "5e914c3e-c408-4611-9019-f625e3d13ac0", "value": "Recording the entry of items into a collection in the order of acquisition."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "97ab0e9b-c518-4173-bcee-2d845d57d7e0", "value": "accessioning (collections management)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "3f97891a-f35a-4c6a-bfff-9c18fd718017", "value": "http://vocab.getty.edu/aat/300054626"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "56ba601b-adc6-4f26-b40c-5193f6fde320", "value": "http://vocab.getty.edu/aat/300265124"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "5b159574-09f4-4212-a131-d96ee5d34922", "value": "pinhole photography"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/bfe0540e-72a5-4ee3-a224-78167f39b1b6"> + <skos:Concept rdf:about="http://localhost:8000/6f88b717-088e-48cd-9c4a-f3c08c5ed8fd"> + <skos:prefLabel xml:lang="de">{"id": "4ba83d74-482d-49bf-8dd8-b5bd6f0e8dc9", "value": "drucken"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "fb15fa57-16ba-4492-a013-f203c995150f", "value": "Method of acquiring property for temporary use, with or without the payment of interest."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "b42ea1ad-26cd-47e5-8e46-e33f9bb2021f", "value": "http://vocab.getty.edu/aat/300417645"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "bb947aa5-daf0-43fc-935f-cdc8c7de8e58", "value": "loan (method of acquisition)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "4d18c2d3-0198-4b12-a5a3-891e4d8fbb3c", "value": "Various means of reproducing identical copies of graphic matter in a fixed form. Processes by which an image, pictorial or textual, is transferred, usually to paper or cloth, most often by means of a plate, block, stone, or screen. Use also for the making of photographic prints and, with computers, for the production of a paper copy of stored data. For the production of prints in a fine arts context, prefer \"printmaking.\" "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "15319013-280b-4793-a18f-927f41577b64", "value": "http://vocab.getty.edu/aat/300053319"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "956cf556-7ac6-4513-b446-a26b053f8c38", "value": "impression (printing)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "56144c93-7a44-4419-acd1-4eeaba0bfa80", "value": "printing (process)"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/25e157c6-b10a-4198-8abf-0fc18bf80b3d"> - <dcterms:identifier xml:lang="en">{"id": "82ad1978-a2ed-4f4d-9c04-6b4edbefddb5", "value": "http://vocab.getty.edu/aat/300420000"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "6540d1dd-26d7-43b1-bdc2-8235964a7f6c", "value": "sold at auction"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/4f861b2d-0400-41f7-a08b-a871f1e51316"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "380773fb-ee60-4d27-b643-243e72c0d075", "value": "Status of property transferred by sale to a new owner in an auction, which is a public sale of property to the highest bidder, as by successive increased bids."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "e6ec371d-cd46-4c0d-8647-99ba55cebd4c", "value": "members"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "950b1409-0a1a-491b-b8be-f2e745b15e77", "value": "http://vocab.getty.edu/aat/300263077"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "51803885-55b8-45b3-b6f9-3348ac6903c1", "value": "Those who have membership in an organization, community, joint enterprise, or other group."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b1bcc89f-22bd-42d3-bfc8-e694d5f8d460"> + <skos:Concept rdf:about="http://localhost:8000/0c742f97-1424-4fc3-a897-8f8a453f58e2"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "5817a099-9e1d-44e2-859a-ac9924a84c8f", "value": "http://localhost:8000/b1bcc89f-22bd-42d3-bfc8-e694d5f8d460"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "cffc3bef-3ebf-4084-9273-966194b605ba", "value": "data specialist"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "17949722-b0fa-45d5-ab15-fe01c8adfb56", "value": "Unit of measurement for computer file storage. Equal to 1,048,576 bytes."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "b4833602-b2dd-400f-ba0a-87cf15ef6915", "value": "http://vocab.getty.edu/aat/300265873"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "c5e859b2-381c-482c-b220-d1ff2ca45b31", "value": "megabytes"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/16f5f34f-a67f-444a-afd7-117831a1a512"> - <dcterms:identifier xml:lang="en">{"id": "e8fc4d05-a346-4c74-9f5d-a8a9401d5643", "value": "http://vocab.getty.edu/aat/300054627"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/5bd3fd11-b460-42d1-ac1e-46eb1f86e9f4"> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/41e5f622-07c2-47c1-85b4-b7a1736de1f0"> + <skos:narrower rdf:resource="http://localhost:8000/e0cb0905-bf56-488f-b682-4a14cc0afa49"/> + <skos:narrower rdf:resource="http://localhost:8000/c84d1624-d004-4640-9653-6a6cd99c32e2"/> + <skos:narrower rdf:resource="http://localhost:8000/e8a9a948-1cc2-452f-bd4b-33b1d84e899d"/> + <skos:narrower rdf:resource="http://localhost:8000/19b0fa01-3d14-43c5-afde-0662376fb3f2"/> + <skos:narrower rdf:resource="http://localhost:8000/54b03ff5-24de-427f-b8c9-1d6fba460bc1"/> + <dcterms:identifier xml:lang="en">{"id": "ed9ce9bc-4d1f-466f-877e-909f4b77f3d8", "value": "http://localhost:8000/41e5f622-07c2-47c1-85b4-b7a1736de1f0"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/23da916d-1424-44f5-a85e-e5dacbcce27a"/> + <skos:narrower rdf:resource="http://localhost:8000/f72e688f-855b-43d1-92aa-11aa679b01e6"/> + <skos:narrower rdf:resource="http://localhost:8000/0bc8a3a2-baa2-4a32-9839-89b5bf917f3a"/> + <skos:narrower rdf:resource="http://localhost:8000/bd8f902a-454c-4122-9b3e-1bac24a66a06"/> + <skos:narrower rdf:resource="http://localhost:8000/3b46f7de-75f7-4999-a0ab-3a8b6ca5b01a"/> + <skos:narrower rdf:resource="http://localhost:8000/6696a427-b2ff-4fce-9f78-61861c063c37"/> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en-us">{"id": "28918723-3202-4ae2-b68a-0276370eba5d", "value": "Genders"}</skos:prefLabel> + </skos:Concept> + </skos:narrower> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "63c1b619-efa5-4e8a-88b8-6badc3f8ec13", "value": "Filing or collecting (as records or documents) in an archive or other repository."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "45abd998-3aea-4a69-9501-5e082760cf31", "value": "archiving"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/1b0aaa1b-cc86-4b07-a317-142261d3f580"/> + <dcterms:identifier xml:lang="en">{"id": "585269e2-c3cf-4701-8829-332bcc9500f6", "value": "http://localhost:8000/5bd3fd11-b460-42d1-ac1e-46eb1f86e9f4"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/8adca8e5-52db-434d-905f-477db70b08e9"/> + <skos:narrower rdf:resource="http://localhost:8000/463cf53d-6aa0-4186-81e2-bf7f5d7eb21f"/> + <skos:prefLabel xml:lang="en-us">{"id": "e4975f05-f30f-48ba-88a4-b5bac66d0c67", "value": "Person Attribute Concepts"}</skos:prefLabel> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/29fb8dc0-61e3-4d99-a705-bf5ce8a7c61d"> + <skos:prefLabel xml:lang="en">{"id": "b8692280-85c2-4b85-9b5a-83ff1d15db74", "value": "Contact Point"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/ac3c260d-a77a-4ebb-8281-43282e53f0d2"/> + <skos:narrower rdf:resource="http://localhost:8000/725a5deb-3ed2-4b66-9979-8590ad6a6d6e"/> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/d6d36746-2a09-495c-817e-18ceca57a25a"/> + <skos:narrower rdf:resource="http://localhost:8000/89d67de0-53ea-464e-8a28-448e6c267d87"/> + <skos:narrower rdf:resource="http://localhost:8000/c1046e53-a3c7-4e1e-b9a3-5051b5fb2e33"/> + <dcterms:identifier xml:lang="en">{"id": "56d0aafe-c1a0-4751-b26a-00264206675f", "value": "http://localhost:8000/29fb8dc0-61e3-4d99-a705-bf5ce8a7c61d"}</dcterms:identifier> + </skos:Concept> + </skos:narrower> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/efb920fe-6946-493c-a6b4-898babdbbc9d"> - <skos:narrower rdf:resource="http://localhost:8000/17a5481d-5595-46cf-b6a1-56b29103f739"/> - <skos:prefLabel xml:lang="en">{"id": "62c4c337-4fcb-4910-a303-df4bee6b4f12", "value": "Acquisition Event Type"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/08427def-f19a-4add-afe7-7f58ffc66e0d"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/58d98835-1370-4665-88fb-230bed179b67"> + <skos:Concept rdf:about="http://localhost:8000/b6323e0d-be53-4dc1-ab97-83f8cbb47d1c"> + <skos:scopeNote xml:lang="en">{"id": "172091fc-a125-4d02-bdfa-8673ebb4b893", "value": "Application of paint in thick, opaque masses, usually with a well-loaded brush or a palette knife."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "6ee102ac-8855-4e46-ad22-2342e57ec4f3", "value": "Pastos (impasto)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "c2302240-6117-4279-ace5-63aa53839d74", "value": "impasto"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "42d05ee6-534d-49ed-99d3-c68edc167243", "value": "http://vocab.getty.edu/aat/300053368"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "efd6b14f-8951-405b-a058-e80ce2d4ca51", "value": "Method of acquiring property by each party giving and receiving from the other party, usually regarding property of equal value. For example, an exchange may be made by individual authors, libraries, museums, and other institutions in which they exchange between or among each other their own publications or those of the institution with which they are connected, or duplicates from their own collections."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "43f9fb80-75a5-44cb-9a48-eb6bc4b3d970", "value": "http://vocab.getty.edu/aat/300263427"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "ba5a4904-f32f-499a-910a-23b3dcc14ba1", "value": "exchange (method of acquisition)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "9bd77cfd-acdc-4009-893d-665a834c9741", "value": "http://localhost:8000/efb920fe-6946-493c-a6b4-898babdbbc9d"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/d5c8c4b4-f569-4963-9f2b-b4869c768b7c"> + <skos:Concept rdf:about="http://localhost:8000/1f5435f5-153c-45c8-a140-bfda7f4e9b8c"> + <skos:prefLabel xml:lang="en">{"id": "9734a99b-6f57-4878-9568-1cc8e5fff732", "value": "oil painting (technique)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "4b6bd674-ea4f-4273-89f0-e7f2ab207106", "value": "The art or practice of producing creative works in oil paint, which is pigment suspended in vegetal drying oils. It dates from at least the Middle Ages in Europe, and was widely adopted for easel painting by the fifteenth century."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "79ef402f-3441-4e90-a60b-cf2cf98dbf87", "value": "http://vocab.getty.edu/aat/300438467"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "450bf882-0328-4c81-b8cb-bd09d0d7b61e", "value": "Method of transferring loaned property back to the original owner or custodian."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "85ccd30a-a086-4aa0-a4a7-233af842bbd8", "value": "return of loan"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "d41390fe-fbe7-484b-92f4-776b6706aa53", "value": "http://vocab.getty.edu/aat/300178684"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "58d37be8-7945-4b56-bc3a-3b09348d8d9a", "value": "http://localhost:8000/08427def-f19a-4add-afe7-7f58ffc66e0d"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/6fcdb2d8-efa7-42f8-94fc-d491b5074631"/> + <skos:narrower rdf:resource="http://localhost:8000/027ce46c-9428-4606-8352-af48ff5bd1bb"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8913b62a-23fe-4a7e-aeca-52356160b92e"> + <skos:Concept rdf:about="http://localhost:8000/1a670915-4a87-4f1a-84c4-fb2192a6e742"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "2bfc1e14-987e-4162-9755-64200a843c74", "value": "http://vocab.getty.edu/aat/300417644"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "0250da6a-bc67-492c-a80b-b5a9e6089c3c", "value": "Method of acquiring property by legally conferring existing ownership to another person or institution; it does not necessarily involve benefactors."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "9435c2af-2773-49d0-b85e-abb3539723da", "value": "transfer (method of acquisition)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "0334be0f-63da-45b2-b908-43d09f3993a3", "value": "The technique of painting with pigments in a water-soluble binder and thinned with water, usually on paper. Includes gouache painting, although gouache is not technically watercolor paint."}</skos:scopeNote> + <skos:prefLabel xml:lang="en-us">{"id": "82524042-f117-48f8-be48-4353d089d3aa", "value": "watercolor painting (technique)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6cd98014-f617-4034-9876-91743734120c", "value": "http://vocab.getty.edu/aat/300389895"}</dcterms:identifier> + </skos:Concept> + </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/01ff64ed-bba4-40a1-8715-4ffbaa060780"/> + <skos:prefLabel xml:lang="en">{"id": "124567db-e6c4-41fb-b2ee-ef63125a0def", "value": "Production Techniques"}</skos:prefLabel> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/23cc4228-b166-403e-87c4-fb88ab7ff204"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en-us">{"id": "46461a06-b287-4df6-aa74-351995b0f4a8", "value": "color photography"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "2457158d-d045-4e55-a20f-e8e679b2a4f7", "value": "http://vocab.getty.edu/aat/300134530"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "13f34793-5fbb-4af3-a004-1eb973215d7f", "value": "Generally, the art or practice of taking and/or processing photographs that reproduce hues perceptible to the human eye. Extended to include imagery in which colors have been artificially enhanced or altered. "}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/f3fed7aa-eae6-41f6-aa0f-b889d84c0552"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e22afbaa-948c-4063-a4f9-8ea7ce5a35c7"> - <dcterms:identifier xml:lang="en">{"id": "9bdb8156-711f-48f2-8cfc-a2725753966a", "value": "http://vocab.getty.edu/aat/300417642"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "7691512a-c9a7-47ee-be67-6f8908a0763a", "value": "purchase (method of acquisition)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "bd2d7efa-b804-4ee9-820b-c1c2efcc02a8", "value": "Method of acquiring property by payment of funds."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/c61ec308-a947-4010-83c7-0d9181dd203d"> + <dcterms:identifier xml:lang="en">{"id": "b1511923-8e4e-4faa-b301-5b88b763942a", "value": "http://vocab.getty.edu/aat/300053363"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "132378ed-ce7f-4053-aba4-5bf474ab8db1", "value": "Watercolor painting done in transparent washes of color as distinguished from the opaque method using gouache."}</skos:scopeNote> + <skos:prefLabel xml:lang="pt">{"id": "1e518528-5d5e-49a1-95c8-1ac8c03ed368", "value": "aquarela"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en-us">{"id": "ebdf038f-f86b-4f3f-86d3-31789b9eac39", "value": "aquarelle (technique)"}</skos:prefLabel> + <skos:scopeNote xml:lang="pt">{"id": "216d6b68-173e-4835-939f-a92ebbc15ca0", "value": "Pintura em aquarela feita em lavagens transparentes da cor, diferenciando-se do m\u00e9todo opaco usando guache."}</skos:scopeNote> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c801eaae-849a-46b4-a97e-280b59c1f2d7"> - <skos:scopeNote xml:lang="en">{"id": "a2521c01-20a0-4399-80c4-b8ff4ebd100a", "value": "General term for the method of acquiring property through transference by one person or institution to another person or institution, voluntarily and without any payment required."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "6d224b77-605e-4424-95db-5abe11d8fc7f", "value": "gift (method of acquisition)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e161bb15-8f37-476a-9908-b66a513bb817", "value": "http://vocab.getty.edu/aat/300417637"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/a1aba246-0843-4329-a12b-1c3dd0731900"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "4d79aceb-201f-4682-bd72-5183bdb4b6f2", "value": "black-and-white photography"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "d70fa3c4-bbde-4bfc-8e4e-d43b6a8f3dc3", "value": "The art or practice of taking and/or processing photographs whose images are composed of gray tones, black, and white, and sometimes one hue, which may result from toning or aging."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "9bed5007-ed6e-441b-b4b4-a0c5e1e0810e", "value": "http://vocab.getty.edu/aat/300162056"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/bfe0540e-72a5-4ee3-a224-78167f39b1b6"/> + <skos:narrower rdf:resource="http://localhost:8000/ebf23273-18df-4605-a8d0-852c46e94b07"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/a16a24c8-7b71-43a3-8473-39638039eaf4"> - <skos:prefLabel xml:lang="en-us">{"id": "ecdf7e44-d487-41ec-bcb9-7d20e9ee6e4e", "value": "Identifier Part Types"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/dd91e772-2e37-4e47-8306-a678ce7fd10c"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "212a65fb-f2d3-43d0-b32b-c0715fc83917", "value": "http://localhost:8001/a16a24c8-7b71-43a3-8473-39638039eaf4"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "df28672b-e210-44c3-acc0-a9d94ae2421c", "value": "A distinct passage or section of a text, usually composed of several sentences, dealing with a particular point, a short episode in a narrative, a single piece of direct speech."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "272474dc-7fd3-41f2-b240-ea450c728b90", "value": "http://vocab.getty.edu/aat/300417223"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "6217b229-499f-4d91-b78c-bc042375e979", "value": "paragraphs"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/fa11cdad-f45d-41f2-bac0-8b8045cff74b"> - <dcterms:identifier xml:lang="en">{"id": "cfbf116c-a75f-490e-a069-5d227f4a3623", "value": "http://vocab.getty.edu/aat/300067450"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "4b0d073a-0ffd-4652-b034-42d4fbd945de", "value": "Painting technique whereby tones and hues are obtained by applying regular small dots or touches of unmixed pigment on the canvas so that they combine optically. The French critic F\u00e9lix F\u00e9n\u00e9on coined the term \"peinture au point\" in 1886 after seeing Seurat's \"La Grande Jatte.\" Paul Signac offered the alternative term of \"divisionism\" in his book \"D'Eug\u00e8ne Delacroix au N\u00e9o-Impressionnisme (1899), although in modern usage \"pointillism\" is reserved for the technique involving dots applied in a controlled manner, while \"divisionism\" refers to use of marks of unmixed color in Italian painters\u2019 works."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/afbf17a2-4e83-4de6-963a-b985dc0f7c35"> + <dcterms:identifier xml:lang="en">{"id": "4bcca87a-2564-43eb-88ed-3cfaf5ec5bc2", "value": "http://vocab.getty.edu/aat/300389895"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "346bb7bd-d384-4286-bf02-37cf6e3635bc", "value": "The technique of painting with pigments in a water-soluble binder and thinned with water, usually on paper. Includes gouache painting, although gouache is not technically watercolor paint."}</skos:scopeNote> + <skos:prefLabel xml:lang="en-us">{"id": "06dc25d4-070f-4461-9490-d29abfadedbf", "value": "watercolor painting (technique)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "98d9e6ff-1405-4208-b899-bf863f290238", "value": "pointillism (painting technique)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "be8808de-3312-409c-b075-301fdce8d2bd", "value": "pointillisme"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/48e08437-a15d-4f0f-adfc-77c1587f17b9"> - <skos:scopeNote xml:lang="en">{"id": "f9147c49-2064-476d-87b9-64f097ef8a18", "value": "Designations for streets, highways, roads, or other thoroughfares, either proper names or numeric indicators."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "b53bab04-2e5b-4bf0-970d-10dae57b1217", "value": "thoroughfare names"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "88fb78eb-45c9-4fce-b62d-5be84cdab5a7", "value": "http://vocab.getty.edu/aat/300419273"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/0e5d03f3-613c-4e36-9783-e93e317b56a6"> + <skos:scopeNote xml:lang="en">{"id": "a2882a3c-22d4-409b-acf5-c09919e8fd7e", "value": "Depictions and representations on a surface in two dimensions or low relief, or digital, whether the optical counterpart exists in reality or only in imagination. For example, the term may refer to a depiction as distinguished from its support, as when referring to a drawing as distinct from the paper upon which it is drawn. For a representation of an object as opposed to the tangible object itself, as when distinguishing between a photograph or digital image and the art object depicted, use the descriptor \"visual surrogates\" or the UF \"images (visual surrogates).\" For three-dimensional works, use \"objects\" or a more specific term, such as \"sculpture (visual works).\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "a52ee89e-cf50-40c9-99d7-982e119e3db9", "value": "http://vocab.getty.edu/aat/300264387"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "68fb8741-45fe-46d9-afc9-f5c27b828364", "value": "Bild (object genre)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "647be6f7-b727-426c-ae91-6bbedf80eb1f", "value": "In einem allgemeinen Sinn bezieht sich der Begriff auf alle Abbildungen und Darstellungen von Objekten, Geb\u00e4uden, Personen, Tieren, Pflanzen, Orten oder Ph\u00e4nomenen, unabh\u00e4ngig davon, ob das optische Gegenst\u00fcck in der Realit\u00e4t oder nur in der Vorstellung existiert. Der Begriff kann engere Bedeutungen in bestimmten Kontexten erhalten. Er kann sich auf eine Abbbildung beziehen. die sich unterscheidet vom originalen Bildtr\u00e4ger, beispielsweise wenn er sich eine Zeichnung bezieht, im Unterschied zu dem Papier, auf dem sie erstellt wurde. F\u00fcr die Darstellung eines Objekts im Gegensatz zur materiellen Objekt selbst, wie bei der Unterscheidung zwischen einer Fotografie oder einem digitalen Bild und dem Kunst-Objekt, verwenden Sie die Bie Bezeichnung \"visuelle Surrogate\" oder das UF \"Bilder (visuelle Surrogate).\""}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "55077c47-2b63-42e1-b645-cb5546889915", "value": "images (object genre)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/6585f0e4-712a-4b88-81c8-7d8732f9fa78"> - <skos:prefLabel xml:lang="fr">{"id": "2da38d56-b9b0-44bd-88bd-9ff88182161d", "value": "retrait"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "13fe2c14-e9b6-4105-aaae-709017a344cf", "value": "deaccessioning"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "85db1315-47bc-4b69-a10e-014c0f84f0b3", "value": "http://vocab.getty.edu/aat/300079654"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "788518ac-10db-4e6e-830e-af80632bc154", "value": "Permanently removing an object from a collection. In the context of public collections, it is generally done only with reference to a set of official criteria. Typically, the process is applied to art works, books, or other materials that are no longer appropriate, functional, or meeting the standards or objectives of the owner or repository."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "6dbafa32-abd6-4aef-a2cf-f51b679627b3", "value": "ausscheiden"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/d2ecdb4f-eca9-4407-953e-50fdf9f711b0"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "19fffcff-0448-4074-8981-4c26846a8b49", "value": "assignat (system of money)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "6ed9487d-db56-45a1-8689-f5bc15707133", "value": "Currency issued by the French revolutionary government between 1789 and 1796, in the form of paper money and based on the security of the state lands."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "c1f25ad5-664e-4a0e-9101-c7a869bac34c", "value": "http://vocab.getty.edu/aat/300412157"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c4413a59-1a69-40e7-9c2d-092d1cebb4c4"> - <skos:narrower rdf:resource="http://localhost:8000/7156f8e2-d534-4f02-8f31-71f9a9a3a4aa"/> + <skos:Concept rdf:about="http://localhost:8000/67d2e2c0-4a05-41fa-8e22-c8fda35ea76e"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "72641181-6ac9-4974-b0b8-8189eff09dff", "value": "http://localhost:8001/67d2e2c0-4a05-41fa-8e22-c8fda35ea76e"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "d152fdbb-9397-4d6e-96e1-26ff3c923696", "value": "Dimensions"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/7860b0f4-b777-40e9-a320-6dde997fe2d6"> + <skos:Concept rdf:about="http://localhost:8000/cf8cd73c-d245-4128-a509-84451c28eccc"> + <skos:prefLabel xml:lang="en-us">{"id": "1ce081fa-419a-4ceb-baa4-7e2259e88ecb", "value": "Physical Dimensions"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/191c70d0-82cd-4eeb-8a71-48f794f15211"/> + <skos:narrower rdf:resource="http://localhost:8000/9624bcad-0f1a-4c78-a919-f9eb6c532da2"/> + <skos:narrower rdf:resource="http://localhost:8000/4649d0f2-ad6c-4905-a24e-8d784c2cbc48"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "f9cbb63f-ea9c-4e1d-a971-348480a75e96", "value": "kilobytes"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "54b99725-2fa1-4fd7-864b-a14fa661c0e2", "value": "A unit of measure for information or computer storage representing 1024 or 1000 bytes. The most commonly referred to unit of computer file size."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "4bd2ada0-068e-45b0-a6b0-193e7d96d347", "value": "http://vocab.getty.edu/aat/300265870"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/f18613e5-aa77-4400-97b9-aaf6987de517"/> + <skos:narrower rdf:resource="http://localhost:8000/b391c967-2a6b-4972-9289-17130cf96557"/> + <dcterms:identifier xml:lang="en">{"id": "8029f461-6cba-4f5f-90af-9ddfb1a7ca31", "value": "http://localhost:8001/cf8cd73c-d245-4128-a509-84451c28eccc"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/7882a788-a6ba-42d7-bb02-7c2776d82353"/> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "c490fe36-ea13-4656-b1f3-f5b72fd96543", "value": "http://localhost:8000/c4413a59-1a69-40e7-9c2d-092d1cebb4c4"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/edead18b-2e9e-4790-856f-9bf05dc78b23"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/23da916d-1424-44f5-a85e-e5dacbcce27a"> + <skos:scopeNote xml:lang="en">{"id": "ebd3f5a3-ad6c-460c-8067-dd1323b5840d", "value": "A broad term used for a variety of non-binary sexual expressions of individual indigenous North American people. More specific terms are unique to language groups."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "c295c54a-aeae-4f57-98c1-b4014755e0ff", "value": "http://vocab.getty.edu/aat/300438744"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "9e566d07-311f-473b-a385-7d7d2689742d", "value": "two-spirit"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/038d2bdf-081d-4f53-8ace-305e68c10591"> + <skos:prefLabel xml:lang="en">{"id": "92c474cb-930e-4c1d-b53a-d6104140d626", "value": "approximate"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "484c720e-7a66-4d2e-9aec-cc251e34e4d2", "value": "http://localhost:8000/038d2bdf-081d-4f53-8ace-305e68c10591"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/5e49ee59-6580-4fcb-a57c-be102f72bccd"> + <skos:scopeNote xml:lang="en">{"id": "cdd06878-3a75-4c08-b86b-ec7c4c0197dc", "value": "Unit of English currency, issued as a gold coin first struck in 1663."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "beedae6a-f6df-4b3d-9b5c-8b2fb293c7d8", "value": "http://vocab.getty.edu/aat/300412163"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "3677f9af-19f9-4124-a7c6-10072cb9d583", "value": "guinea (unit of currency)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/5f9d4f70-ca98-4ff1-9c73-52877fbf83c3"> + <dcterms:identifier xml:lang="en">{"id": "6c0772c2-6c39-4bfc-ae53-ff5803003ac2", "value": "http://vocab.getty.edu/aat/300417282"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "8f6b9b6e-43a3-4977-9468-5a55f9853624", "value": "Heritage science refers to all applications of science for the general study of cultural heritage, tangible and intangible; a cross disciplinary research domain including humanities and sciences, such as the natural, social, and formal sciences. In particular, heritage science focuses on issues such as promoting access to cultural heritage, its interpretation, conservation, and management."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "d7b53576-0d69-49fb-a7e4-c1d5bc7ed369", "value": "heritage science (cultural heritage discipline)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/4ca81629-eea8-4c65-a963-0012a9a33d7a"> + <skos:narrower rdf:resource="http://localhost:8000/832eacc2-f7c9-449c-a6d0-8d938ab74bd8"/> + <skos:narrower rdf:resource="http://localhost:8000/6c796833-b93f-4c85-b9df-0614295be6f3"/> + <dcterms:identifier xml:lang="en">{"id": "d4e04ce5-e76c-44c5-867d-111e0c61c6a5", "value": "http://localhost:8000/4ca81629-eea8-4c65-a963-0012a9a33d7a"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "47084bca-8401-42a5-a381-f27d53f122e4", "value": "Event/Activity Types"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/4617ed4f-e1ff-4a2d-90e1-c22cac2a1436"/> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f1e7c733-a149-4ffe-8f8e-620c852f4131"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8e39291b-e186-4571-b03d-e7b5b74b030e"> - <dcterms:identifier xml:lang="en">{"id": "890d6c07-e3c1-4879-bb6f-fe76e8b9eb45", "value": "http://vocab.getty.edu/aat/300412057"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/f9f84020-d138-420e-8efb-c6fa7a8edd6d"> + <skos:prefLabel xml:lang="en">{"id": "60d059a4-96bf-4715-bdb7-aea771898a4b", "value": "task forces"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "7a3c15a7-0573-498e-a0f5-525757074823", "value": "http://vocab.getty.edu/aat/300150132"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "7d590e20-75f5-459c-a8f0-8fa7deab4790", "value": "Committees, usually of experts or specialists, formed for analyzing, investigating, or solving a specific problem."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "f9b589f3-f870-4ed6-9530-7d9b50413578", "value": "Refers to the resolution capability of electronic imaging devices such as computer monitors, digital cameras, televisions, or scanners, expressed as the number of pixels per linear distance (pixels per inch or pixels per centimeter). Pixel density can also describe the resolution of image files."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "04e6260b-b10b-4fa8-aba8-62eae2de8d06", "value": "pixel density"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a440773e-a140-4e8e-9fa7-2773b1c88f25"> - <dcterms:identifier xml:lang="en">{"id": "b419c0e7-5217-4ab4-9703-72f0e5e80c53", "value": "http://vocab.getty.edu/aat/300410391"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "44bf8c90-2e3a-41b1-98eb-58966d6f72ed", "value": "pixels per inch"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/0ce70c72-c0c8-4b2d-86af-39821d6a3d07"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "b3a74e83-240e-43e6-946a-0ab716aa70f2", "value": "The resolution of electronic imaging devices such as computer monitors, digital cameras, televisions, or scanners, expressed as the number of pixels per linear inch. Pixels per centimeter also describes the resolution of image files."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "5f3b4caf-7a29-41b1-ba69-5f6cd155f8a5", "value": "teams"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "406d2681-1416-4a40-a876-30f256550fcf", "value": "http://vocab.getty.edu/aat/300248011"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "337e5132-8b60-4715-af45-867ca502c645", "value": "Groups of two or more people or animals functioning as a collaborative unit in some joint action, such as a sport, game, project, or task."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "67075e1b-9111-4111-8949-d43c46be2a9b", "value": "http://localhost:8000/f1e7c733-a149-4ffe-8f8e-620c852f4131"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "7edfb99c-6af3-46b5-b929-573b7b49a360", "value": "Group Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5d34bcba-7196-44ea-94c1-6180a0bb5927"> + <skos:Concept rdf:about="http://localhost:8000/0d87b5d0-1aac-456f-81e7-62c260e2293d"> + <dcterms:identifier xml:lang="en">{"id": "31505fbd-a9cb-4fe0-a38c-990ef73dab16", "value": "http://vocab.getty.edu/aat/300263534"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "1eed7486-f671-4a8b-8a0f-70ba0a631ef4", "value": "Major executive or administrative units within an organization. For major autonomous or semi-autonomous units within an organization, use \"divisions (organizational units).\" Use of these terms in literature, especially with regard to the official titles of organizational units, is idiosyncratic and often no consistent distinction is made."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "51a432fd-f66a-4197-a5b9-48b1445d5bb2", "value": "departments (organizational units)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b1c535cc-7fc8-4a66-9a46-b6c8d0bb3d6f", "value": "http://vocab.getty.edu/aat/300266477"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "373b4b78-b4be-4ec1-b836-793dc165dc9c", "value": "Unit of measurement for computer file storage equal to approximately one trillion bytes. Specifically, 1,099,511,627,776 bytes."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "56d65922-6a30-4ca4-afdd-c4f9d0aff4f9", "value": "terabytes"}</skos:prefLabel> </skos:Concept> </skos:narrower> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/f37e69ea-ce89-4a5c-924b-172a2ac7e9a0"/> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/87429aa4-81ee-415e-87c2-8420089d53f4"> + <skos:prefLabel xml:lang="en">{"id": "4cf6e19d-4846-4e30-ab57-b54d808735d8", "value": "programs (organizations)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c4042b8c-d8c4-4cbd-b7ae-62127189fd3b", "value": "Organizations, agencies, departments, or other entities that coordinate, direct, and oversee the implementation of multiple interrelated projects or activities."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "c2e7f040-964c-4b9f-a5cb-78e842e34775", "value": "http://vocab.getty.edu/aat/300386364"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + </skos:narrower> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/a23008bd-df63-4d01-a3c7-e22e0f34ad80"> + <skos:scopeNote xml:lang="en">{"id": "70c1113a-ff77-4357-a847-8a9f61006a39", "value": "Groups of persons delegated to consider, investigate, or take action upon and usually to report concerning some matter or business."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "4a5389dc-8ed2-4886-b0fd-2c4c6edeb209", "value": "committees"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "2855ff18-eaf2-4bfb-835e-de8f477a3931", "value": "http://vocab.getty.edu/aat/300025980"}</dcterms:identifier> + </skos:Concept> + </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/c5c1b27b-de1d-4dd3-aeb6-3a8a2715a7dc"> - <skos:prefLabel xml:lang="en">{"id": "e0ff9946-c3dd-462c-987f-1aabbb314f67", "value": "gigabytes"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/929b011e-3cdb-449e-b155-8cd2808ed4c5"> + <dcterms:identifier xml:lang="en">{"id": "de682570-ecde-41bb-8d57-8897eaddd88c", "value": "http://vocab.getty.edu/aat/300386741"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "3b5bd347-cb78-4761-80bf-598ac9a2574e", "value": "governments (administrative bodies)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a392d875-1eee-411b-a0cc-8ce930401483", "value": "Bodies that exercise continuous authority on behalf of a nation, state, community, or other administrative entity over the actions of subjects or citizens, by authoritative direction or regulation."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "adcce31e-f965-41fc-8576-7beee62507d3", "value": "A unit of information or computer file storage equal to one billion bytes. "}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "ba2cb744-4512-41d1-9a15-3b48d04ed62b", "value": "http://vocab.getty.edu/aat/300265874"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/581d3c26-5265-4979-aa1a-8a0409583c48"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/62793e6b-097a-4045-be89-bcb0b4bc5cef"> - <skos:prefLabel xml:lang="de">{"id": "0794b407-31cf-437b-a8dd-f45a90f6b5d2", "value": "Pixel"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/625da1d2-1c85-4629-91de-c970ff84d1f6"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b723ac18-c0ae-4ce3-a205-cfc9cc16dc80", "value": "http://vocab.getty.edu/aat/300266190"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "28f0d3b3-d57f-4337-a988-418da825cea3", "value": "pixels"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "e638fcc3-751f-46e6-af16-f5302b077c0a", "value": "The smallest units of an electronic display of digital imagery. In a black and white display this unit registers as either on or off. With a color display, the number of colors that may be displayed are limited by the screen's 'pixel depth,' measured in bits. The resolution of computer displays is also measured in pixels: the higher the number of pixels, the greater the resolution of the image displayed."}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "e7e5556d-2ca0-4bdc-b501-c728da6c5e47", "value": "Bezieht sich auf das Ma\u00df der kleinsten Einheit einer elektronischen Anzeige von computererzeugten Bildern. Auf einem Schwarz-Wei\u00df-Monitor ist diese Einheit entweder an oder aus. Bei einer Farbanzeige wird die Anzahl der Farben, die angezeigt werden k\u00f6nnen, durch die \"Pixeltiefe\" beschr\u00e4nkt, die in Bit gemessen wird. Die Aufl\u00f6sung des Computerbildschirms wird ebenfalls in Pixeln gemessen: je h\u00f6her die Anzahl der Pixel, desto gr\u00f6\u00dfer ist die Aufl\u00f6sung des gezeigten Bildes."}</skos:scopeNote> + <skos:narrower rdf:resource="http://localhost:8000/8ba7ae28-7ab0-409c-9259-023ddb0c44b5"/> + <skos:prefLabel xml:lang="en">{"id": "3e14005d-31ed-46ff-b38b-690bc12ac090", "value": "Group Role"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "23866b01-3dd6-4914-8d82-04e5f5ddf1b9", "value": "http://localhost:8000/625da1d2-1c85-4629-91de-c970ff84d1f6"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/03c51652-484f-4b24-98ea-f3bf5bcf2d7c"/> + <skos:narrower rdf:resource="http://localhost:8000/4f861b2d-0400-41f7-a08b-a871f1e51316"/> + <skos:narrower rdf:resource="http://localhost:8000/23e4a3b3-ad56-456f-b9ae-88211f0dc40d"/> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/0c742f97-1424-4fc3-a897-8f8a453f58e2"/> - <skos:narrower rdf:resource="http://localhost:8000/aaf5444e-3e94-4f4b-905c-c5c5c7c35ec8"/> - <skos:prefLabel xml:lang="en-us">{"id": "59400d4a-bdc7-46ca-8e68-1c7ebaa44b08", "value": "Digital Units"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/0c07fee2-14e2-4af3-b987-5d6d00958b45"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2cef2cdf-cdda-4e25-a135-ef71a8305497"> - <dcterms:identifier xml:lang="en">{"id": "c5b8c7fd-8a4d-4550-b17c-f27387a1b954", "value": "http://vocab.getty.edu/aat/300412058"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/ff5eb57a-f143-4890-b80a-e4f1f4ba7fd9"> + <skos:narrower rdf:resource="http://localhost:8000/409ff344-73cb-4d92-82d1-abb5a80c744b"/> + <skos:prefLabel xml:lang="en">{"id": "9e88f9f8-8f2f-4b45-8945-5be4b2db8969", "value": "Group Leaving Types"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/4be949ac-5737-4415-b2af-6055bfddcad0"/> + <dcterms:identifier xml:lang="en">{"id": "aa4b0acb-37fb-46eb-b2ee-f0f7aedb54bb", "value": "http://localhost:8000/ff5eb57a-f143-4890-b80a-e4f1f4ba7fd9"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "ba4f06df-c240-4f27-b5ea-aca41c5099bf", "value": "pixels per centimeter"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "10976056-e97c-4ad0-8bbd-770896cf1d65", "value": "The resolution of electronic imaging devices such as computer monitors, digital cameras, televisions, or scanners, expressed as the number of pixels per linear centimeter. Pixels per centimeter also describes the resolution of image files."}</skos:scopeNote> + <skos:narrower rdf:resource="http://localhost:8000/5f14cdc5-0430-4623-80d2-290510b99807"/> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/f6ae1e05-4657-464d-858e-f1426de3e9d3"/> + <skos:narrower rdf:resource="http://localhost:8000/7a18d2f2-e8d2-4ae7-a7ce-e4d02083149e"/> + <skos:narrower rdf:resource="http://localhost:8000/51eb7a71-66e1-45ba-97c7-f92edcf4cdec"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/191c70d0-82cd-4eeb-8a71-48f794f15211"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "7d6f969d-ee01-43c4-90fb-e70ffae7dfeb", "value": "http://vocab.getty.edu/aat/300055647"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "d2376975-2a9b-4240-8fef-05034e5361f6", "value": "width"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "0d0570bf-b727-4f40-985f-1749a951fbb1", "value": "The length of a straight horizontal line extending from one side to the other of a form. For the measure or distance of the extent across a surface, prefer \"breadth,\" although usage overlaps."}</skos:scopeNote> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/441678a1-9b81-4f67-8747-fc72e86757b5"> - <dcterms:identifier xml:lang="en">{"id": "3df0ea3b-d258-4ef7-ab54-45fb00ec4382", "value": "http://vocab.getty.edu/aat/300041567"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "7b24b75c-f58e-4111-8938-36a70f11f187", "value": "gravures originales"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "c07dd0f2-f3f7-4b52-9d67-5c4a80a095c6", "value": "Used to distinguish prints that are original creations, for example prints by Rembrandt or D\u00fcrer, from \"reproductive prints,\" which are intended to copy a painting or drawing for mass circulation. In other contexts, for prints produced with the intention of their being works of art, simply use \"prints.\" In the 1960s, the term \"original print\" was defined by the Print Council of America as those prints for which the artist alone had created the plate or other master image to print from, and that photomechanical processes were not be used. Modern printmaking techniques blur this artistic distinction, but the term is still used to make the distinction with 17th- to 19th-century reproductive prints."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/2f7aa8c7-8162-41a2-a742-92103bc838e2"> + <skos:prefLabel xml:lang="en">{"id": "4ec8b858-407e-4b1a-bd98-1a50ed25e3b0", "value": "scanning"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "397cb0a9-53b7-4f68-b206-1fe0b8f4cf42", "value": "http://vocab.getty.edu/aat/300417742"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "eb3234f9-a181-4e5d-bf26-96477d614015", "value": "Process of analysis done by transversing the scanned subject by a detector or an electromagnetic beam; scanning is done to determine the nature, qualities, measurements, etc. of an object, living subject, area, or other thing; the analysis may involve the recording of information derived from the scanning."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "df6b109c-0753-4735-8427-5e46d83e6d04", "value": "original prints"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/54b03ff5-24de-427f-b8c9-1d6fba460bc1"> - <skos:prefLabel xml:lang="en">{"id": "fa391dbc-4de5-4789-8543-227cff5007db", "value": "hermaphroditic"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "da21079d-9e42-461f-b1ca-3a261852cca4", "value": "http://vocab.getty.edu/aat/300389935"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/48ded04e-6487-4640-b5e1-37818ce87ade"> + <dcterms:identifier xml:lang="en">{"id": "81bd055a-1171-4103-8258-a248d027df35", "value": "http://vocab.getty.edu/aat/300404662"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "b626862d-73ca-404b-8edb-8fcad03d6672", "value": "Appellations, words, or phrases that follow a personal name. For example words or numerals denoting family relationships, usually between members having the same first name, such as the senior and junior of two indicated persons."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "33d05303-9f97-4d83-ad34-399e87fb54b7", "value": "suffixes (name additions)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "2fa75e0d-2575-4eb8-a04a-29ddb7ddcac4", "value": "Belonging to or of the nature of a hermaphrodite, combining male and female characteristics."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/ebf23273-18df-4605-a8d0-852c46e94b07"> - <skos:prefLabel xml:lang="en">{"id": "5a1111ef-6497-473f-b3c7-b404a39dcd94", "value": "pointillism (painting technique)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "528a24a4-f8bd-4125-bff2-e185cbf75af1", "value": "http://vocab.getty.edu/aat/300067450"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "386b5b0a-0eef-4b67-917b-672016717ceb", "value": "Painting technique whereby tones and hues are obtained by applying regular small dots or touches of unmixed pigment on the canvas so that they combine optically. The French critic F\u00e9lix F\u00e9n\u00e9on coined the term \"peinture au point\" in 1886 after seeing Seurat's \"La Grande Jatte.\" Paul Signac offered the alternative term of \"divisionism\" in his book \"D'Eug\u00e8ne Delacroix au N\u00e9o-Impressionnisme (1899), although in modern usage \"pointillism\" is reserved for the technique involving dots applied in a controlled manner, while \"divisionism\" refers to use of marks of unmixed color in Italian painters\u2019 works."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/02040456-2800-4934-9a95-70b2af7e8966"> + <dcterms:identifier xml:lang="en">{"id": "7ed197f4-d22f-4aae-96fd-b0441f239e9f", "value": "http://vocab.getty.edu/aat/300404686"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "5740cf15-b1cf-47f3-be39-90b636242637", "value": "pointillisme"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b75068d8-5887-48c2-a36c-c9e161a2a8ef", "value": "Names for people, places, or things that are legal or otherwise formally sanctioned."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "57ba00a3-f33e-481c-b2f0-770ce5f4ccf7", "value": "official names"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/75613ffa-549e-42cd-8a5a-b9ff66ae8c07"> - <dcterms:identifier xml:lang="en">{"id": "0c091350-5f32-4485-849a-46fa7405ee20", "value": "http://vocab.getty.edu/aat/300077463"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "d4da6cdf-b584-46f3-a879-b7c3a8193742", "value": "fieldwork (research)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "e370d115-238d-4b62-831e-77994b787cb0", "value": "Studying or investigating a particular subject in its natural setting."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/81c81e47-be9c-493e-915f-8e5a2338d7c9"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/3c86859c-7cb7-4595-9c88-1c4780c19ee0"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/477438d2-c018-456e-8513-ae7f563a66c5"> - <skos:prefLabel xml:lang="fr">{"id": "741a8a51-4ecc-4f5e-a9e2-5eedec2344e0", "value": "document num\u00e9rique"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "760bc618-6454-4f33-bbbe-cca05833a39b", "value": "http://vocab.getty.edu/aat/300424602"}</dcterms:identifier> - </skos:Concept> - </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "f49973d1-5b36-49b4-b797-11b4a5c9eb05", "value": "http://localhost:8001/81c81e47-be9c-493e-915f-8e5a2338d7c9"}</dcterms:identifier> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0c682c76-a6a4-48f0-9c5b-1203a6dc33da"> - <skos:narrower rdf:resource="http://localhost:8000/b8a8e087-6e8f-41db-98ff-202785afddbb"/> - <dcterms:identifier xml:lang="en">{"id": "988591aa-beb8-4769-bc89-61d40569f4b0", "value": "http://localhost:8000/0c682c76-a6a4-48f0-9c5b-1203a6dc33da"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "305c62f0-7e3d-4d52-a210-b451491e6100", "value": "IIIF Manifest"}</skos:prefLabel> - <arches:sortorder xml:lang="en">{"id": "ee578a80-9a4e-4363-86d0-7cdf5f4fab2d", "value": "2"}</arches:sortorder> - <skos:narrower rdf:resource="http://localhost:8000/106feb03-935f-49c4-8e15-c30ee42adc66"/> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - </skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/0f3d6d10-5daf-45af-ba4d-c1543ba83374"> + <skos:narrower rdf:resource="http://localhost:8000/69cc3065-9bca-4983-adfa-65e7a50ee9fe"/> + <skos:narrower rdf:resource="http://localhost:8000/3d0d006d-cd13-4b0b-88c4-0fa458c9bef6"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/17060cf6-23de-457f-b98f-8bce7b99d325"> - <dcterms:identifier xml:lang="en">{"id": "b93e9c3e-bd7e-4ecd-8106-2c7535e9018e", "value": "http://localhost:8000/17060cf6-23de-457f-b98f-8bce7b99d325"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "b9446853-482b-4845-be26-cd28c765f747", "value": "digital document"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/441678a1-9b81-4f67-8747-fc72e86757b5"> + <skos:prefLabel xml:lang="en">{"id": "df6b109c-0753-4735-8427-5e46d83e6d04", "value": "original prints"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "7b24b75c-f58e-4111-8938-36a70f11f187", "value": "gravures originales"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "c07dd0f2-f3f7-4b52-9d67-5c4a80a095c6", "value": "Used to distinguish prints that are original creations, for example prints by Rembrandt or D\u00fcrer, from \"reproductive prints,\" which are intended to copy a painting or drawing for mass circulation. In other contexts, for prints produced with the intention of their being works of art, simply use \"prints.\" In the 1960s, the term \"original print\" was defined by the Print Council of America as those prints for which the artist alone had created the plate or other master image to print from, and that photomechanical processes were not be used. Modern printmaking techniques blur this artistic distinction, but the term is still used to make the distinction with 17th- to 19th-century reproductive prints."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "3df0ea3b-d258-4ef7-ab54-45fb00ec4382", "value": "http://vocab.getty.edu/aat/300041567"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/7b5c17fd-f3ab-4745-85f9-88a6c30e0842"/> + <skos:narrower rdf:resource="http://localhost:8000/14aaf84d-4bd1-40c4-8f6e-6e0e368a49d4"/> + <skos:narrower rdf:resource="http://localhost:8000/1dfca74c-101d-4089-b553-d03156750e19"/> + <skos:prefLabel xml:lang="en">{"id": "adcb7c47-63dd-4f94-afe6-35b8bfba49cc", "value": "Visual Work Type"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f7dda933-9221-4555-a828-493962ab9411"> - <skos:scopeNote xml:lang="en-us">{"id": "5a117a8f-067b-4363-a011-fa6c45027f90", "value": "No AAT Identifier yet"}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/6897ba2a-f1ca-4011-a863-b32a5970ee8a"> + <dcterms:identifier xml:lang="en">{"id": "c9970c1e-d758-45da-9361-45c2af23b562", "value": "http://localhost:8000/6897ba2a-f1ca-4011-a863-b32a5970ee8a"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "b50a6014-eb9f-44d0-b49b-182028c4720b", "value": "Spreadsheet"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "df1cfeab-ec18-4545-8252-3e1110ec8576", "value": "http://localhost:8000/f7dda933-9221-4555-a828-493962ab9411"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7fe1d184-e56b-465b-8aa1-da893cd72874", "value": "Visual Work Techniques"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/9d30b6a3-e948-4a87-97a8-f145984694bb"/> + <skos:narrower rdf:resource="http://localhost:8000/30c6d071-88cf-4778-912b-b04bd4b856cd"/> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "074a5e0e-8593-4489-940c-16cf0bb9aab1", "value": "Digital Resource Types"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/0ed12180-2d92-46d9-9ad4-72594487fe8f"/> + <skos:narrower rdf:resource="http://localhost:8000/0e5d03f3-613c-4e36-9783-e93e317b56a6"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/be7a77f4-4af8-459a-a420-a762b92e1aa6"> + <skos:Concept rdf:about="http://localhost:8000/0c61f836-7b2e-44ce-a05d-7dda2bd5c25c"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "80ddf5fd-4729-4e3b-9a4e-34ca170e0146", "value": "Document"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "4bc8f3e2-b5f1-4056-9430-ac32529fb9ac", "value": "http://localhost:8000/be7a77f4-4af8-459a-a420-a762b92e1aa6"}</dcterms:identifier> - <skos:scopeNote xml:lang="en-us">{"id": "10c2ed74-9997-48a9-bcd8-15354f7959e8", "value": "ADD AAT URI"}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "2d251e36-b522-4ec5-8f06-3053a54d8645", "value": "http://vocab.getty.edu/aat/300041273"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "2c3d6203-2eb0-4aca-a65c-9ba8c6a22f3d", "value": "prints (visual works)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "d1d516e0-7392-4a72-af1e-c470b886b890", "value": "gravures (g\u00e9n\u00e9ral, \u0153uvres visuelles)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ebb605c1-792b-4ee6-ae2a-faacd240feab", "value": "Pictorial works produced by transferring images by means of a matrix such as a plate, block, or screen, using any of various printing processes. When emphasizing the individual printed image, use \"impressions.\" Avoid the controversial expression \"original prints,\" except in reference to discussions of the expression's use. If prints are neither \"reproductive prints\" nor \"popular prints,\" use the simple term \"prints.\" With regard to photographs, prefer \"photographic prints\"; for types of reproductions of technical drawings and documents, see terms found under \"reprographic copies.\" "}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "d3bd253e-2507-4493-b2ab-ce36f36ec171", "value": "druckgraphischen Bl\u00e4ttern"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/21121df1-9699-469d-924c-50f575c1ba83"/> - <skos:narrower rdf:resource="http://localhost:8000/662b53c0-2e26-4b87-a6d0-109b7f611e05"/> - <skos:narrower rdf:resource="http://localhost:8000/b49383a7-a83e-4c1b-a705-e4c21d49ba17"/> + <skos:narrower rdf:resource="http://localhost:8000/e257b6bf-0e30-495e-8cce-308328449649"/> + <dcterms:identifier xml:lang="en">{"id": "252846b9-21cf-4179-a859-5cf630ef5682", "value": "http://localhost:8000/0f3d6d10-5daf-45af-ba4d-c1543ba83374"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1b0aaa1b-cc86-4b07-a317-142261d3f580"> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a5ed5507-0574-4726-ae98-fa0cd971c349"> - <dcterms:identifier xml:lang="en">{"id": "6b82a322-0a2f-48e7-a434-9fd6fbc43189", "value": "http://localhost:8000/a5ed5507-0574-4726-ae98-fa0cd971c349"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "e2abb542-6429-497f-b7b6-168f5b900152", "value": "Asian Indian"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/e6f035a6-b69d-494c-a168-55e9f1cdf3fa"/> + <skos:Concept rdf:about="http://localhost:8000/599b2119-6e98-430b-8ae6-61bcdce15a47"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "087e7294-6117-4a2c-bf20-c42dfce89e0a", "value": "The constituent political and administrative units of various nations under a federal system of government, such as Australia and the United States of America."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "aa58778d-f270-4e74-bcf1-b28da7aa87fd", "value": "etats"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "777c9bbd-dd5c-44b7-829c-f492f3473693", "value": "http://vocab.getty.edu/aat/300000776"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "b0efd575-d2e3-4c5c-8a5b-9b6b39bc9330", "value": "states (political divisions)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/8e39291b-e186-4571-b03d-e7b5b74b030e"> + <skos:prefLabel xml:lang="en">{"id": "04e6260b-b10b-4fa8-aba8-62eae2de8d06", "value": "pixel density"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "890d6c07-e3c1-4879-bb6f-fe76e8b9eb45", "value": "http://vocab.getty.edu/aat/300412057"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "f9b589f3-f870-4ed6-9530-7d9b50413578", "value": "Refers to the resolution capability of electronic imaging devices such as computer monitors, digital cameras, televisions, or scanners, expressed as the number of pixels per linear distance (pixels per inch or pixels per centimeter). Pixel density can also describe the resolution of image files."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/6a0a4e8b-dfc5-4b38-9c26-98cb05592621"> + <skos:prefLabel xml:lang="de">{"id": "b0fc54cc-5bc5-41b8-b90d-d6116b7c9fc2", "value": "E-mail"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "19e04225-a821-491d-b653-b17d4fe4d1d1", "value": "electronic mail"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "87937761-c289-43d1-a8bf-d69f02f53ea8", "value": "http://vocab.getty.edu/aat/300149026"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="fr">{"id": "439eda99-f9f8-4db9-88a0-4e434459963c", "value": "messagerie electronique"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "337c1221-e4a3-439d-8ddc-e69de60a52d6", "value": "Communication by means of a system that allows computer users to exchange messages in electronic format on a network, often but not always comprising messages from one individual to one or many others via telecommunications links between computers or terminals."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/15f52617-f1cf-40c6-b31f-eccd2dc8c252"> + <skos:scopeNote xml:lang="en">{"id": "91d1c3fa-bd02-4f41-b239-4cf9c29f1954", "value": "Detailed examination principles and empirical processes of discovery and demonstration considered characteristic of scientific investigation, generally involving the observation, formulation of a hypothesis, experimentation, and development of a conclusion."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "b80336e8-7919-4c03-a932-0dc04e3f90f6", "value": "scientific analysis"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "d5d20b1b-7296-40e6-be98-bdcb98020415", "value": "http://vocab.getty.edu/aat/300379372"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/ca08a220-303e-4bee-92d9-8bd4f5302b49"> + <dcterms:identifier xml:lang="en">{"id": "c7076e3b-5b0a-4647-beff-aa34effa3ce9", "value": "http://vocab.getty.edu/aat/300226216"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "b254a950-f51e-446c-81b3-3f72101a2193", "value": "examination (function)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "8600b1d1-997c-40bf-bdde-02feaeec609e", "value": "Scrutinizing a situation or object, usually in order to determine its nature, qualities, or current condition."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/56f1db33-4d80-4871-bcb5-63ed73c67fec"> + <dcterms:identifier xml:lang="en">{"id": "4e2d165b-48ff-47a5-a68d-9ba2b1e8e473", "value": "http://vocab.getty.edu/aat/300054200"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "e2794667-31c5-4a41-ac69-95313e05d033", "value": "illustration (process)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "951320b9-9d10-4f5d-9f1a-1dd0c7f5c982", "value": "The art or process of providing drawings or other pictures intended to elucidate a description, story, or other written material, usually in a book or periodical."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/102d6dc8-5a56-418e-afbf-799398a37ba8"> + <skos:scopeNote xml:lang="en">{"id": "e7f238d3-9902-4baf-9d24-27e95a6a9441", "value": "In the composition of pages, matter set apart from the text as a title or a summary of the text that follows."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "092b08a4-2fd3-47d4-bbf6-08da014a447f", "value": "http://vocab.getty.edu/aat/300200862"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "af7817d7-8798-4e2d-8532-6a3b2658b6c8", "value": "headings"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/0c67ce57-dcd1-4cac-8e4c-899acacfe7d9"> + <dcterms:identifier xml:lang="en">{"id": "973fb04d-ca87-4df5-b028-5c16ee68fec0", "value": "http://localhost:8000/0c67ce57-dcd1-4cac-8e4c-899acacfe7d9"}</dcterms:identifier> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/8c59ec9a-c7df-4c52-9104-6b7de8ee8151"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b9d7371e-bd2b-47ab-aff0-6f63f986b484", "value": "http://vocab.getty.edu/aat/300019239"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "a1d0092f-2ec0-4bd1-b5ab-c52fe58b6879", "value": "Vietnamese (culture or style)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "971c87b2-466d-4006-8773-4d89cb829b10", "value": "Refers to the cultures that developed in the region situated along the eastern coast of the Indochinese Peninsula known as modern North and South Vietnam. Artistic production in this region features a broad scope and an intermingling of styles, featuring dynastic temple construction that included variations of tower shrines, sanctuaries, porticoes, molded capitals, and recesses, and grandiose and refined sculptural programs featuring monster figures that decorated corners of architraves, figures of lions, solid snake-like ornamentation reminiscent of Indo-Khmer foliage motifs and Dong Song styles, and large icons and relief panels carved in sensual styles suggestive of Chen-la works. From the 15th through 18th centuries, architectural planning incorporated Confucian and Taoist elements and sculptural styles of this period feature elaborately-colored woodwork based upon the dragon-and-cloud decoration of the Ming and Ch'ing Dynasties of China."}</skos:scopeNote> - </skos:Concept> - </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "896c4df3-d4ef-4166-af3e-ba81339c356e", "value": "Ethnicities"}</skos:prefLabel> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/46a2da83-1594-4823-8480-1407d3f1d671"> - <skos:scopeNote xml:lang="en">{"id": "640489d5-b65c-4a2e-848d-11c920654ffb", "value": "General designation for the race, ethnicity, styles, culture, and heritage of people of sub-Saharan African origin or descent in places outside Africa, or of members of any dark-skinned group of peoples, including those of Australian Aboriginal origin or descent."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "6017dc3d-3bfe-46de-b0d0-b6995a7069c4", "value": "Black (general, race and ethnicity)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "eccf9e13-685e-4ecd-85a6-41645412c466", "value": "http://vocab.getty.edu/aat/300435249"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/ba1b2532-fc57-4968-a104-3012d795762b"> + <skos:Concept rdf:about="http://localhost:8000/5d471d02-cb7e-48bf-8fba-c367ffde2c07"> + <skos:prefLabel xml:lang="en">{"id": "90a88521-b5b2-4190-a546-f2b3d3324315", "value": "counties"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0e17c0b6-0053-4a9c-abe8-7a1fc6fc7227", "value": "http://vocab.getty.edu/aat/300000771"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "c56f1837-19e2-4919-9e50-e72d2565df9b", "value": "The domains or territories of counts. In current usage, usually refers to particular divisions that have been made to an area for administrative, judicial, and political purposes. In Britain, counties are defined by various official methods, and serve as the most important divisional units in the country. In the United States, counties are the political and administrative divisions below the state and above the city; a few U.S. states call such divisions \"districts\" or \"parishes\" rather than \"counties.\""}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "cb6a9eb8-2fbe-4f1e-b530-960580e8dfb4", "value": "Chinese (culture or style)"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "f88bc948-569a-4b8d-b25b-6227c6ff8c3f", "value": "chinoise"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "0e798873-7d24-447e-a6cf-95af8c1b6a99", "value": "The cultures, styles, and periods characteristic of China. To specifically refer to the cultures of ancient Chine, use \"Ancient Chinese.\""}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "cd620b94-8578-4abc-b264-5cc43f9c4e73", "value": "http://vocab.getty.edu/aat/300018322"}</dcterms:identifier> </skos:Concept> </skos:narrower> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a210183c-c615-46f6-ac2c-e3c378817e34"> + <skos:Concept rdf:about="http://localhost:8000/365b90c8-adb8-4ce0-9896-db786023f0fc"> + <skos:scopeNote xml:lang="de">{"id": "dc79d904-ab3b-4d54-b953-76c4c77eba4a", "value": "Geb\u00e4ude, in dem eine Organisation oder Gesellschaft untergebracht ist oder in dem regelm\u00e4\u00dfig Treffen zur F\u00f6rderung einer speziellen literarischen, wissenschaftlichen, k\u00fcnstlerischen, fachgerechten oder p\u00e4dagogischen Aufgabe veranstaltet werden, die ein \"Institut\" kennzeichnet."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a80f6f10-0bfa-4e24-bd2f-a184b415fbcc", "value": "institutes (buildings)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b708eecc-1f49-4a4c-85e8-401b0066f30c", "value": "Buildings housing organizations, societies, or regular meetings for the promotion of a particular literary, scientific, artistic, professional, or educational endeavor that is labeled an \"institute.\""}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "47575bc7-cab2-4495-98e2-5d684a8e677a", "value": "Institut (Geb\u00e4ude)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "01d2f71f-55bf-4987-a1c6-2062e611fa35", "value": "Styles and cultures that developed in Spain and elsewhere under Spanish influence, especially those that developed under the influence of colonists from Spain and their descendants in the Americas."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "99c9385b-27d4-4527-9a0b-b26d7b77190b", "value": "http://vocab.getty.edu/aat/300386138"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "bb787c86-e3a5-4f29-9ac3-d2630dc2ae0a", "value": "Hispanic"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "807f9aa8-29e7-4dc9-b365-49652f391159", "value": "http://vocab.getty.edu/aat/300312291"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/ab4e604c-8af4-4b55-8d62-a9875c260552"/> - <dcterms:identifier xml:lang="en">{"id": "6fb78ee3-78f5-473a-a105-d5fd71619678", "value": "http://localhost:8000/1b0aaa1b-cc86-4b07-a317-142261d3f580"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/599b2119-6e98-430b-8ae6-61bcdce15a47"/> + <skos:prefLabel xml:lang="en">{"id": "20521491-63a3-4985-9174-b0fd0c5bf9f0", "value": "Place Type"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/b759fb17-8868-45f9-889a-c4550b324e7c"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f7bc2695-ae97-4901-946d-805cde489257"> - <skos:prefLabel xml:lang="en">{"id": "2d5ecf35-07f8-42ca-bfdc-69ebac527b82", "value": "Mexican"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "b3dd8066-c92b-4582-84c1-b90e531df9e9", "value": "http://vocab.getty.edu/aat/300107963"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "85f88871-2d8b-4139-af2a-2fef87dca629", "value": "Culture and nationality of the nation of Mexico or its people."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "e10bf60e-1ec1-40fb-b711-554356398596", "value": "mexicaine"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/25e3f334-ac84-49ff-abdb-85959a16cb8a"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "6db830e4-ed31-4c06-a197-c3847522e668", "value": "http://vocab.getty.edu/aat/300312302"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "17762714-8d78-4934-ba0d-ee4935165ca6", "value": "Institutions that collect and maintain works of art displayed for public benefit."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "e0b3ff53-33b2-4bd9-9a60-0ea50005595e", "value": "art museums (institutions)"}</skos:prefLabel> + <skos:scopeNote xml:lang="de">{"id": "e93f0773-b7f8-409f-8c04-36be5e7def19", "value": "Einrichtung, die Kunstwerke im \u00f6ffentlichen Interesse sammelt und bewahrt."}</skos:scopeNote> + <skos:prefLabel xml:lang="de">{"id": "c566ab4c-02d1-4c08-bca1-249898f0b668", "value": "Kunstmuseum (institution)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/9517a001-391c-4b5b-9939-b62e832721c1"/> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/aec56d59-9292-42d6-b18e-1dd260ff446f"> + <skos:prefLabel xml:lang="en">{"id": "285f5303-f3db-41ba-9cf1-e01b7bf9ac37", "value": "x-ray fluorescence"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "cab420c2-2891-4fee-b06b-914716b15842", "value": "http://vocab.getty.edu/aat/300224161"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "486e69eb-11af-4cd4-a0fa-f2722c9b6c2b", "value": "Fluorescence stimulated by x-rays; when the emissions are examined by spectrometry, useful in determining chemical composition of a substance."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f8b729da-4edc-4718-bcd3-569ddff655cd"> + <skos:scopeNote xml:lang="en">{"id": "ed4df749-cac9-480e-a486-687c04e166b6", "value": "Causing discrete agents or agencies to work together."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "f11e3782-0efa-458d-a2e3-ea7dc4b9e651", "value": "coordinating"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "ca91b5e6-e0ed-49ba-b2ce-c0d000ded557", "value": "http://vocab.getty.edu/aat/300077136"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/04823117-0f18-42b6-b42e-f9f51bde4c16"> + <skos:narrower rdf:resource="http://localhost:8000/5f400d39-3b6b-4b8a-939b-4e49787c7444"/> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "72082ff7-c840-46c4-8dd7-3c600d244b35", "value": "Name Types - Generic"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/18610abd-e0e5-48bb-9a7a-3830d75755d0"/> + <dcterms:identifier xml:lang="en">{"id": "c07e88e4-9d1d-413f-b633-387f585b9170", "value": "http://localhost:8000/04823117-0f18-42b6-b42e-f9f51bde4c16"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/ae171d08-208e-48b4-ab41-43c34a2e2559"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/89462b0b-71a7-4872-a6ca-18ded17f7568"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "a9070cb7-3697-4451-b912-b4025b5768e8", "value": "The activity or function of representing in spoken, written, or signed language the attributes or qualities of something or someone."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "81c21388-7769-488b-b0d8-5304b51e1807", "value": "description (activity)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "f502634e-635d-4499-88a8-09601c30e1c2", "value": "http://vocab.getty.edu/aat/300080091"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/a7860a50-de38-404a-a207-592c2fabd2b4"> + <skos:prefLabel xml:lang="en">{"id": "e2bd295a-93b0-47cb-b3d4-468f26da843d", "value": "illumination (image-making process)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "e2072547-ae47-4ce8-af30-74f382795767", "value": "http://vocab.getty.edu/aat/300220539"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "5a288134-9a1b-4023-9bd9-8561bca41394", "value": "Action or process of creating illumination, which comprises paintings and other adornments applied to books, scrolls, or other document types for the purpose of illustrating or decorating the text. "}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/4490453e-608e-40d6-9e39-79af0f1cc9fe"> + <skos:prefLabel xml:lang="en">{"id": "767f2c7f-c701-4719-bf71-da6f7eac6794", "value": "identification"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c2f3ddb5-cf14-42e0-8f69-60c339025c76", "value": "http://vocab.getty.edu/aat/300137570"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "748fc851-88cd-458c-950e-dc7a8ed57bd6", "value": "Recognizing or establishing someone or something as being a particular person or thing."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e4ff9005-d58f-45b4-8dd0-6178fe8f4da9"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/0e95cff7-5df1-4281-a896-d3bbb295b11e"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f727ef24-5040-430b-975b-741eb542cd2d"> - <skos:prefLabel xml:lang="fr">{"id": "71f496bf-078b-4934-bb2a-65916d8d09b0", "value": "europ\u00e9enne"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "ea73b356-c2fb-4bd9-8351-5da7725545b7", "value": "http://vocab.getty.edu/aat/300020656"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/6624ac22-3a56-41c9-865d-935d89b56161"> + <skos:prefLabel xml:lang="en">{"id": "a9886448-289a-4691-b1f9-7bce30cd055a", "value": "infrared radiation"}</skos:prefLabel> + <skos:prefLabel xml:lang="en-us">{"id": "eb858343-6582-4dde-86d2-a8519e0e2e3c", "value": "infrared radiation"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c3cc94c2-1867-4a48-a8f1-fbf3940a3535", "value": "http://vocab.getty.edu/aat/300225890"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "7c7ecd04-b93c-4df0-ac91-e6edc09cf7ff", "value": "Styles, periods, and cultures of the continent of Europe, which is in the northern hemisphere, is bounded by the Arctic Ocean, the Atlantic Ocean, and the Mediterranean Sea, and is generally considered to be delimited on the east by the Ural Mountains."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "a0d7266c-773d-4db3-90e4-9dbbd9c27310", "value": "European"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ef9ba772-191a-45fe-bef7-bae98d019527", "value": "Refers to that portion of the electromagnetic spectrum beyond that visible to the human eye. Infrared radiation has waves longer than red light and shorter than the shortest microwaves. Though not visible, it may be detected as the sensation of heat."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/5d9da344-2f3a-4f35-a5cd-3cb3f4a3535c"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/95950aa4-9344-4258-be98-829c70c69c8e"> - <skos:prefLabel xml:lang="en">{"id": "ae296b54-ab45-43a3-8875-bf8a300b0ebb", "value": "Asian-American"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "474e0af8-23ec-4df6-9dcc-2425e140ce79", "value": "Designates the styles, culture, and heritage of Americans of Asian descent in North America."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/0f419fca-4b00-422d-8353-0b24a18d7e8e"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "1134c6f5-4ef0-49db-8c40-cc2683831e9a", "value": "http://vocab.getty.edu/aat/300385962"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "15822f2c-7700-4f9b-8464-6790ea118463", "value": "scraping"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "3e664915-e607-4bd5-94bc-12a10cbd3173", "value": "Process of removing an outer layer by drawing the edge of some instrument held nearly perpendicularly across the surface."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "d1ce55fe-9dad-4204-9df3-3c42883438ab", "value": "http://vocab.getty.edu/aat/300053711"}</dcterms:identifier> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/14197ada-900e-4783-94b7-454707317007"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/352621c3-34c4-4e82-8637-247f816650ad"> - <skos:prefLabel xml:lang="fr">{"id": "eed8a71e-fdab-4e66-884a-3156278d2fdc", "value": "russe"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "0c67112e-ee65-4863-9b66-cb99ef233aab", "value": "Refers to the culture of the modern nation of Russia, or to the cultures that have occupied the principal lands of historic Russia in eastern Europe and northern and western Asia. It may also be used to refer to the larger group of cultures controlled by the historic Soviet Union."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "d2b9a706-c56a-4e3d-97d2-3d491b2a5cd0", "value": "Russian (culture or style)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "da6d2a3d-69ec-4e6b-8e24-f7f9139cd725", "value": "http://vocab.getty.edu/aat/300111276"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/a7c83cb3-d116-4fb4-907c-c394fa3a63e0"> + <dcterms:identifier xml:lang="en">{"id": "a68bb2d9-fdc8-4c75-a05d-8623be7debd1", "value": "http://vocab.getty.edu/aat/300230031"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "3f3ea410-bf40-46d4-9e26-4377047f9908", "value": "insect damage"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a3b3667e-525b-4e46-832a-a69051651e5d", "value": "Damage caused by insects."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/41bc72c3-eb83-42b6-96c3-639bc9888ed6"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b53e679f-73d0-4933-a39c-facf23ce0c49"> + <skos:Concept rdf:about="http://localhost:8000/1682fbb6-52a3-46be-9488-8e50d1804172"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "445dae1b-633d-41a2-a898-b5d984d5c945", "value": "Refers to the hybrid style and culture of the Philippines reflecting the region's influx of trade and exchange with Chinese, Islamic, and Hindu cultures. Domestic folk arts of the archipelago nation reflect Indianized geometric motifs in textiles, weapons, and containers. Pre-colonial architecture featured megalithic monuments similar to late Tantric east Javanese tjandis. Painting and sculpture in the region reflect Indian erotic imagery, Buddhist images, and ornamental, curvilinear designs. Ceramic styles were often imitations of Chinese Sung Dynasty designs. As a result of Spanish colonialism from the 16th to 19th centuries, art later predominantly reflected Spanish Christian iconography in painting and colonial churches and cathedrals in Neo-Byzantine and elaborate, flamboyant designs. Secular art gained prominence in the later 19th century and followed European or international business aesthetics."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "60ad63b3-251e-432a-9dc2-fdf611b6b576", "value": "philippine"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "e5392d60-c72b-44e5-ac02-3c345b805c2a", "value": "Philippine"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "9af59fa5-b23b-4829-b53c-7f1c554a322a", "value": "http://vocab.getty.edu/aat/300018772"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "4ae8a3f8-c1cc-4aa7-b6a8-cead1ba9347a", "value": "http://vocab.getty.edu/aat/300225890"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "53feb0af-2fc7-4093-91c9-610271f60529", "value": "Refers to that portion of the electromagnetic spectrum beyond that visible to the human eye. Infrared radiation has waves longer than red light and shorter than the shortest microwaves. Though not visible, it may be detected as the sensation of heat."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "1bebeb26-51da-4fc8-bd94-49797a3c0697", "value": "infrared radiation"}</skos:prefLabel> + <skos:prefLabel xml:lang="en-us">{"id": "2f6998a4-0985-48c7-a6d0-88155b831a31", "value": "infrared radiation"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/43a271b6-28f3-4524-b497-2d3e0902b6ca"/> + <skos:narrower rdf:resource="http://localhost:8000/f8004550-b659-4647-bc2c-d969b68c5714"/> + <skos:prefLabel xml:lang="en">{"id": "6fb47936-13ca-4413-8151-56d810433205", "value": "Destruction Types"}</skos:prefLabel> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/fbd4a835-713e-421a-9f0e-466b2b3845bf"> + <skos:Concept rdf:about="http://localhost:8000/254161a9-5063-42e7-a718-05e1b6baebea"> + <dcterms:identifier xml:lang="en">{"id": "cb7b3294-d1ff-4243-9ab7-61c8eeeccf7d", "value": "http://vocab.getty.edu/aat/300056056"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "27eb60a4-f2a5-4b45-a0d2-7e64bed66f23", "value": "Electromagnetic radiation with wavelength shorter than that of visible light and longer than that of x-rays."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "818371ea-2e7c-4bcc-b9eb-1abfe2c3fcd4", "value": "ultraviolet radiation"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "4e60ea1e-aa8c-46a9-8648-2eb24a9b7a33", "value": "http://vocab.getty.edu/aat/300386120"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "de2e85ac-1c34-4898-8744-b35397fd7d63", "value": "French-Canadian"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "629cf577-bc80-4cc9-aeb0-05cf0c6a5728", "value": "The culture of Canadians of French ancestry, or of early French settlers in Canada."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/e77ea94b-c9c7-4e1f-879d-0916d1550d49"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b178e756-d483-483f-b9e0-cb9f24963676"> + <skos:Concept rdf:about="http://localhost:8000/35159c58-3b68-4f2f-b6f6-10c2a873d5d7"> + <skos:prefLabel xml:lang="en">{"id": "49969144-2bbb-4d50-a6a1-cb69c22af75a", "value": "corrosion (condition changing process)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "d5ca3ee0-a861-4cb5-bd27-1e2ae59a6607", "value": "http://vocab.getty.edu/aat/300054107"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "3f5df203-c9f5-4d75-8853-1d721a194523", "value": "The culture and ethnic group of the traditionally itinerant people who originated in northern India but live in modern times worldwide, principally in Europe. Most Roma speak some form of Romani a language closely related to the modern Indo-European languages of northern India, as well as the major language of the country in which they live. It is generally agreed that Roma groups left India in repeated migrations and that they were in Persia by the 11th century, in southeastern Europe by the beginning of the 14th, and in western Europe by the 15th century. By the second half of the 20th century they had spread to every inhabited continent."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "c83a8f54-2cef-4def-8f20-2ae5da6c34f9", "value": "Rom (culture)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "25913304-02ad-4e1c-97db-2f6bd8da0f57", "value": "http://vocab.getty.edu/aat/300404070"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "0062b652-6b1b-4a78-97ed-5c8a01471487", "value": "The deterioration of metal or other substances by chemical or electrochemical reaction resulting from exposure to weathering, moisture, chemicals, or other agents."}</skos:scopeNote> </skos:Concept> </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "d4c11b7e-fe23-4ff5-ae6b-63983edf8215", "value": "http://localhost:8000/e4ff9005-d58f-45b4-8dd0-6178fe8f4da9"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/75613ffa-549e-42cd-8a5a-b9ff66ae8c07"> + <dcterms:identifier xml:lang="en">{"id": "0c091350-5f32-4485-849a-46fa7405ee20", "value": "http://vocab.getty.edu/aat/300077463"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "d4da6cdf-b584-46f3-a879-b7c3a8193742", "value": "fieldwork (research)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "e370d115-238d-4b62-831e-77994b787cb0", "value": "Studying or investigating a particular subject in its natural setting."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/efd96a8d-da15-4a59-a7e4-0e08a6e5c1c4"> + <skos:prefLabel xml:lang="pt">{"id": "026b9b7a-6a89-4d01-b153-32926467af40", "value": "artes gr\u00e1ficas"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "0da6cc2d-d162-439f-b470-fc54ac056aa1", "value": "Processes and techniques for making images using the arts of printmaking, illustration, drawing, and other techniques that depend upon line and not color to render the design. In historical usage, the term referred more broadly to presentation in two-dimensional visual form, including most arts on paper, panel, or canvas, including painting."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "e0d5510d-bc40-4f85-9a17-406ef7239781", "value": "http://vocab.getty.edu/aat/300264849"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "17d23f2f-78e7-4143-9069-ffbb614216f1", "value": "graphische K\u00fcnste"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "36da15e8-80f7-47db-99e6-649875a7da5c", "value": "graphic arts"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "84143327-c90c-40dc-a409-60dcd88e6c2e", "value": "arts graphiques"}</skos:prefLabel> + <skos:scopeNote xml:lang="pt">{"id": "7d737b1a-07e3-4d1f-853f-f31a783524a2", "value": "Processos e t\u00e9cnicas para criar imagens usando as artes da gravura, ilustra\u00e7\u00e3o, desenho e outras t\u00e9cnicas que dependem da linha e n\u00e3o da cor para renderizar o design. No uso hist\u00f3rico, o termo se refere mais amplamente \u00e0 apresenta\u00e7\u00e3o em forma visual bidimensional, incluindo a maioria das artes em papel, painel ou tela, incluindo pintura."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/44e1ef0f-091d-49f6-9365-921b5619d3a3"> + <dcterms:identifier xml:lang="en">{"id": "52e51dc2-35a5-4394-b306-e388d2a3de8f", "value": "http://localhost:8000/44e1ef0f-091d-49f6-9365-921b5619d3a3"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "bf173b8f-c883-468b-bf08-dea52f5864ff", "value": "XRF Dataset"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/340a38a7-8ed9-4a07-a4a4-a28c8fe77b28"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "94570a6a-d347-44f6-83ef-b95fce61d138", "value": "exact"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "dbe882cd-f9b9-48a9-a527-7e5382d41db1", "value": "http://localhost:8000/340a38a7-8ed9-4a07-a4a4-a28c8fe77b28"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/a440773e-a140-4e8e-9fa7-2773b1c88f25"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "44bf8c90-2e3a-41b1-98eb-58966d6f72ed", "value": "pixels per inch"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b3a74e83-240e-43e6-946a-0ab716aa70f2", "value": "The resolution of electronic imaging devices such as computer monitors, digital cameras, televisions, or scanners, expressed as the number of pixels per linear inch. Pixels per centimeter also describes the resolution of image files."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "b419c0e7-5217-4ab4-9703-72f0e5e80c53", "value": "http://vocab.getty.edu/aat/300410391"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/e1888665-101f-4307-9906-6d9df78bd88c"> + <skos:prefLabel xml:lang="en">{"id": "a567e52a-2e33-40da-abcc-212bbd2413f2", "value": "published titles"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "049acb87-2532-4bef-9fb8-243b674d17be", "value": "http://vocab.getty.edu/aat/300417206"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "754ad5f7-abd3-4a33-b923-ac086f054e7e", "value": "Titles or names that have been used to refer to the work in publications. For works of art and architecture, examples are titles or names in catalogs or journal articles that are not necessarily a title by which the work is normally known. For books, the term may be used to distinguish the final published title from an original unpublished or working title."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/a7e9a77a-005b-4253-8abc-7f3b944a4c0c"> + <dcterms:identifier xml:lang="en">{"id": "e9ac65f1-e92e-4a7a-9ef7-dbcfab49e278", "value": "http://vocab.getty.edu/aat/300053368"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "521851b8-e252-4824-96a0-b7dcf6981917", "value": "Pastos (impasto)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "8409a616-c0b7-44be-95e5-432215ec2bad", "value": "Application of paint in thick, opaque masses, usually with a well-loaded brush or a palette knife."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "0d7ee85f-ef4a-4413-8619-5f1a0cc97a94", "value": "impasto"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/af4c0571-889d-4fb9-a7d5-f14c05d102ca"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "e9eb8b99-e646-4564-b7ed-690b8bdb79ec", "value": "http://vocab.getty.edu/aat/300054216"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "413691a4-8474-4d96-83c7-896e8c44462f", "value": "The art and practice of applying pigments suspended in water, oil, egg yolk, molten wax, or other liquid to a surface to create an expressive or communicative image. Paint is usually, but not always, applied with a brush. For the application of paint primarily to protect a surface or add a general color, use \"painting (coating).\""}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "7fcf52ad-c2c0-4554-bd90-eff9dd7fdbf5", "value": "painting (image-making)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/43201e0e-3be9-445b-9b95-337b0a76094c"> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b16acdf3-a9c0-4c99-9ea1-dd17972cf288"> - <dcterms:identifier xml:lang="en">{"id": "6cb1bc12-13c4-439e-bd5d-5e7a397f4f3b", "value": "http://vocab.getty.edu/aat/300266822"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/ab17510a-b66c-455a-9f59-f4049ce522fa"> + <skos:scopeNote xml:lang="en">{"id": "91a4cb31-9f31-4e7e-82d0-e701148da79d", "value": "Providing a border or case to surround, support, enclose, or call attention to such items as a work of art, mirror, or document, leaving the item itself visible."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "47498cbd-b589-4f86-b327-423408493149", "value": "framing (processes)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "ce121a64-13ae-4d31-9571-bc4d67af1427", "value": "Pertains to the style and culture of modern Iran. Although modern Iran was known as Persia until 1935, art and architecture of ancient Iranian civilizations dates back to prehistoric times."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "8269e4be-9521-4106-88a4-1b1eb890ac64", "value": "Iranian"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "62a0575b-3745-4947-93ca-351c77ee75e6", "value": "http://vocab.getty.edu/aat/300240903"}</dcterms:identifier> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/68c7d1a5-862a-4c08-bd7e-9047c49b102d"/> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0f3d6d10-5daf-45af-ba4d-c1543ba83374"> + <dcterms:identifier xml:lang="en">{"id": "561119cb-c441-4c87-9996-de0a729b93d9", "value": "http://localhost:8000/43201e0e-3be9-445b-9b95-337b0a76094c"}</dcterms:identifier> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:narrower rdf:resource="http://localhost:8000/af4c0571-889d-4fb9-a7d5-f14c05d102ca"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/3d0d006d-cd13-4b0b-88c4-0fa458c9bef6"> - <skos:prefLabel xml:lang="fr">{"id": "d4dcbb89-8fe2-4343-abc0-f5f568a8eada", "value": "graphique"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/268fd523-ce84-4e91-923b-01766b28f628"> + <skos:scopeNote xml:lang="en">{"id": "538ce756-66d7-4286-9f68-ec8a3115cbb8", "value": "Action or process of creating illumination, which comprises paintings and other adornments applied to books, scrolls, or other document types for the purpose of illustrating or decorating the text. "}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "d664dbd4-a608-4051-aa5c-7331e194c819", "value": "illumination (image-making process)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "5f864589-94c8-4e8c-915d-5aa3cad7c47c", "value": "http://vocab.getty.edu/aat/300220539"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "a2a5cc1d-47c0-49cc-8f73-f36753eb35f8", "value": "graphs"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "2901ac2c-c0d1-449b-b310-90d497517fa1", "value": "Graph"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "345dab83-8755-44a5-8253-7b0aaef75843", "value": "http://vocab.getty.edu/aat/300027020"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "c7126296-3a9c-4dc2-9d3d-7a4ba0e9eca8", "value": "Representations of any sort of data by means of dots, lines, or bars; usually to illustrate relationships."}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "13dda65c-3924-4cdb-900b-cae8c324fe38", "value": "Darstellung jeder Art von Daten durch Punkte, Linien oder Balken, in der Regel um Relationen abzubilden."}</skos:scopeNote> </skos:Concept> </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "252846b9-21cf-4179-a859-5cf630ef5682", "value": "http://localhost:8000/0f3d6d10-5daf-45af-ba4d-c1543ba83374"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/0e5d03f3-613c-4e36-9783-e93e317b56a6"/> - <skos:narrower rdf:resource="http://localhost:8000/1dfca74c-101d-4089-b553-d03156750e19"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e257b6bf-0e30-495e-8cce-308328449649"> + <skos:Concept rdf:about="http://localhost:8000/e9800977-841d-4f52-b3c8-a89ce2301640"> + <dcterms:identifier xml:lang="en">{"id": "4feb67c3-6b31-4b8a-a190-33cd3d778006", "value": "http://vocab.getty.edu/aat/300264383"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "d40a3c35-36b0-451b-86cc-f753e770b65b", "value": "sculpting"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "1668515e-c743-4951-a7b7-3d3ec59c21b1", "value": "reproductive prints"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "3b8514f9-20f0-4bd4-bbda-0d1302639ebb", "value": "Reproduktionsgrafik"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "7fb06efd-a1d1-402f-be38-e1dea503d68c", "value": "Prints created to serve as copies of a painting or drawing by another artist, particularly popular in 17th- to 19th-century Europe. The print is considered a reproductive print if the primary intention was to record artistic heritage, even if the personality of the printmaker has been asserted to a small extent. The term is usually reserved for prints that reproduce another two-dimensional art work; however, occasionally it is also used to refer to prints that portray sculpture or decorative arts, if the printmaker\u2019s primary intention was to record the original art works for a mass audience. Prints depicting architecture are not considered reproductive prints. Prints in which another art work is incidentally depicted as part of a larger subject are not reproductive prints. Reproductive prints are valued because they map the dissemination, reception, and historiography of original works. They were popular in Europe from the 17th through early 19th century, and fell out of fashion with the invention of photography."}</skos:scopeNote> - <skos:scopeNote xml:lang="de">{"id": "e9dbcd58-72d0-4341-91d9-e189fd78693f", "value": "Druckgraphik, die geschaffen wurde, um als Kopie eines Gem\u00e4ldes oder einer Zeichnung eines anderen K\u00fcnstlers zu dienen, besonders in Europa vom 17. bis zum 19. Jahrhundert popul\u00e4r. Der Druck ist als Reproduktionsgraphik aufzufassen, wenn der Hauptzweck war, k\u00fcnstlerisches Erbe festzuhalten, auch wenn die pers\u00f6nliche Handschrift des Graphikers sich in kleinem Umfang behauptet hat. Der Begriff ist gew\u00f6hnlich Drucken vorbehalten, die andere zweidimensionale Kunstwerke reproduzieren; jedoch gelegentlich wird er auch in Bezug auf Drucke gebraucht, die Skulpturen oder Kunsthandwerk darstellen, wenn die vorrangige Absicht des Graphikers war, die originalen Kunstwerke f\u00fcr ein Massenpublikum festzuhalten. Drucke, die Architektur wiedergeben, werden nicht als Reproduktionsgraphik angesehen. Drucke, auf denen ein anderes Kunstwerk beil\u00e4ufig als Teil eines gr\u00f6\u00dferen Motivs dargestellt ist, sind keine Reproduktionsgraphik. Reproduktionsgraphiken werden gesch\u00e4tzt, weil sie die Verbreitung, Rezeption und Geschichtsschreibung von Originalwerken anschaulich machen. Sie waren in Europa vom 17. bis zum fr\u00fchen 19. Jahrhundert popul\u00e4r und kamen mit der Erfindung der Fotografie aus der Mode."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "2d3421ee-d686-4cff-abd8-b979a897ad2a", "value": "http://vocab.getty.edu/aat/300041569"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "40966378-46f5-484c-b3ca-e98d8b3bea73", "value": "Refers to the process or branch of fine art concerned with creating sculpture, which are three-dimensional works. It refers particularly to carving or engraving a hard material, or with molding or casting a malleable material, so as to produce designs or figures in relief, in intaglio, or in the round. It is typically used to refer to the production of large or medium-sized objects in stone, clay, or bronze. The production of small objects in bronze or stone is typically referred to by a specific term, such as \"stone carving\" or \"die sinking.\" The production of sculpture in wood or ivory is typically referred to as \"carving,\" even though the finished work in these materials may be called \"sculpture (visual work).\""}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/441678a1-9b81-4f67-8747-fc72e86757b5"/> - <skos:narrower rdf:resource="http://localhost:8000/6897ba2a-f1ca-4011-a863-b32a5970ee8a"/> + <skos:prefLabel xml:lang="en">{"id": "8ea8844c-c175-420e-825b-3676ee0e332f", "value": "Production"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/08427def-f19a-4add-afe7-7f58ffc66e0d"/> + <skos:narrower rdf:resource="http://localhost:8000/57f9fcb6-bfe5-4556-b610-35eb17798e08"/> + <skos:narrower rdf:resource="http://localhost:8000/99b83e37-2fab-4eb6-8d9c-ca88970f078f"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/69cc3065-9bca-4983-adfa-65e7a50ee9fe"> - <skos:narrower rdf:resource="http://localhost:8000/71067890-c1e8-471c-9144-51bf656fb632"/> + <skos:Concept rdf:about="http://localhost:8000/a9590301-77dc-4b3d-aa36-d669d1e338e3"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/68e3884d-a4da-4a1c-9b41-853cdb59d5f9"/> - <skos:prefLabel xml:lang="en">{"id": "29716c8e-fc0d-441b-89fa-c7a19fa86810", "value": "Visual Work Depicted"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/ecb98f2b-7104-4bbc-ae9a-8837104052a8"/> - <skos:narrower rdf:resource="http://localhost:8000/9492b046-b723-48c9-a1f7-6117c62e967f"/> - <skos:narrower rdf:resource="http://localhost:8000/3966ec93-968e-4f31-a38b-75adadc09c3c"/> - <dcterms:identifier xml:lang="en">{"id": "8e9f42d3-4286-4cd6-b508-397ad4cf5baf", "value": "http://localhost:8000/69cc3065-9bca-4983-adfa-65e7a50ee9fe"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/9966b87c-8914-472c-ac0c-cc5378c7127d"/> + <skos:scopeNote xml:lang="en">{"id": "1a91a127-0a68-4a8a-8827-c7b941eba7f1", "value": "Forming or producing letters to record the ideas which characters and words express or to communicate the ideas by visible signs."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "7b58788f-6d5b-4388-8387-da3d0f64b5cc", "value": "http://vocab.getty.edu/aat/300054698"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "0140d820-6541-4297-98b9-1c7619465b8d", "value": "writing (processes)"}</skos:prefLabel> </skos:Concept> </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "adcb7c47-63dd-4f94-afe6-35b8bfba49cc", "value": "Visual Work Type"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/14aaf84d-4bd1-40c4-8f6e-6e0e368a49d4"/> + <skos:narrower rdf:resource="http://localhost:8000/56f1db33-4d80-4871-bcb5-63ed73c67fec"/> + <skos:narrower rdf:resource="http://localhost:8000/77c89579-9cd7-4855-9126-7878278a1483"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0c61f836-7b2e-44ce-a05d-7dda2bd5c25c"> + <skos:Concept rdf:about="http://localhost:8000/145c37a2-08d3-4f38-a4dc-7a141eb83bdc"> + <skos:scopeNote xml:lang="en">{"id": "fe0c3476-fff7-4ea1-8474-d3832e3366ae", "value": "The art or process of making photographs, which are pictures produced by means of the chemical action of light on a sensitive film, glass, paper, metal, or by digital means."}</skos:scopeNote> + <skos:prefLabel xml:lang="fr">{"id": "d2fda725-1674-4b20-b5f3-5dc35fb028c5", "value": "photographie (process)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "bb56a233-b99e-440e-825f-2afed6d1b495", "value": "http://vocab.getty.edu/aat/300054225"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ea2fffb5-f4db-4ed9-be5e-bda76ffb4725", "value": "photography (process)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "d3bd253e-2507-4493-b2ab-ce36f36ec171", "value": "druckgraphischen Bl\u00e4ttern"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "ebb605c1-792b-4ee6-ae2a-faacd240feab", "value": "Pictorial works produced by transferring images by means of a matrix such as a plate, block, or screen, using any of various printing processes. When emphasizing the individual printed image, use \"impressions.\" Avoid the controversial expression \"original prints,\" except in reference to discussions of the expression's use. If prints are neither \"reproductive prints\" nor \"popular prints,\" use the simple term \"prints.\" With regard to photographs, prefer \"photographic prints\"; for types of reproductions of technical drawings and documents, see terms found under \"reprographic copies.\" "}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "2c3d6203-2eb0-4aca-a65c-9ba8c6a22f3d", "value": "prints (visual works)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "2d251e36-b522-4ec5-8f06-3053a54d8645", "value": "http://vocab.getty.edu/aat/300041273"}</dcterms:identifier> - <skos:prefLabel xml:lang="fr">{"id": "d1d516e0-7392-4a72-af1e-c470b886b890", "value": "gravures (g\u00e9n\u00e9ral, \u0153uvres visuelles)"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "f5df3c84-9310-4532-8166-cd7ddbf64e24", "value": "Fotographie"}</skos:prefLabel> </skos:Concept> </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/31ea3a41-4561-4e0e-af20-00157fe9715b"/> <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0ed12180-2d92-46d9-9ad4-72594487fe8f"> - <skos:scopeNote xml:lang="en">{"id": "d89269eb-c3e4-4327-bf88-3d4d696b5ea7", "value": "Visual works produced by drawing, which is the application of lines on a surface, often paper, by using a pencil, pen, chalk, or some other tracing instrument to focus on the delineation of form rather than the application of color. This term is often defined broadly to refer to computer-generated images as well."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "fc66a7ec-ee8b-469b-bc5a-806ff0e7a72a", "value": "dessins"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "f5cb7a5b-e5f7-424b-a5a1-3f88a8bb48d0", "value": "drawings (visual works)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "a7576255-4a6c-4093-b074-9f80bcb6734a", "value": "Visuelles Werk, das durch Zeichnen hergestellt wurde, was das Auftragen von Linien auf eine Oberfl\u00e4che ist, oft Papier, unter Verwendung eines Bleistifts, einer Feder, Kreide oder eines anderen Zeichenmittels, mit dem Schwerpunkt eher auf der Darstellung der Form als der Betonung der Farbe. Der Begriff wird oft allgemein definiert und auch auf computergenerierte Bilder angewendet.\t\t\t\r\n"}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/84123513-2b77-4050-b1dc-4fcd1269d83f"> + <skos:prefLabel xml:lang="en">{"id": "d1adc747-6773-47c2-8470-a2ef0ab23fb9", "value": "preserving"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "dbbf0e21-f820-4284-845a-39a2010b0ac1", "value": "The process of performing actions to halt damage or to keep any object, material, or system from injury or destruction. For example, it may refer to the preservation of food or an ecological system. For the function of preservation, use \"preservation (function)\" or a specific type of preservation, such as \"historic preservation.\" For the discipline of involving treatment and long-term preventive care of cultural and natural heritage objects and systems, use \"conservation.\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "78a0c255-7320-448e-bd3f-a406e4f1bb25", "value": "http://vocab.getty.edu/aat/300266154"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "9c1e2e45-36d9-4d6d-b3e2-aabe7a8a9ff2", "value": "http://vocab.getty.edu/aat/300033973"}</dcterms:identifier> </skos:Concept> </skos:narrower> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4781f26f-0f6e-44db-ac23-4ab3cb28d57f"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "035e0d70-9880-47bd-a31d-97a12300a5ff", "value": "styrene"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "ba69695f-4a01-48eb-ab41-48aedea40f6c", "value": "http://vocab.getty.edu/aat/300015283"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "efaa12f6-59ce-48db-a925-09413aa0ed11", "value": "A fragrant, liquid, unsaturated hydrocarbon used chiefly in making synthetic rubber, resin, and plastic and in improving drying oil."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "4ea5d83e-9b84-42fb-a0c7-7c93bc39735c", "value": "styr\u00e8ne"}</skos:prefLabel> - </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/cd3d2406-1ae5-42f0-98f9-43e965ae5d38"> - <dcterms:identifier xml:lang="en">{"id": "aa20dcee-c513-4276-9c66-614b74026f09", "value": "http://localhost:8000/cd3d2406-1ae5-42f0-98f9-43e965ae5d38"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/20d21d50-3650-44ed-8451-edee26ddc3f2"> + <dcterms:identifier xml:lang="en">{"id": "ff714ffe-792f-4b7d-ac16-1ea14d305048", "value": "http://vocab.getty.edu/aat/300379244"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "23ac3ca2-cdc0-43e1-bc3f-37dbf4a47a61", "value": "Superficial"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "37083d27-bcdf-4451-86c1-65bd188c0b31", "value": "Units of time equivalent to nearly 365.25 days, 12 months, or the period of one full circuit of the Earth around the Sun. "}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "496c3361-6792-4457-89ae-2f93803c9daa", "value": "years"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/eedcb6df-656b-4a3b-b808-be00a7a4daf9"> - <skos:prefLabel xml:lang="en">{"id": "91bb8dec-6760-41f7-973c-42a1855adb9b", "value": "grisaille"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "a8d2cf40-dd51-4309-9201-d25a5927af10", "value": "Grisaillemalerei"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "4def8e0c-e5cb-4405-9c29-abf7c07232e9", "value": "http://vocab.getty.edu/aat/300053386"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/9dd99086-3a90-4102-8335-33986fe797e3"> + <skos:scopeNote xml:lang="en">{"id": "bf2b90fc-59ab-4c29-b9dc-9d0518a1715c", "value": "Titles of courtesy, professional titles, military rank, adjectives, or other words used before a personal name. Examples are words to indicate gender, marital status, social position, or included for another purpose, such as the following words and abbreviations: Mr., Mrs., Miss, Ms., Dr., Sir, and Rev."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "712c0c79-f98b-444f-8a64-4498f0f0d03f", "value": "http://vocab.getty.edu/aat/300404845"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "7af4ed1c-d0b0-4850-98bc-2e856d065e24", "value": "prefixes (name additions)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "bf56290f-6be8-4802-ab85-9e99edd9881b", "value": "Gemaltes Bild in Schwarz-Wei\u00df, in der Regel mit Graut\u00f6nen; etabliert in der Malerei, Glasmalerei, Emaillekunst, auf Keramik und anderen Objekten."}</skos:scopeNote> - <skos:scopeNote xml:lang="en">{"id": "68390d5c-12a4-4c56-b6e3-8514b1af647c", "value": "Painting of images in monochrome, usually gray tones; employed in paintings, stained glass, enamels, and on pottery and other objects."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/f74ebcee-1474-423a-98e0-eec4a6f70599"> - <dcterms:identifier xml:lang="en">{"id": "c3195e48-c27a-498f-98b3-b0b9ae748b3a", "value": "http://vocab.getty.edu/aat/300134530"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "1389bacf-2dbd-4919-b93d-cea8bc1e3477", "value": "Generally, the art or practice of taking and/or processing photographs that reproduce hues perceptible to the human eye. Extended to include imagery in which colors have been artificially enhanced or altered. "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/ac05986c-ffe8-4910-a73e-6efe0d451eda"> + <skos:prefLabel xml:lang="en">{"id": "00584e0b-d585-40b1-9d07-f8dafa9a741d", "value": "maiden names"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "961cda0a-dd8c-452b-b3e1-c944951b08ac", "value": "color photography"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0daa2866-a7b1-4fd5-8bf4-926b38e86dbf", "value": "http://vocab.getty.edu/aat/300404682"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "8248f95f-f977-4d37-8403-e67d831fc875", "value": "Regarding personal names, last names held by a woman prior to marriage, at which time she may adopt her husband's last name."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/23da916d-1424-44f5-a85e-e5dacbcce27a"> + <skos:Concept rdf:about="http://localhost:8000/c54f3642-9f8d-475d-8c6d-b82fc4b5b853"> + <dcterms:identifier xml:lang="en">{"id": "bebe6c1a-3ecd-4483-8f4b-af63eb6d247d", "value": "http://vocab.getty.edu/aat/300404688"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "8fd5db9c-b681-4530-9463-f99bf602bd9c", "value": "Names for people, places, or things that are the fullest version of the name. For personal names, includes the first name, one or more middle names, one or more family names and last names, suffixes, and honorfics."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "ebd3f5a3-ad6c-460c-8067-dd1323b5840d", "value": "A broad term used for a variety of non-binary sexual expressions of individual indigenous North American people. More specific terms are unique to language groups."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "c295c54a-aeae-4f57-98c1-b4014755e0ff", "value": "http://vocab.getty.edu/aat/300438744"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "9e566d07-311f-473b-a385-7d7d2689742d", "value": "two-spirit"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "828a2e14-8976-4d99-96d0-aeb1bd4223cc", "value": "full names (personal names)"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c016495d-3351-43a9-8b8e-064ea662a3b9"> - <skos:scopeNote xml:lang="en">{"id": "75ba5665-477a-41be-b3a9-a82ae8c3972c", "value": "Thermoplastic polymer group which includes nylon and other synthetic resins."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/409ff344-73cb-4d92-82d1-abb5a80c744b"> + <skos:scopeNote xml:lang="en">{"id": "2cb22ecb-6b47-4842-838b-955bd4f68d6a", "value": "Discharging people from an institution, enterprise, or obligation."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "c5d3aedb-d759-4560-9482-ba1c25d1207b", "value": "http://vocab.getty.edu/aat/300137587"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "a7c2526f-64b0-4740-98e7-e7e403429f7c", "value": "releasing"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "e6a2a353-6588-4997-87c5-ceafd2dd1ca4", "value": "polyamide"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "3dbd252b-7859-4cc9-acae-0d44b7f7e83c", "value": "polyamide"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "4199800d-3099-4540-9867-a00e0ae3aa6a", "value": "http://vocab.getty.edu/aat/300014469"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/cf8cd73c-d245-4128-a509-84451c28eccc"> - <dcterms:identifier xml:lang="en">{"id": "8029f461-6cba-4f5f-90af-9ddfb1a7ca31", "value": "http://localhost:8001/cf8cd73c-d245-4128-a509-84451c28eccc"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/191c70d0-82cd-4eeb-8a71-48f794f15211"/> - <skos:narrower rdf:resource="http://localhost:8000/f18613e5-aa77-4400-97b9-aaf6987de517"/> - <skos:prefLabel xml:lang="en-us">{"id": "1ce081fa-419a-4ceb-baa4-7e2259e88ecb", "value": "Physical Dimensions"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/b391c967-2a6b-4972-9289-17130cf96557"/> - <skos:narrower rdf:resource="http://localhost:8000/7882a788-a6ba-42d7-bb02-7c2776d82353"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/4649d0f2-ad6c-4905-a24e-8d784c2cbc48"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "273017b8-2e3f-4970-bfcb-862617570a4b", "value": "The quantity or mass of an object or material that occupies space."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "a00016cd-b964-4ceb-8057-ed1e5d9194cd", "value": "http://vocab.getty.edu/aat/300055649"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "c28807da-962a-4ea6-a0be-8ae049bfcb0e", "value": "volume (quantity or mass)"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/9624bcad-0f1a-4c78-a919-f9eb6c532da2"> - <skos:prefLabel xml:lang="en">{"id": "01c13c0f-5095-4524-8da4-1b5f73547b33", "value": "height"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "afd88ead-4ba3-4076-b1ce-ad9d93b07cc2", "value": "http://vocab.getty.edu/aat/300055644"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "288dd2a4-08e5-4837-923f-a8abf5bdb1ae", "value": "The length of a straight vertical line extending from the bottom to the top of a form."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - </skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/bfe0540e-72a5-4ee3-a224-78167f39b1b6"> + <skos:prefLabel xml:lang="en">{"id": "bb947aa5-daf0-43fc-935f-cdc8c7de8e58", "value": "loan (method of acquisition)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b42ea1ad-26cd-47e5-8e46-e33f9bb2021f", "value": "http://vocab.getty.edu/aat/300417645"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "fb15fa57-16ba-4492-a013-f203c995150f", "value": "Method of acquiring property for temporary use, with or without the payment of interest."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e15a5258-c4c6-479f-bd0b-30e83ec5a3f1"> - <dcterms:identifier xml:lang="en">{"id": "cfbaa1ab-2d5f-41ee-82f2-1b4f759d6c7b", "value": "http://vocab.getty.edu/aat/300417261"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/5d34bcba-7196-44ea-94c1-6180a0bb5927"> + <skos:prefLabel xml:lang="en">{"id": "56d65922-6a30-4ca4-afdd-c4f9d0aff4f9", "value": "terabytes"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b1c535cc-7fc8-4a66-9a46-b6c8d0bb3d6f", "value": "http://vocab.getty.edu/aat/300266477"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "373b4b78-b4be-4ec1-b836-793dc165dc9c", "value": "Unit of measurement for computer file storage equal to approximately one trillion bytes. Specifically, 1,099,511,627,776 bytes."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "282a367d-eba1-488a-8799-857a43cd860f", "value": "The process or function of copying or taking material or data from one place for use in another; for example, copying data out of a database for reconfiguration in a publication. "}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "5a40a5d2-e39e-4aa9-84f0-2a7fe47db845", "value": "extracting (information handling)"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c1b53f0c-f372-4094-b0cb-5be66a44cefe"> - <skos:scopeNote xml:lang="en">{"id": "85a2c982-5efc-445a-a808-2e642094d41f", "value": "The process or function of introducing new material or augmenting existing material."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "5931a4db-0214-4198-b761-18398c34b625", "value": "adding (information handling)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c638c305-4401-4a86-b1bc-d52e062a3921", "value": "http://vocab.getty.edu/aat/300417256"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/7156f8e2-d534-4f02-8f31-71f9a9a3a4aa"> + <skos:prefLabel xml:lang="en">{"id": "72bb5965-7644-4df1-934c-2fd40421754d", "value": "bits (computing)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "0dd8ca4b-d160-4bd4-8e4e-fb383c7fdaac", "value": "A contraction of \"binary digit,\" bits are units of information that represent either a zero or one, on or off, and are the smallest elements a computer is able to process."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "2cd138a6-c24a-4c43-b55a-366255a18a68", "value": "http://vocab.getty.edu/aat/300265866"}</dcterms:identifier> </skos:Concept> <skos:Concept rdf:about="http://localhost:8000/b5b561eb-9935-40bf-ade0-5a576299c3d9"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "b48052ed-bcfc-4ec2-8120-4d8c5bbacc4a", "value": "Testing techniques that impose conditions on an object or material to cause it to age more rapidly than it would naturally."}</skos:scopeNote> <skos:prefLabel xml:lang="en">{"id": "a30474af-5dfd-4c93-8c7e-52033900dc0f", "value": "accelerated aging"}</skos:prefLabel> <dcterms:identifier xml:lang="en">{"id": "7cfa2aa5-9c25-49e9-9a35-2461d23f94d6", "value": "http://vocab.getty.edu/aat/300226566"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "b48052ed-bcfc-4ec2-8120-4d8c5bbacc4a", "value": "Testing techniques that impose conditions on an object or material to cause it to age more rapidly than it would naturally."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/ce4ffb8a-597e-47c5-8d60-96f17fc92bb3"> + <dcterms:identifier xml:lang="en">{"id": "7f74f0c2-0834-4011-8285-8a7b6838938a", "value": "http://localhost:8000/ce4ffb8a-597e-47c5-8d60-96f17fc92bb3"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "45554224-bad3-4f5b-8ae2-9a329804bea2", "value": "map service"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b6323e0d-be53-4dc1-ab97-83f8cbb47d1c"> + <skos:Concept rdf:about="http://localhost:8000/1ffe97e4-1822-4a6e-b170-861330764bbd"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "6ee102ac-8855-4e46-ad22-2342e57ec4f3", "value": "Pastos (impasto)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "c2302240-6117-4279-ace5-63aa53839d74", "value": "impasto"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "172091fc-a125-4d02-bdfa-8673ebb4b893", "value": "Application of paint in thick, opaque masses, usually with a well-loaded brush or a palette knife."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "42d05ee6-534d-49ed-99d3-c68edc167243", "value": "http://vocab.getty.edu/aat/300053368"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "38b2346b-a0a2-4ea7-994c-2e355b987944", "value": "http://vocab.getty.edu/aat/300404654"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "f3fff0c9-6e96-4802-9561-6ac6827641f0", "value": "In the context of personal names, particularly in western culture, names that are positioned between a first name and a last name, possibly comprising an additional familiar name or a maternal family name. In other traditions, such as Islamic tradition, the middle name may be the primary personal name (analogous to the first name in western tradition) or another sort of name."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "6abf5af2-b69b-4ecf-9377-dc8628b0ae46", "value": "middle names"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/027ce46c-9428-4606-8352-af48ff5bd1bb"> - <dcterms:identifier xml:lang="en">{"id": "fcb252b4-6d5a-4813-97dd-f663367ad8ca", "value": "http://vocab.getty.edu/aat/300053386"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "f69c244d-38a2-48df-8f90-f5b90f945960", "value": "grisaille"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "513e827e-1689-46de-9de4-ec6d7155975a", "value": "Painting of images in monochrome, usually gray tones; employed in paintings, stained glass, enamels, and on pottery and other objects."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/03c51652-484f-4b24-98ea-f3bf5bcf2d7c"> + <dcterms:identifier xml:lang="en">{"id": "4ec0452c-abd1-4ac4-96ec-98fa724814ed", "value": "http://localhost:8000/03c51652-484f-4b24-98ea-f3bf5bcf2d7c"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "6827f2c7-afe6-40b7-aa34-b7386ec81f70", "value": "leader"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "a17100cd-d3ee-4953-aca8-0b12d7385179", "value": "Gemaltes Bild in Schwarz-Wei\u00df, in der Regel mit Graut\u00f6nen; etabliert in der Malerei, Glasmalerei, Emaillekunst, auf Keramik und anderen Objekten."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "bf62d458-7f0d-44c0-a61c-d847957db93e", "value": "Grisaillemalerei"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/21bbcd2d-84b8-4604-96aa-add5e2e84588"> - <skos:prefLabel xml:lang="en">{"id": "836b41f6-54b4-413f-83d0-cbc9665aa5f9", "value": "stretching"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e54abd52-bcf1-487f-8c2d-70991e7848fc", "value": "http://vocab.getty.edu/aat/300053142"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "57526448-4c35-4cc6-87a2-beb0b7117fb8", "value": "The process of extending something flexible, such as a cord or piece of fabric, from one point to another, across a space, or over a form, for the purpose of drawing it taut or rigid or for making it larger."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/f56d47fa-10d9-4e37-a009-9b77a96e3f50"> + <skos:prefLabel xml:lang="en">{"id": "8d511c9f-7219-4077-839f-2a5251e72e70", "value": "painting (image-making)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "575abbf5-6f87-42cf-a294-227b2944f4b1", "value": "http://vocab.getty.edu/aat/300054216"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "cad55d0c-aade-45f3-8fc9-54b9a788a7a0", "value": "The art and practice of applying pigments suspended in water, oil, egg yolk, molten wax, or other liquid to a surface to create an expressive or communicative image. Paint is usually, but not always, applied with a brush. For the application of paint primarily to protect a surface or add a general color, use \"painting (coating).\""}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/3966ec93-968e-4f31-a38b-75adadc09c3c"> - <skos:scopeNote xml:lang="en">{"id": "9649f869-8040-471b-8bb9-6908c3f0c2f1", "value": "Members of the species Homo sapiens and their close extinct relatives, as distinguished from other animals, spirits, or other entities."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "55d6667d-939c-4657-bb08-ccc6024005d1", "value": "people (agents)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/493e8f0d-2e89-439a-9e8d-f1e813388f3b"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "1e82d1ec-73a7-47c1-bc38-007dfc10143e", "value": "http://vocab.getty.edu/aat/300024979"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "2a819a0e-7e22-439e-ba6d-0490bf53788f", "value": "days (units of time)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "17ccb184-0283-40d7-96e6-390d1bf83183", "value": "Units of time equivalent to the 24-hour time interval between midnights, or the period of one full rotation of the Earth on its axis. "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "6b836666-78ce-42a6-8ee3-d234ab4f36e1", "value": "http://vocab.getty.edu/aat/300379242"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1f5435f5-153c-45c8-a140-bfda7f4e9b8c"> - <skos:scopeNote xml:lang="en">{"id": "4b6bd674-ea4f-4273-89f0-e7f2ab207106", "value": "The art or practice of producing creative works in oil paint, which is pigment suspended in vegetal drying oils. It dates from at least the Middle Ages in Europe, and was widely adopted for easel painting by the fifteenth century."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/541c4e7c-8a87-4604-804a-76b85b4948cd"> + <skos:prefLabel xml:lang="en">{"id": "f67015cd-2a14-47bb-9579-c2005000ebc6", "value": "uploading"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "d41390fe-fbe7-484b-92f4-776b6706aa53", "value": "http://vocab.getty.edu/aat/300178684"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "9734a99b-6f57-4878-9568-1cc8e5fff732", "value": "oil painting (technique)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b62e0704-8ed6-4b78-85fa-87a214208472", "value": "http://localhost:8000/541c4e7c-8a87-4604-804a-76b85b4948cd"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0b564536-35cf-4c35-9468-7e7ae25e913c"> + <skos:Concept rdf:about="http://localhost:8000/0bc8a3a2-baa2-4a32-9839-89b5bf917f3a"> + <dcterms:identifier xml:lang="en">{"id": "3169f369-d1b5-4acd-bce4-3b9551f7ed06", "value": "http://vocab.getty.edu/aat/300411836"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "54b868da-745e-4f2b-a1eb-7f82a083aa9d", "value": "Having chracteristics, qualities, attributes, or actions associated with the male sex."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b15a7fe1-5b9e-4c75-a964-7b8cf57ac1f8", "value": "http://vocab.getty.edu/aat/300014495"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "e04afd3c-c969-4589-bd80-01217cb2b45f", "value": "polyurethane"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "866a4db3-9f85-4090-8687-01709a904b6c", "value": "Plastic based on polyether or polyester resin. "}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "d4ccfc80-8ba4-4009-84fa-7b30810fcd97", "value": "polyur\u00e9thanne"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "9054b5de-b00d-4253-a749-833f4b848476", "value": "masculine"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0159aa99-f9ef-43f6-a412-89df24b832bb"> - <skos:scopeNote xml:lang="en">{"id": "0639b0d2-67d7-4aa0-99cf-83d2d75099df", "value": "Making incisions with a sharp-edged instrument, thus removing material or dividing something into parts."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "c660d5a0-0352-4f29-a3a0-7705cca4e830", "value": "cutting (shaping or dividing)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "6243e036-745c-4701-b6e6-e986a2008b2f", "value": "http://vocab.getty.edu/aat/300053069"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/f396443b-2e35-44e3-8887-8bbb39f6b44a"> + <skos:prefLabel xml:lang="en">{"id": "7c1adac4-5031-4af0-a9c6-2473e3fd6e08", "value": "sex role"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "839e7b10-d324-4337-b1f2-b887ecbb0aaa", "value": "http://vocab.getty.edu/aat/300055147"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "d492a17a-22ce-4dd0-bb9e-a7b1c4081e19", "value": "Pattern of attitudes and behavior that in any society is deemed appropriate to one sex rather than another. For the concept of physiological traits that distinguish the males and females of a species, use \"sex.\" For the sum of an individual's sexual emotions, ideas, and behavior, use \"sexuality.\""}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b96a5716-1e25-4697-b5f9-3afad1627ed4"> - <skos:prefLabel xml:lang="en-us">{"id": "9aa3c808-26e7-4274-a521-3507ea49c90b", "value": "color photography"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/15599306-151c-4508-8e9c-ba0f10a709b0"> + <skos:prefLabel xml:lang="en-us">{"id": "d9ca8f76-5cc2-4d88-a5d5-2aea468512fc", "value": "scholarly title "}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "beef438f-d04c-4023-a620-6ca42a20905e", "value": "http://vocab.getty.edu/aat/300134530"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "3444e2b6-ba6d-4642-9427-09c39f525abd", "value": "Generally, the art or practice of taking and/or processing photographs that reproduce hues perceptible to the human eye. Extended to include imagery in which colors have been artificially enhanced or altered. "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "c64834cb-1263-413a-9059-e89c85ceae8d", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/titles/scholarly-title-(5/5/2011)"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/f8dcc963-bc7e-41f1-9449-0a96a27432e5"> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/48ded04e-6487-4640-b5e1-37818ce87ade"> - <skos:prefLabel xml:lang="en">{"id": "33d05303-9f97-4d83-ad34-399e87fb54b7", "value": "suffixes (name additions)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "b626862d-73ca-404b-8edb-8fcad03d6672", "value": "Appellations, words, or phrases that follow a personal name. For example words or numerals denoting family relationships, usually between members having the same first name, such as the senior and junior of two indicated persons."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "81bd055a-1171-4103-8258-a248d027df35", "value": "http://vocab.getty.edu/aat/300404662"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "882fe6d8-4519-462f-91ed-11071314544b", "value": "http://localhost:8000/f8dcc963-bc7e-41f1-9449-0a96a27432e5"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/c5f909c8-d870-4752-b62d-d18f945f1ddf"/> + <skos:Concept rdf:about="http://localhost:8000/e2b3f9c2-cb94-4dcd-9fa1-5b4d10363adb"> + <dcterms:identifier xml:lang="en">{"id": "f0943de1-79cf-4263-a32a-8dafd9ad7175", "value": "http://vocab.getty.edu/aat/300014444"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "da790531-ce7e-4d36-a24c-841bd3e2e88c", "value": "Substance comprising a mixture of nitric esters of cellulose and a highly flammable compound containing more than approximately 12.5 percent nitrogen. Nitrocellulose is a fluffy white substance that retains some of the fibrous structure of untreated cellulose. It is not stable to heat and will ignite easily. It was first introduced in the 19th century as an explosive. It was used to produce animation cels for 80 years until acetate was introduced as a safer medium in the 1950s. Cellulose nitrate was often used for clear lacquers, fabric dopes, adhesives, high-gloss paints, and mixed with natural resins (dammar, shellac, copal, etc) to create a waterproof varnish. Cellulose nitrate is inherently unstable and slowly decomposes at room temperature."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "547a78f0-e75e-46af-86a4-c29c738a3d25", "value": "nitrocellulose"}</skos:prefLabel> + <skos:prefLabel xml:lang="pt">{"id": "55bc7e29-75b4-4c5e-9831-0e190685c582", "value": "nitrocelulose"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "aa58522d-508c-4c44-9f02-ddbff585b74d", "value": "Zellulosenitrat"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "25140f8c-f573-4526-9615-5fac4795355b", "value": "nitrocellulose"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/9dd99086-3a90-4102-8335-33986fe797e3"/> - <skos:narrower rdf:resource="http://localhost:8000/1421293e-ad4d-4166-a199-d076622b2596"/> - <skos:narrower rdf:resource="http://localhost:8000/1ffe97e4-1822-4a6e-b170-861330764bbd"/> - <skos:prefLabel xml:lang="en-us">{"id": "7af7bc06-9e61-4ef0-8af5-585e0d1e67f0", "value": "Personal Name Part Types"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/12a85b63-5210-4300-ac46-bb8d03bc98ec"> - <skos:narrower rdf:resource="http://localhost:8000/b24e324b-f0f1-4ad3-a8ee-00ce51a6f30a"/> - <dcterms:identifier xml:lang="en">{"id": "c803d1b0-4840-4b98-99a7-f56ad5b67106", "value": "http://localhost:8000/12a85b63-5210-4300-ac46-bb8d03bc98ec"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/c4413a59-1a69-40e7-9c2d-092d1cebb4c4"/> - <skos:prefLabel xml:lang="en-us">{"id": "d2912fee-06a7-4a2a-8ede-e69ba445d73d", "value": "Units"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/995fb2eb-e02b-4953-a90d-c7ad5573fdd4"/> + <skos:Concept rdf:about="http://localhost:8000/1ff831dd-8f7a-4331-9579-51e513725ca3"> + <dcterms:identifier xml:lang="en">{"id": "0b680db9-f601-4c16-a3f7-1ae7fe55384b", "value": "http://vocab.getty.edu/aat/300379518"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "a27adf11-697d-4e77-9bdf-cae19f74ced5", "value": "The application of testing methods to materials or objects in order to analyze their composition and manufacture. In a conservation science context, this may refer to movable art works and artifactual objects in a conservation lab. For a broader range of testing methods, prefer \"scientific analysis.\" "}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/c304b5d9-5d48-4fab-bfa0-84b96440c009"/> + <skos:prefLabel xml:lang="en">{"id": "5a008605-3bf8-4976-a1ef-2c23ac26dfc3", "value": "technical analysis"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/68e3884d-a4da-4a1c-9b41-853cdb59d5f9"> - <dcterms:identifier xml:lang="en">{"id": "b7f18c79-9a67-48d1-b41e-8bb9835a2f22", "value": "http://vocab.getty.edu/aat/300404125"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/0e099c0e-663a-4330-8597-d39eb9fda10a"> + <skos:scopeNote xml:lang="en">{"id": "4fb49bdf-3972-4094-a669-52f7c2c495a2", "value": "Changing the representation of data in a database from one form to another, as for instance changing the storage medium, data format, or the code in which the data is held."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "71f6a79c-731d-4ed0-be8b-1910e1b593b4", "value": "data conversion"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6d98159a-63f0-4633-89f1-0736e3d05b21", "value": "http://vocab.getty.edu/aat/300155333"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "80b2ad18-f1cd-4616-927c-4f087f15ced3", "value": "natural objects"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "63a2dfe7-4eb6-4419-84bb-eee0b00eb899", "value": "Objects that occur in nature, not made by humans. Used primarily in the context of distinguishing man-made objects from natural objects."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1a670915-4a87-4f1a-84c4-fb2192a6e742"> + <skos:Concept rdf:about="http://localhost:8000/903c4a8b-4051-4791-9ee9-9fd96e222117"> + <skos:scopeNote xml:lang="en">{"id": "402f5839-8c99-4271-a5f9-2be25506e7b4", "value": "General term for units of currency based on various large silver coins of Central Europe minted from the late 15th to the mid-19th century."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "e2b4d86f-6f37-4817-8a35-b94272300c7c", "value": "thaler (unit of currency)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "87da8b58-a75d-4784-98b8-e87784c8236d", "value": "http://vocab.getty.edu/aat/300412168"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "6cd98014-f617-4034-9876-91743734120c", "value": "http://vocab.getty.edu/aat/300389895"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "82524042-f117-48f8-be48-4353d089d3aa", "value": "watercolor painting (technique)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "0334be0f-63da-45b2-b908-43d09f3993a3", "value": "The technique of painting with pigments in a water-soluble binder and thinned with water, usually on paper. Includes gouache painting, although gouache is not technically watercolor paint."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/9966b87c-8914-472c-ac0c-cc5378c7127d"> - <dcterms:identifier xml:lang="en">{"id": "47ece86f-9b8b-4527-9622-5dc4897b5c26", "value": "http://localhost:8000/9966b87c-8914-472c-ac0c-cc5378c7127d"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/bd8f902a-454c-4122-9b3e-1bac24a66a06"> + <skos:scopeNote xml:lang="en">{"id": "578bcc6d-fda6-4eff-a06e-fcdb4e7b3e3f", "value": "Typified by or having some characteristics proper to the other sex, or having both male and female characteristics."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "6d1af8ca-a78b-4c91-b9fe-31b715caeaa2", "value": "http://vocab.getty.edu/aat/300417544"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "750178f6-f231-4091-b99c-b2033e9e9e89", "value": "historical events"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "4be6ecb6-7fb2-40ab-b9ad-15d8c2043e10", "value": "intersexual"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b96656eb-094b-48c3-a491-148df2d5fec0"> - <dcterms:identifier xml:lang="en">{"id": "9a33e2e5-a54b-4f32-99e8-09b2fb8c8d65", "value": "http://vocab.getty.edu/aat/300162056"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/fa563901-745f-4edf-b1d4-26b24508e362"> + <skos:scopeNote xml:lang="en">{"id": "de763642-718d-4d7c-9ea1-b593282b9922", "value": "General term for units of currency based on gold coins of France issued in the reign of Louis XIII and subsequently till the time of Louis XVI."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "8786ab8d-4d9f-48a0-9ea5-a3848dd494f1", "value": "louis (unit of currency)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "2906dd8e-891a-40b7-83d1-2790f3c8e91d", "value": "http://vocab.getty.edu/aat/300412166"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "3e8d7835-0fa2-472f-b38a-79b6234e43f7", "value": "black-and-white photography"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "9218058e-0440-4ffa-84e3-b46e3197f728", "value": "The art or practice of taking and/or processing photographs whose images are composed of gray tones, black, and white, and sometimes one hue, which may result from toning or aging."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/07591d48-bad3-4fea-972f-584394cefeb1"> - <dcterms:identifier xml:lang="en">{"id": "4db4a117-5292-4c55-8da0-9131d8eb9335", "value": "http://localhost:8000/07591d48-bad3-4fea-972f-584394cefeb1"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "60eb7072-f648-491f-974d-915eb7cd311c", "value": "volunteers"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/f3fed7aa-eae6-41f6-aa0f-b889d84c0552"> + <dcterms:identifier xml:lang="en">{"id": "337707d2-0716-4573-b527-66a1dcfc4d6a", "value": "http://vocab.getty.edu/aat/300417650"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "2bdd5f51-87dc-4d05-b5b7-2943cdd12c8a", "value": "consignment (method of acquisition)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a6d579e1-962b-433b-95c1-784cc840d501", "value": "Method of acquiring property with the expectation that the recipient will sell, rent, or loan this property to a third party, for the mutual benefit of the consignor and consignee."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b1a3bc7a-441a-48c8-9cfa-d37627b021a5"> + <skos:Concept rdf:about="http://localhost:8000/249e9e0e-0af1-457e-b33e-ccb6824e5a2a"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "18d9aec3-0a1e-411b-afa6-e72f9e88d6da", "value": "Pastos (impasto)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a1496a86-a1df-4b9b-b673-e179835bb778", "value": "http://vocab.getty.edu/aat/300053368"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "f52a7da5-c4ca-425a-b9ac-c5dc189dd487", "value": "impasto"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "ae6dbaa2-756d-4613-8f22-22997a48e126", "value": "Application of paint in thick, opaque masses, usually with a well-loaded brush or a palette knife."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "9af03343-bb5c-49f7-91f8-866e31f00437", "value": "http://vocab.getty.edu/aat/300412160"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "697ace15-9de7-49e8-a770-927535a8a5dc", "value": "German florin (system of money)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ae95e8be-3dc2-4d04-ae5a-1f8edfa2ab62", "value": "Unit of German currency of varying value minted as gold coins by several German states from 1354."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0a3bd811-0b26-4d12-89fa-76ae3bc1a254"> - <skos:prefLabel xml:lang="en">{"id": "1dae4049-f07e-476b-bbe8-34639a847a94", "value": "polyvinyl acetate"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/56c052f1-df82-432b-a915-99a6a42e5c94"> + <skos:prefLabel xml:lang="en">{"id": "bf48e5aa-ac11-4e6f-8a62-82d50302f758", "value": "inches"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "60fb64b2-9621-4bdc-99a2-dde9309ea26f", "value": "Synthetic resin derived from the polymerization of vinyl acetate. Used primarily as the filming agent in water-based paints, and also as an ingredient in adhesives."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "9024c7dd-7e34-4079-89f9-739625f7c03b", "value": "http://vocab.getty.edu/aat/300014507"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "057c643f-3296-4397-80d5-67ef651dc2da", "value": "http://vocab.getty.edu/aat/300379100"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "12bc7d04-0526-4f4a-9100-42b30d874567", "value": "Units of length in the imperial and United States customary systems of measurement, the twelfth part of a foot, 1/36 of a yard. Derived from the Old English ince, or ynce, and from the Latin unit uncia, one-twelfth of a Roman foot, or pes."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7bf9197c-f82d-4ce3-9e4d-2221c017d45b"> + <skos:Concept rdf:about="http://localhost:8000/0f572454-3e77-4d9e-8ea2-774e28469f3a"> + <skos:prefLabel xml:lang="en">{"id": "0cd86f12-4ff7-46d1-823d-a07ff0d7bc54", "value": "seconds (units for duration)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "47b6d2a0-3419-43cc-a0b8-f029c70a6b7c", "value": "Measurements of time equal to 1/60 part of a minute or 1/3600 part of an hour."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "cc906544-edb2-4bcb-9ee0-d7a38843e53a", "value": "http://vocab.getty.edu/aat/300379239"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "3b16cc0c-2fbf-4315-8e7a-806cfa54fee3", "value": "Identification of a person with a particular state or nation. In a modern sense, the it is the legal status of being a citizen or subject of a particular state, usually involving mutual obligations of support and protection."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "e878ac9b-dbf5-4abc-ae03-be487472ef0a", "value": "http://vocab.getty.edu/aat/300379842"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "c50786c7-6ec0-4809-8cc4-c8dbad061a8a", "value": "nationality"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5bd3fd11-b460-42d1-ac1e-46eb1f86e9f4"> - <skos:narrower rdf:resource="http://localhost:8000/8adca8e5-52db-434d-905f-477db70b08e9"/> - <skos:narrower rdf:resource="http://localhost:8000/29fb8dc0-61e3-4d99-a705-bf5ce8a7c61d"/> - <skos:narrower rdf:resource="http://localhost:8000/1b0aaa1b-cc86-4b07-a317-142261d3f580"/> - <skos:prefLabel xml:lang="en-us">{"id": "e4975f05-f30f-48ba-88a4-b5bac66d0c67", "value": "Person Attribute Concepts"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/cddda87a-6281-4547-a2e0-4047994836c8"> + <dcterms:identifier xml:lang="en">{"id": "676100d7-f6ec-4069-8132-983442f25e8c", "value": "http://vocab.getty.edu/aat/300379429"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "4f0b14d8-2a24-4709-9dfe-2c3f9d57154f", "value": "sampling"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/463cf53d-6aa0-4186-81e2-bf7f5d7eb21f"> - <dcterms:identifier xml:lang="en">{"id": "4ace0ca4-cd8c-4d23-9635-d35772c832aa", "value": "http://localhost:8000/463cf53d-6aa0-4186-81e2-bf7f5d7eb21f"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/cd68971d-382b-447e-8d12-c41462ddeaf3"/> - <skos:narrower rdf:resource="http://localhost:8000/a8bc18c8-e347-450d-a367-913f5e2180a4"/> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/cf73b0a9-ecca-471c-ade9-e4fbcd404f63"/> - <skos:narrower rdf:resource="http://localhost:8000/34eae943-67d8-42f8-abeb-6131b2a95b43"/> - <skos:prefLabel xml:lang="en-us">{"id": "2d5cf3bf-c3c9-4c26-9cfe-4c9cc3f740a0", "value": "Professions"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/d9c6e689-f74b-4494-b8d4-cd6cc78297c9"/> - <skos:narrower rdf:resource="http://localhost:8000/f16e685d-fa8a-4670-8707-99448fe2a791"/> - <skos:narrower rdf:resource="http://localhost:8000/b1bcc89f-22bd-42d3-bfc8-e694d5f8d460"/> - <skos:narrower rdf:resource="http://localhost:8000/210c4d7a-e17a-4f3d-b684-bf8cd803dcfa"/> - <skos:narrower rdf:resource="http://localhost:8000/55949598-b28f-4e42-a286-1a1e9871fb09"/> - <skos:narrower rdf:resource="http://localhost:8000/99096538-2ca4-42d9-bd9d-381002910e24"/> - <skos:narrower rdf:resource="http://localhost:8000/c1684495-03dd-4070-9921-a050e6a7a632"/> - <skos:narrower rdf:resource="http://localhost:8000/a35e64c3-6cea-4ae7-8208-bc1b3204a58e"/> - </skos:Concept> - </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "585269e2-c3cf-4701-8829-332bcc9500f6", "value": "http://localhost:8000/5bd3fd11-b460-42d1-ac1e-46eb1f86e9f4"}</dcterms:identifier> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/41e5f622-07c2-47c1-85b4-b7a1736de1f0"> - <skos:narrower rdf:resource="http://localhost:8000/e0cb0905-bf56-488f-b682-4a14cc0afa49"/> - <dcterms:identifier xml:lang="en">{"id": "ed9ce9bc-4d1f-466f-877e-909f4b77f3d8", "value": "http://localhost:8000/41e5f622-07c2-47c1-85b4-b7a1736de1f0"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/bd8f902a-454c-4122-9b3e-1bac24a66a06"/> - <skos:narrower rdf:resource="http://localhost:8000/23da916d-1424-44f5-a85e-e5dacbcce27a"/> - <skos:narrower rdf:resource="http://localhost:8000/f72e688f-855b-43d1-92aa-11aa679b01e6"/> - <skos:narrower rdf:resource="http://localhost:8000/e8a9a948-1cc2-452f-bd4b-33b1d84e899d"/> - <skos:narrower rdf:resource="http://localhost:8000/0bc8a3a2-baa2-4a32-9839-89b5bf917f3a"/> - <skos:narrower rdf:resource="http://localhost:8000/6696a427-b2ff-4fce-9f78-61861c063c37"/> - <skos:narrower rdf:resource="http://localhost:8000/54b03ff5-24de-427f-b8c9-1d6fba460bc1"/> - <skos:narrower rdf:resource="http://localhost:8000/19b0fa01-3d14-43c5-afde-0662376fb3f2"/> - <skos:prefLabel xml:lang="en-us">{"id": "28918723-3202-4ae2-b68a-0276370eba5d", "value": "Genders"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/c84d1624-d004-4640-9653-6a6cd99c32e2"/> - <skos:narrower rdf:resource="http://localhost:8000/3b46f7de-75f7-4999-a0ab-3a8b6ca5b01a"/> - </skos:Concept> - </skos:narrower> + <skos:scopeNote xml:lang="en">{"id": "8d0538b2-cf02-459d-ae9d-6023f84fd23c", "value": "In the sciences, taking of samples for technical analysis."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c3bf842e-3c29-48da-9908-b4fc844ba2a6"> - <dcterms:identifier xml:lang="en">{"id": "a862ee2f-2a45-444d-8231-3a4ee78199ee", "value": "http://localhost:8000/c3bf842e-3c29-48da-9908-b4fc844ba2a6"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "5b4e4c45-2256-4f89-a0c6-95dec2d836cb", "value": "handheld XRF spectrometers"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/bf8dc0ec-a78c-45f0-8cc2-0a578b6a3f38"> + <skos:prefLabel xml:lang="en">{"id": "c8aa27fa-1c6f-4119-a724-2c14e6e0d713", "value": "polyvinyl chloride"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b069cc7c-8f45-4d2e-920e-b9a8a410817b", "value": "A thermoplastic resin derived by the polymerization of vinyl chloride, used for thin coatings, insulation, and pipes."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "b54bafbd-9f34-4b05-8c01-fde18e43974a", "value": "http://vocab.getty.edu/aat/300014513"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"> - <skos:prefLabel xml:lang="en">{"id": "a1e69344-d821-4cf6-8763-731c955e0489", "value": "classification (category)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "097bb090-c56c-46b1-af32-8cd75291d28e", "value": "http://vocab.getty.edu/aat/300435444"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/fa855ab3-215b-4b2e-b314-11364d9b6cb3"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "08dbf153-013c-41de-9e0a-014dcc7b71a1", "value": "Indication of the placement of a work of art or architecture within a classification scheme that groups other, similar works together on the basis of similar characteristics"}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "83649a51-29a5-42f9-bfa1-7b5af5be5ed7", "value": "heating (physicochemical process)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "440a069f-49f1-4f34-9ba6-5b444d9cba48", "value": "Process of adding heat in order to raise the temperature."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "7f573839-1946-4aa8-875f-f97e848013e6", "value": "http://vocab.getty.edu/aat/300053885"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/0d8ce64c-f83c-4994-bac5-21b33ae4055e"> - <skos:narrower rdf:resource="http://localhost:8000/c5382a52-2102-4105-b96d-ddf6217d1a02"/> + <skos:Concept rdf:about="http://localhost:8000/72006c28-5bee-4c31-9b64-64d06ca3ab8b"> + <dcterms:identifier xml:lang="en">{"id": "e3d8fb02-9462-432c-b673-323ff963e4aa", "value": "http://vocab.getty.edu/aat/300262913"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "6133a066-73cf-4d0b-8e7a-fe73e3db49b5", "value": "The technique of decorating surfaces with cut-outs of paper, linoleum, plastic, or other flat material, over which a finish is applied."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/e37e4f70-b839-4127-9489-845946fec971"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/461bcd64-4dd9-4cab-a416-70462cd6f4c5"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "905634e8-1558-4cb1-8ffd-e8ea765a5a62", "value": "Text Subject Type"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/89462b0b-71a7-4872-a6ca-18ded17f7568"/> - <skos:narrower rdf:resource="http://localhost:8000/ca08a220-303e-4bee-92d9-8bd4f5302b49"/> - <skos:narrower rdf:resource="http://localhost:8000/15f52617-f1cf-40c6-b31f-eccd2dc8c252"/> - <skos:narrower rdf:resource="http://localhost:8000/75613ffa-549e-42cd-8a5a-b9ff66ae8c07"/> - <skos:narrower rdf:resource="http://localhost:8000/4490453e-608e-40d6-9e39-79af0f1cc9fe"/> - <skos:narrower rdf:resource="http://localhost:8000/cddda87a-6281-4547-a2e0-4047994836c8"/> - <skos:narrower rdf:resource="http://localhost:8000/1ff831dd-8f7a-4331-9579-51e513725ca3"/> - <dcterms:identifier xml:lang="en">{"id": "b04df3df-eb12-4535-9053-d17972f8801b", "value": "http://localhost:8000/461bcd64-4dd9-4cab-a416-70462cd6f4c5"}</dcterms:identifier> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/0bcbfb86-1397-4c6b-a39c-5cc44427da1b"> - <skos:prefLabel xml:lang="en-us">{"id": "7bb5979f-1179-45e0-8c6a-38fd2011c8fc", "value": "Document Part Types"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/dd91e772-2e37-4e47-8306-a678ce7fd10c"/> - <skos:narrower rdf:resource="http://localhost:8000/102d6dc8-5a56-418e-afbf-799398a37ba8"/> - <dcterms:identifier xml:lang="en">{"id": "3275ca4c-f72e-4c0e-9223-3ba939b6376f", "value": "http://localhost:8001/0bcbfb86-1397-4c6b-a39c-5cc44427da1b"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/2ebb9a11-2d7d-47de-90da-e728635cb76b"/> - </skos:Concept> - </skos:narrower> - <dcterms:identifier xml:lang="en">{"id": "e3c09db9-bc18-40b8-8813-b75f99ede85c", "value": "http://localhost:8000/0d8ce64c-f83c-4994-bac5-21b33ae4055e"}</dcterms:identifier> - <skos:prefLabel xml:lang="en-us">{"id": "14843376-bb96-451d-bf8e-ae10324c250a", "value": "Textual Types"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "d1238648-86fc-4ff8-be6c-74c73500578d", "value": "d\u00e9coupage (image making technique)"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/0b564536-35cf-4c35-9468-7e7ae25e913c"> + <dcterms:identifier xml:lang="en">{"id": "b15a7fe1-5b9e-4c75-a964-7b8cf57ac1f8", "value": "http://vocab.getty.edu/aat/300014495"}</dcterms:identifier> + <skos:prefLabel xml:lang="fr">{"id": "d4ccfc80-8ba4-4009-84fa-7b30810fcd97", "value": "polyur\u00e9thanne"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "866a4db3-9f85-4090-8687-01709a904b6c", "value": "Plastic based on polyether or polyester resin. "}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "e04afd3c-c969-4589-bd80-01217cb2b45f", "value": "polyurethane"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f5b916fc-e129-4391-9545-26871ddf3975"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "73c943b4-7dd9-4e46-bf1c-4dbc5797e586", "value": "http://localhost:8000/f5b916fc-e129-4391-9545-26871ddf3975"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "6fe31291-9759-4530-b9d1-26a376870970", "value": "illustrating"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/775271df-a7dc-4158-9eea-425ed089728d"> + <skos:prefLabel xml:lang="en">{"id": "42d745b3-1cd3-4425-85b1-f10ecbc9df3a", "value": "French franc (system of money)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "dc9d9d09-cdf4-4108-a664-4581b668e55e", "value": "http://vocab.getty.edu/aat/300412016"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "ceee6ca2-2869-479d-9bff-e95befcef22a", "value": "The standard unit of currency of France prior to adoption of the Euro."}</skos:scopeNote> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/d615bfb7-1503-42ab-8bdf-ab384ca24be6"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "8b2f7bb2-8710-44fc-acbb-9d605f99a0e1", "value": "http://vocab.getty.edu/aat/300054537"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "754a223a-6e81-4d05-9378-06d31db9b2c2", "value": "Branch of physical science that deals with the composition and properties of the elementary substances of which all bodies are composed, the laws that regulate their combination, and the various phenomena that accompany their exposure to diverse physical conditions."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "a5fd3707-c7ed-4ba9-aa6e-3ef8b972e76c", "value": "chemistry"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/6696a427-b2ff-4fce-9f78-61861c063c37"> + <skos:prefLabel xml:lang="en">{"id": "b8468b13-e6e6-4422-a887-1a5db12852ae", "value": "gender-neutral"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "cd2c9e56-0fb5-4d8e-846c-ea81d295ef7b", "value": "Suitable for, applicable to, or common to both males and females, not specifying gender. "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "65b20081-b8c4-48d2-a029-0710e03df777", "value": "http://vocab.getty.edu/aat/300417541"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/19b0fa01-3d14-43c5-afde-0662376fb3f2"> + <dcterms:identifier xml:lang="en">{"id": "aa534651-1ffa-487d-88ea-d0bc2a681762", "value": "http://vocab.getty.edu/aat/300189559"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "865e009c-ad1a-4f15-9d57-fb43d4730834", "value": "male"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "bedd4cf5-01e9-4780-884a-aff7008da268", "value": "Referring to the sex that in reproduction normally produces sperm cells or male gametes."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/f3e8cc93-09ea-448d-9bae-d33a1c396919"> + <skos:scopeNote xml:lang="en">{"id": "6993d3b3-7730-4e04-bb23-178582fa13b9", "value": "The standard unit of currency of the Eurozone, comprising member states of the European Union."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "44e17e1f-acf9-4aa7-8acf-7e7afa0fd0a3", "value": "Euro (system of money)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "774a98b7-5ee5-4d9d-8acc-51be549e7361", "value": "http://vocab.getty.edu/aat/300411996"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/71067890-c1e8-471c-9144-51bf656fb632"> - <skos:prefLabel xml:lang="en">{"id": "ffdfd602-933d-46ff-9dae-156bd5479947", "value": "documents (object genre)"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "feeb02c5-20aa-4105-90a4-c3e5b6d4b641", "value": "Physikalische oder digitale Hinterlegung eines Objekts oder einer Information, die so gestaltet ist, dass sie der Kommunikation dient. Im weitesten Sinne beinhalten \"Dokumente\" alle Eigenschaften um sie zu katalogisieren oder zu Verschlagworten, das schlie\u00dft auch nicht druckf\u00e4hige Medien mit ein. F\u00fcr die Aktivit\u00e4t des Sammelns und Aufnehmens von Informationen, siehe \"Dokumentation\"."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "e5e8b255-2dad-45e7-bb35-b9e0591ba4bd", "value": "Dokument (Objektgattung)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "07769b03-336d-464a-a7b8-927e1908f49a", "value": "Physical or digital representations of a body of information designed with the capacity to communicate. In its broadest sense, \"documents\" include any item amenable to cataloging and indexing, that is, including nonprint media. For the activity of gathering and recording information, see \"documentation (function).\" For specfic types of documents, see concepts under \"document genres.\""}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/977c662f-c1d9-4a35-b556-696517e312ec"> + <skos:altLabel xml:lang="en">{"id": "6fea6166-b592-11ee-8d43-abc1307f37d8", "value": "Point X-ray fluorescence spectroscopy (XRF) Measurement"}</skos:altLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "d6622efb-aabc-47ab-b91a-d4dfeb51e52a", "value": "http://vocab.getty.edu/aat/300026030"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "c8d6ea37-ebd1-45df-ae96-bfd8201c3f99", "value": "Point XRF Measurement"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "df78a779-7e1f-4fd0-b2e0-f68f4876148f", "value": "Point XRF Measurement"}</dcterms:identifier> </skos:Concept> <skos:Concept rdf:about="http://localhost:8000/84a1db8c-eb26-445f-be42-48ed6dc5b3fd"> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f396443b-2e35-44e3-8887-8bbb39f6b44a"> - <dcterms:identifier xml:lang="en">{"id": "839e7b10-d324-4337-b1f2-b887ecbb0aaa", "value": "http://vocab.getty.edu/aat/300055147"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d492a17a-22ce-4dd0-bb9e-a7b1c4081e19", "value": "Pattern of attitudes and behavior that in any society is deemed appropriate to one sex rather than another. For the concept of physiological traits that distinguish the males and females of a species, use \"sex.\" For the sum of an individual's sexual emotions, ideas, and behavior, use \"sexuality.\""}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "7c1adac4-5031-4af0-a9c6-2473e3fd6e08", "value": "sex role"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> + <skos:narrower rdf:resource="http://localhost:8000/f396443b-2e35-44e3-8887-8bbb39f6b44a"/> + <skos:narrower rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> <skos:narrower> <skos:Concept rdf:about="http://localhost:8000/c6a32789-73d3-450d-837c-dc4932716b61"> - <skos:scopeNote xml:lang="en">{"id": "e9d9f9f9-3435-4f28-b3ec-6c8554acf526", "value": "Occupations or other recurring activities that require an expert level of knowledge and achievement in some subject, field, science, or discipline, especially those activities that involve prolonged training and a formal qualification. For recurring jobs or livlihoods that do not necessarily involve this same high level of expertise, use \"occupations.\""}</skos:scopeNote> <dcterms:identifier xml:lang="en">{"id": "022d0728-732a-4275-855c-01c7f5e8353e", "value": "http://vocab.getty.edu/aat/300393201"}</dcterms:identifier> <skos:prefLabel xml:lang="en">{"id": "bdd5807f-1913-461d-92d2-d178085ad417", "value": "professions"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:scopeNote xml:lang="en">{"id": "e9d9f9f9-3435-4f28-b3ec-6c8554acf526", "value": "Occupations or other recurring activities that require an expert level of knowledge and achievement in some subject, field, science, or discipline, especially those activities that involve prolonged training and a formal qualification. For recurring jobs or livlihoods that do not necessarily involve this same high level of expertise, use \"occupations.\""}</skos:scopeNote> </skos:Concept> </skos:narrower> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> <dcterms:identifier xml:lang="en">{"id": "f18c417d-9ea9-45b6-8571-fd70d2cb4ba7", "value": "http://localhost:8000/84a1db8c-eb26-445f-be42-48ed6dc5b3fd"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/7bf9197c-f82d-4ce3-9e4d-2221c017d45b"/> - <skos:narrower rdf:resource="http://localhost:8000/62867f7c-93a9-447f-8cac-0066e587956a"/> + <skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/7bf9197c-f82d-4ce3-9e4d-2221c017d45b"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "c50786c7-6ec0-4809-8cc4-c8dbad061a8a", "value": "nationality"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e878ac9b-dbf5-4abc-ae03-be487472ef0a", "value": "http://vocab.getty.edu/aat/300379842"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "3b16cc0c-2fbf-4315-8e7a-806cfa54fee3", "value": "Identification of a person with a particular state or nation. In a modern sense, the it is the legal status of being a citizen or subject of a particular state, usually involving mutual obligations of support and protection."}</skos:scopeNote> + </skos:Concept> + </skos:narrower> <skos:prefLabel xml:lang="en-us">{"id": "69cb22f2-7f1c-4873-b691-f4fdd1c34a43", "value": "Meta Types"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/bd8f902a-454c-4122-9b3e-1bac24a66a06"> + <skos:Concept rdf:about="http://localhost:8000/2e3e64b3-c802-4bbc-b284-5dbcd50ee4da"> + <skos:prefLabel xml:lang="en">{"id": "e69b63e1-2141-45b3-aa94-3d4ef89bb168", "value": "FORS Measurement"}</skos:prefLabel> + <skos:altLabel xml:lang="en">{"id": "6fea6fbc-b592-11ee-8d43-971353e07189", "value": "Fiber Optics Reflectance spectroscopy (FORS) Measurement"}</skos:altLabel> + <dcterms:identifier xml:lang="en">{"id": "7bc7509b-2650-40f6-a78a-1251f79242a3", "value": "FORS Measurement"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "6d1af8ca-a78b-4c91-b9fe-31b715caeaa2", "value": "http://vocab.getty.edu/aat/300417544"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "4be6ecb6-7fb2-40ab-b9ad-15d8c2043e10", "value": "intersexual"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "578bcc6d-fda6-4eff-a06e-fcdb4e7b3e3f", "value": "Typified by or having some characteristics proper to the other sex, or having both male and female characteristics."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/dd91e772-2e37-4e47-8306-a678ce7fd10c"> - <dcterms:identifier xml:lang="en">{"id": "272474dc-7fd3-41f2-b240-ea450c728b90", "value": "http://vocab.getty.edu/aat/300417223"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "6217b229-499f-4d91-b78c-bc042375e979", "value": "paragraphs"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/6ecfc5d9-6082-465b-8294-670ad9c9270e"> + <skos:prefLabel xml:lang="en-us">{"id": "2ad92a58-a25b-4073-a8d9-8dfaa15465dd", "value": "printmaking"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "df28672b-e210-44c3-acc0-a9d94ae2421c", "value": "A distinct passage or section of a text, usually composed of several sentences, dealing with a particular point, a short episode in a narrative, a single piece of direct speech."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "4beeb2ac-469e-40fa-a3be-704248f76fa8", "value": "Refers to the activity of producing prints as works of art; for the specific processes employed, use such terms as \"intaglio printing\" or \"mezzotint.\" For the production of other types of printed material, use \"printing.\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "0285dba5-12ee-41fc-b360-21d57287f75a", "value": "http://vocab.getty.edu/aat/300131119"}</dcterms:identifier> + <skos:prefLabel xml:lang="de">{"id": "f47fcc15-9e74-4d05-b260-6c1c74b740a6", "value": "Druckgrafik"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/23cc4228-b166-403e-87c4-fb88ab7ff204"> - <skos:scopeNote xml:lang="en">{"id": "13f34793-5fbb-4af3-a004-1eb973215d7f", "value": "Generally, the art or practice of taking and/or processing photographs that reproduce hues perceptible to the human eye. Extended to include imagery in which colors have been artificially enhanced or altered. "}</skos:scopeNote> - <skos:prefLabel xml:lang="en-us">{"id": "46461a06-b287-4df6-aa74-351995b0f4a8", "value": "color photography"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "2457158d-d045-4e55-a20f-e8e679b2a4f7", "value": "http://vocab.getty.edu/aat/300134530"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/2ebb9a11-2d7d-47de-90da-e728635cb76b"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "3a037fd1-151c-4c58-8ba0-ee9e8a3b3be1", "value": "http://vocab.getty.edu/aat/300200012"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "058d34d1-8a7a-444d-87e1-5eec0222f9f7", "value": "columns (layout features)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "74f715d0-9bbc-4574-bb8d-37ba08fd014d", "value": "Vertical lists of items or vertical sections into which the text of a manuscript or printed page are divided, separated by rules or blank spaces. For texts written from side to side across the page, use \"long line format.\""}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4ca81629-eea8-4c65-a963-0012a9a33d7a"> - <dcterms:identifier xml:lang="en">{"id": "d4e04ce5-e76c-44c5-867d-111e0c61c6a5", "value": "http://localhost:8000/4ca81629-eea8-4c65-a963-0012a9a33d7a"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/e26bc6aa-28c3-4462-8f15-5015ed64c3fe"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/4617ed4f-e1ff-4a2d-90e1-c22cac2a1436"/> - <skos:narrower rdf:resource="http://localhost:8000/6c796833-b93f-4c85-b9df-0614295be6f3"/> - <skos:prefLabel xml:lang="en-us">{"id": "47084bca-8401-42a5-a381-f27d53f122e4", "value": "Event/Activity Types"}</skos:prefLabel> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/832eacc2-f7c9-449c-a6d0-8d938ab74bd8"> - <dcterms:identifier xml:lang="en">{"id": "606e6c7e-f2f5-4698-ab26-e0a73e9882d8", "value": "http://localhost:8001/832eacc2-f7c9-449c-a6d0-8d938ab74bd8"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/d4518c68-1a63-49fc-b515-a251cbdb76e9"/> - <skos:prefLabel xml:lang="en-us">{"id": "ccb0eaee-a4de-4d0a-8be8-a387799f55df", "value": "Personal Activity Types"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> + <dcterms:identifier xml:lang="en">{"id": "e82533a1-a469-4900-b215-d52268b928b0", "value": "http://vocab.getty.edu/aat/300054196"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "718525f1-3d39-4844-915b-53f650bd97f6", "value": "Producing visible forms primarily by delineation, usually by the direct application of material or instrument to the surface of the support."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "53f085c0-d64f-4015-88d4-f7089000a60b", "value": "drawing (image-making)"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/ab9ab119-7e05-4841-9679-7bcc13548caa"> + <skos:Concept rdf:about="http://localhost:8000/62fdcff5-5abc-4477-a916-bbae886f38af"> + <skos:prefLabel xml:lang="en">{"id": "c095f7ae-f471-47cd-aac2-54c38b3579af", "value": "inputting"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "12f9ac43-6c88-466b-99a3-ef764300f5fd", "value": "http://localhost:8000/ab9ab119-7e05-4841-9679-7bcc13548caa"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/25e157c6-b10a-4198-8abf-0fc18bf80b3d"/> - <skos:narrower rdf:resource="http://localhost:8000/2f397086-f12b-4f43-881b-2f582b307968"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2c7f2bb2-7527-438c-877b-90b1a5c67b83"> - <skos:prefLabel xml:lang="en">{"id": "90623a2a-9684-4090-aa35-64395e34ed45", "value": "gift (method of acquisition)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e1e9e840-9495-4489-b6c1-7633fc5631bc", "value": "http://vocab.getty.edu/aat/300417637"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "8f523ce2-23e2-4b05-a3c8-50cc0cd7af97", "value": "General term for the method of acquiring property through transference by one person or institution to another person or institution, voluntarily and without any payment required."}</skos:scopeNote> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/5b8027bf-d85e-4801-8c9d-723f9b8d9fb5"/> - <skos:prefLabel xml:lang="en">{"id": "ef0d0cbf-719e-4479-88eb-0c20dc17ce5a", "value": "Transfer of Custody Event Type"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "33bab762-6a2e-43bf-9c1e-6257f1f30210", "value": "http://localhost:8000/62fdcff5-5abc-4477-a916-bbae886f38af"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/9492b046-b723-48c9-a1f7-6117c62e967f"> - <skos:prefLabel xml:lang="en">{"id": "a03797ed-d142-4394-b7c0-6e539f24faaa", "value": "works of art"}</skos:prefLabel> - <skos:prefLabel xml:lang="fr">{"id": "88ed0e4f-e1e0-461c-9ed1-5523eb331284", "value": "\u0153uvre d'art"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c096495a-da7e-421c-b158-355f909d96fc", "value": "http://vocab.getty.edu/aat/300133025"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "ec2c91b4-6c62-4267-bee4-0d01a22605e2", "value": "Works of art in any medium, including performance art. A work of art may exist as a part of a larger object, e.g., a mural painting or a painting on a piece of furniture. When referring to the study or practice of the fine arts or the fine and decorative arts together, use \"art.\" In reference to pieces of fine or decorative arts as collectables rather than museum objects, in English use either \"art objects\" or the French term \"objets d'art,\" which emphasizes this meaning."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/2c276821-6d7b-421d-bea4-814669f7aa7f"> + <skos:scopeNote xml:lang="en">{"id": "84ca6a6c-c95d-47b2-9adf-bfbf04536ec6", "value": "In the metric system, units of length equal to 1/100 of a meter, or .3937 (nearly 2/5) of an inch. "}</skos:scopeNote> + <skos:prefLabel xml:lang="en-us">{"id": "451e8af6-f86b-47be-ad29-180849679726", "value": "centimeters"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e46cb28d-733d-4ac1-874d-4374166fcdf5", "value": "http://vocab.getty.edu/aat/300379098"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/47e940a3-b483-41c9-9430-34c990014764"> - <skos:prefLabel xml:lang="en-us">{"id": "bb1ad401-9ade-4e3a-abef-17ad92934f05", "value": "Joining as Contact Point"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/8ba7ae28-7ab0-409c-9259-023ddb0c44b5"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "07c0586d-6359-4f51-97e4-3819e4ef6c99", "value": "http://localhost:8000/47e940a3-b483-41c9-9430-34c990014764"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "f13aac0c-d96c-4f4d-94e0-5881c840e79b", "value": "participant"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "1ace727a-599e-4330-9168-28a146f99eb2", "value": "http://localhost:8000/8ba7ae28-7ab0-409c-9259-023ddb0c44b5"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/5f14cdc5-0430-4623-80d2-290510b99807"> - <dcterms:identifier xml:lang="en">{"id": "0fa6121e-7edd-470e-b79d-b26ccdce9e49", "value": "http://vocab.getty.edu/aat/300189140"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "949703de-de31-4226-adfb-e379a7bdd55d", "value": "terminating"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/62e7809a-d1d3-4b1b-b242-e5c217503c77"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "44011921-6c29-4e20-8156-a41a69d72df6", "value": "Concluding or discontinuing an activity, program, or job position. For the act of dismissing an employee, use \"firing (managing).\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "fe0edade-d755-4c75-a820-549c99509571", "value": "http://vocab.getty.edu/aat/300379245"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "62ad5518-6b00-43e0-af81-667f4ce753f7", "value": "months"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "c038b0d0-f25a-45d6-8bf0-cf42f87a89d7", "value": "Units of time equal to approximately 1/12th of a year or the 4-week time period of one full circuit of the Moon around the Earth."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/94bb858b-3d17-41c7-a145-d70fda1822c5"> + <skos:Concept rdf:about="http://localhost:8000/8201eb9f-7936-4220-8403-074ce3e9ea48"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "a3a25c86-55f0-49f0-859b-50123974b570", "value": "watercolor painting (technique)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "a5f9db10-12a7-4856-8d4e-6722c08ceab9", "value": "http://vocab.getty.edu/aat/300389895"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "f40b54d9-1dab-4510-b167-63f5c2238cc8", "value": "The technique of painting with pigments in a water-soluble binder and thinned with water, usually on paper. Includes gouache painting, although gouache is not technically watercolor paint."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "e3aae916-3148-43a8-bfdb-cdb3f90337a6", "value": "http://localhost:8000/8201eb9f-7936-4220-8403-074ce3e9ea48"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "4feb9f3f-6823-4723-bc6e-6e331401b29a", "value": "fiber optics reflectance (FORS) spectrometers"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/cbc2485e-0e8b-4884-9045-e764078bbbb2"> - <skos:prefLabel xml:lang="en">{"id": "06403250-0b9c-4208-8a24-3bd6d5f639a3", "value": "oil painting (technique)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "3e0dbfa7-9719-4570-a652-693b2f9cc76a", "value": "The art or practice of producing creative works in oil paint, which is pigment suspended in vegetal drying oils. It dates from at least the Middle Ages in Europe, and was widely adopted for easel painting by the fifteenth century."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/f18613e5-aa77-4400-97b9-aaf6987de517"> + <dcterms:identifier xml:lang="en">{"id": "967bedd9-869a-4715-98a0-e9e024d503eb", "value": "http://vocab.getty.edu/aat/300072633"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "c3e0236e-f678-439f-953e-8c86b6da4f16", "value": "depth (size/dimension)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "59a3a161-643c-4df9-927f-45af575ff72b", "value": "Length of a straight line measured downward from a plane or surface, or inward from a plane or surface. For the measurement or extension through or between opposite surfaces, prefer \"thickness,\" although usage overlaps."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "6d052565-8087-47f8-92ec-9bd49c30ed7e", "value": "http://vocab.getty.edu/aat/300178684"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4d2e8c94-7536-4067-ae2f-2e52b337fa0b"> - <skos:scopeNote xml:lang="en">{"id": "a1d3f267-0996-4e24-b5be-0e1c4669d1db", "value": "Promises by one party to make a gift or gifts to another party at some future time. To be legally enforceable, a promised gift requires three elements: donative intent, delivery, and acceptance."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/d29562a6-93e2-409e-9bb4-bcc58077113f"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "5c5d04e7-2148-478b-95ce-17778df38e51", "value": "promised gift (method of acquisition)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "9a86b80d-c24d-4a4b-a50c-748deae8b323", "value": "http://vocab.getty.edu/aat/300435595"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "f52b672f-f007-45c0-a83a-fed700ef7313", "value": "http://localhost:8000/d29562a6-93e2-409e-9bb4-bcc58077113f"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "34b5e1fa-62e1-4575-9f95-ec7b74777568", "value": "Raman spectrometers"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/afbf17a2-4e83-4de6-963a-b985dc0f7c35"> - <dcterms:identifier xml:lang="en">{"id": "4bcca87a-2564-43eb-88ed-3cfaf5ec5bc2", "value": "http://vocab.getty.edu/aat/300389895"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/c016495d-3351-43a9-8b8e-064ea662a3b9"> + <skos:prefLabel xml:lang="en">{"id": "3dbd252b-7859-4cc9-acae-0d44b7f7e83c", "value": "polyamide"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "75ba5665-477a-41be-b3a9-a82ae8c3972c", "value": "Thermoplastic polymer group which includes nylon and other synthetic resins."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "4199800d-3099-4540-9867-a00e0ae3aa6a", "value": "http://vocab.getty.edu/aat/300014469"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "346bb7bd-d384-4286-bf02-37cf6e3635bc", "value": "The technique of painting with pigments in a water-soluble binder and thinned with water, usually on paper. Includes gouache painting, although gouache is not technically watercolor paint."}</skos:scopeNote> - <skos:prefLabel xml:lang="en-us">{"id": "06dc25d4-070f-4461-9490-d29abfadedbf", "value": "watercolor painting (technique)"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "e6a2a353-6588-4997-87c5-ceafd2dd1ca4", "value": "polyamide"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/32c7ac9c-9ab0-445b-b0c7-e08f65850356"> + <skos:Concept rdf:about="http://localhost:8000/ba5bbea8-8984-41ff-9b29-f4069003edbf"> + <skos:prefLabel xml:lang="en">{"id": "0fa02b3a-eb9b-4e6c-a0fd-3e948795df10", "value": "display information"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "a0a8d0f0-94fc-4476-bc3a-658ca771d6fd", "value": "mailing"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "b471e6fb-b7bb-42a3-9952-611a06729794", "value": "http://vocab.getty.edu/aat/300077526"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "c1a9f17e-73aa-4983-ac64-403756b8fff1", "value": "Sending through a postal service."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "393b89a0-38f2-42df-8153-604b94f6e4bd", "value": "http://vocab.getty.edu/aat/300404669"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "6174b05d-b3bd-4b6f-825d-ff082445e9a0", "value": "Information that is formatted and presented in a form that is easily legible and understood by users, often allowing expressions of uncertainty and nuance. Display information is often used in conjunction with \"indexing information.\""}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1ff831dd-8f7a-4331-9579-51e513725ca3"> - <skos:scopeNote xml:lang="en">{"id": "a27adf11-697d-4e77-9bdf-cae19f74ced5", "value": "The application of testing methods to materials or objects in order to analyze their composition and manufacture. In a conservation science context, this may refer to movable art works and artifactual objects in a conservation lab. For a broader range of testing methods, prefer \"scientific analysis.\" "}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/3c4df3ee-bf83-4b3e-b2d1-0dc42baf6088"> + <skos:prefLabel xml:lang="en">{"id": "56963ec5-de92-4707-9ef8-c957231d9aa1", "value": "X-ray fluorescence (XRF) spectrometers"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/c3bf842e-3c29-48da-9908-b4fc844ba2a6"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "0b680db9-f601-4c16-a3f7-1ae7fe55384b", "value": "http://vocab.getty.edu/aat/300379518"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "5a008605-3bf8-4976-a1ef-2c23ac26dfc3", "value": "technical analysis"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "19e4a535-0f91-42b2-b61c-869cd8365915", "value": "http://localhost:8000/3c4df3ee-bf83-4b3e-b2d1-0dc42baf6088"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/cf3ccbc1-5524-4c0b-a706-61dd71554742"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/d4518c68-1a63-49fc-b515-a251cbdb76e9"> - <skos:scopeNote xml:lang="en">{"id": "b185df50-754c-46ba-8329-f3f7b99373a0", "value": "Of people and corporate bodies, the state of being professionally active. A common example is in reference to dates associated with people or corporate bodies, where the specific dates, and sometimes loci, of birth and death are unknown; the term is commonly so-used in the discipline of art history for estimated life dates based on the oeuvre or other documentation of the artist. It may refer to the time of the artist's apprenticeship through old age, regardless of whether this was his or her most prolific period. For people other than artists and architects, prefer \"flourished,\" which has the connotation of demarking that time when the person has achieved full development or success. However, usage overlaps."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/f4643b7d-2710-4aca-8892-c0eeed02dfe9"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "b9ce07a4-3480-4521-9893-e04c72368d09", "value": "active (professional function)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "e85c380c-4c8c-4743-8341-cb473fa2737e", "value": "http://vocab.getty.edu/aat/300393177"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "0798bf2c-ab07-43d7-81f4-f1e2d20251a1", "value": "alternate titles"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "a8dec727-4fec-4288-a78f-4a3abd7f3894", "value": "http://vocab.getty.edu/aat/300417227"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "16ed2801-da79-4f9f-91bf-0e65563ff274", "value": "Titles that vary from the primary title. Distinguished from \"alternative titles.\""}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/66ac5ba5-c498-48fc-9a31-e132dce34883"> - <skos:scopeNote xml:lang="en">{"id": "a0d66729-eec7-4031-ac96-2fd1417a4ed6", "value": "Conducting diligent and systematic inquiry or investigation into a subject or question, especially in order to discover or revise facts or theories."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "4de10d66-d0c7-4186-86f6-f7eb4a20f18b", "value": "research task"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/0a3bd811-0b26-4d12-89fa-76ae3bc1a254"> + <skos:scopeNote xml:lang="en">{"id": "60fb64b2-9621-4bdc-99a2-dde9309ea26f", "value": "Synthetic resin derived from the polymerization of vinyl acetate. Used primarily as the filming agent in water-based paints, and also as an ingredient in adhesives."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "1dae4049-f07e-476b-bbe8-34639a847a94", "value": "polyvinyl acetate"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "9024c7dd-7e34-4079-89f9-739625f7c03b", "value": "http://vocab.getty.edu/aat/300014507"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "7383bcdf-b0a9-4896-9171-8621e2deeabf", "value": "http://vocab.getty.edu/aat/300054687"}</dcterms:identifier> - <arches:sortorder xml:lang="en-us">{"id": "68ebb44e-0ffa-4aba-848b-cb5487f3fcf2", "value": "2"}</arches:sortorder> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/fa855ab3-215b-4b2e-b314-11364d9b6cb3"> - <dcterms:identifier xml:lang="en">{"id": "7f573839-1946-4aa8-875f-f97e848013e6", "value": "http://vocab.getty.edu/aat/300053885"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/71f2308c-6d7e-423d-8d23-17a0df059a75"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "83649a51-29a5-42f9-bfa1-7b5af5be5ed7", "value": "heating (physicochemical process)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "440a069f-49f1-4f34-9ba6-5b444d9cba48", "value": "Process of adding heat in order to raise the temperature."}</skos:scopeNote> + <skos:scopeNote xml:lang="en">{"id": "a8014981-19db-4dab-9645-d243e8746f2b", "value": "Units of weight equal to 1/16 of a pound avoirdupois (approximately 28 grams). Originally equaled 1/12 of a pound in troy and apothecaries' measure, equal to 480 grains (approx. 31.1 grams)."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "5e4abbd1-70b0-46ff-8dab-2b8754b0668f", "value": "ounces (units for weight)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0bedd862-cfcd-4d93-82a0-d0989649740f", "value": "http://vocab.getty.edu/aat/300379229"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/34eae943-67d8-42f8-abeb-6131b2a95b43"> - <skos:scopeNote xml:lang="en">{"id": "93657975-e4c7-4cb0-ab08-f95a9d248516", "value": "People trained in or practicing architecture, which is the art of designing and building habitable structures, especially those considered to have aesthetic value."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "84379c63-dbb5-416a-bba2-6ee9968b9d6b", "value": "architects"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "aad6791d-2ea1-4635-84a4-f5f4e598344a", "value": "http://vocab.getty.edu/aat/300024987"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/934467ee-a5a4-4bdf-b377-0ffa5e51c009"> + <skos:prefLabel xml:lang="en">{"id": "b8d1993b-1fb9-43df-9efd-02d7dcd3418f", "value": "inverted terms"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="de">{"id": "25e735b4-90ff-482d-8f60-dc20c8f41425", "value": "Architekt"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6c2ff425-2502-452d-b6c5-6d5275ed9cf5", "value": "http://vocab.getty.edu/aat/300404672"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "fb738dc0-2a0a-46e4-8ab3-d73f09e4aa38", "value": "Multiple-word terms or names that are arranged in the form used in back-of-book indexing or other similar situations. Examples are Wren, Christopher and buttresses, flying. Distinguished from natural order terms or names."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/d29562a6-93e2-409e-9bb4-bcc58077113f"> - <dcterms:identifier xml:lang="en">{"id": "f52b672f-f007-45c0-a83a-fed700ef7313", "value": "http://localhost:8000/d29562a6-93e2-409e-9bb4-bcc58077113f"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "34b5e1fa-62e1-4575-9f95-ec7b74777568", "value": "Raman spectrometers"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/a3ddd46c-0aba-4ba0-a943-c9d793e1a9bc"> + <skos:prefLabel xml:lang="en">{"id": "8eaed662-c397-430d-b3e1-f7ff3c885e9f", "value": "postcodes"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "68722445-85c1-45ff-ae1e-46b59d2fbd42", "value": "http://vocab.getty.edu/aat/300419274"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "b16803bd-dc20-4dc3-a357-b30fdcaf0de1", "value": "Numeric or alphanumeric codes included in mailing addresses to facilitate the sorting and delivery of mail."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1fc2970f-60b4-46fe-82e8-a874a978e6a3"> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f3725a5c-4f37-4142-b252-86bdd125988a"> - <skos:prefLabel xml:lang="en">{"id": "461bf80b-bf25-47a1-b757-2dbefb157aa4", "value": "curating"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "c192ac2d-6873-4310-877e-ce50614056da", "value": "Superintending or managing the collections, exhibitions, research activities, and personnel of a museum, art gallery, zoo, or other place of exhibit; also, the superintending or managing of a single collection or subject of study in such an institution."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "1bbdfb3f-e3ed-4331-a131-e2a028370e6e", "value": "http://vocab.getty.edu/aat/300054277"}</dcterms:identifier> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/6585f0e4-712a-4b88-81c8-7d8732f9fa78"/> - <dcterms:identifier xml:lang="en">{"id": "1f2f8178-6d13-4cba-a770-ce613d318e9d", "value": "http://localhost:8000/1fc2970f-60b4-46fe-82e8-a874a978e6a3"}</dcterms:identifier> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/4e7f0c35-fbb8-477f-8a19-00655d840e45"> - <skos:prefLabel xml:lang="en">{"id": "18d7f1d5-20b9-4f53-8532-013f7c0c7d0e", "value": "digitizing"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "7e9aa1cd-90bd-4451-af35-de8c1b061e2c", "value": "Converting, sound, motion pictures, images, or other analog data to binary form to be stored or altered with a computer."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "5d9c6e15-0b11-48e5-a4cd-af6de9b73072", "value": "http://vocab.getty.edu/aat/300202383"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/edcb51e8-6c01-440f-8ace-d707c352148a"/> - <skos:narrower rdf:resource="http://localhost:8000/dc5fe25b-6499-4b41-9ac8-08db72fcadf4"/> - <skos:narrower rdf:resource="http://localhost:8000/3713f15e-f142-4ce0-9119-ac3d4d6a248e"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f01f324e-a192-4aab-9bdb-9a2fd5c355a2"> - <dcterms:identifier xml:lang="en">{"id": "e35c39b9-19d5-40e5-beb8-693e083cf1e6", "value": "http://localhost:8000/f01f324e-a192-4aab-9bdb-9a2fd5c355a2"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "5fe8d8c0-565a-4d99-9774-5728fdf28d32", "value": "inserting"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/70b50991-3662-4373-a7d5-f378139bfee8"/> - <skos:narrower rdf:resource="http://localhost:8000/546e7e19-54c6-44ed-8a81-3da08e275009"/> - <skos:narrower rdf:resource="http://localhost:8000/081ac682-081c-4a50-9fb8-30c49aa8da7c"/> - <skos:narrower rdf:resource="http://localhost:8000/16f5f34f-a67f-444a-afd7-117831a1a512"/> + <skos:Concept rdf:about="http://localhost:8000/fde9f103-4536-4d8d-8882-9efb5084362c"> + <dcterms:identifier xml:lang="en">{"id": "1fa618a0-70d9-465f-a69a-f7a5e0b3cee2", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/titles/display-title"}</dcterms:identifier> + <skos:prefLabel xml:lang="en-us">{"id": "ec635afd-beb1-426e-a21c-09866ea94d25", "value": "display title"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/c1b53f0c-f372-4094-b0cb-5be66a44cefe"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/e576485c-36c1-41e0-be6e-67dde3c52d9f"> - <dcterms:identifier xml:lang="en">{"id": "298e8913-f3ac-41ed-a886-47b053feba5a", "value": "http://vocab.getty.edu/aat/300123578"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "72fce3be-d216-473e-8eda-87c7988b2929", "value": "Picking out or choosing in preference to another or others."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "48db74cd-8599-42e8-bcfc-0e79a9e077cd", "value": "selection (analytical function)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/26b5a060-eddb-4e4a-a98c-98abc6272296"> - <skos:prefLabel xml:lang="en">{"id": "a4c360d7-8755-4433-bc0c-fad30493a5c1", "value": "deleting (information handling)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "a3328185-3cc5-47fd-a45d-00e8478b0ed0", "value": "The process or function of subtracting material or records."}</skos:scopeNote> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "54a69f92-4cfa-4da0-b8ce-4a96549bd6c8", "value": "http://vocab.getty.edu/aat/300417258"}</dcterms:identifier> - </skos:Concept> - </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "157dca83-807c-4340-913d-67adc0fc24f3", "value": "Set Types"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/e15a5258-c4c6-479f-bd0b-30e83ec5a3f1"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/2f3699e4-1581-4bd7-b7f5-e2ac769d114d"> + <skos:Concept rdf:about="http://localhost:8000/2d8ddf38-37c9-4bd9-8bb1-75ac2b7f13d4"> + <skos:prefLabel xml:lang="en">{"id": "fbe9ee31-f829-4061-ba72-89550b3ea1ce", "value": "editing"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "b28652d5-2dbc-4b33-aff2-fabea6195eaf", "value": "Collecting, preparing, altering, and arranging materials for publication or public presentation, including but not restricted to data, written materials, film, and tape."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "7181ab42-31c3-42f7-864b-379df5c72d8f", "value": "http://vocab.getty.edu/aat/300054700"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "28cbd178-c2d5-4011-a711-6dc291644596", "value": "Method of acquiring property for temporary use, with or without the payment of interest."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "482dac38-609a-48d4-921e-4438c2e2a31b", "value": "loan (method of acquisition)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "5d0e42e0-3976-406b-bb71-f886777c8e14", "value": "http://vocab.getty.edu/aat/300417645"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/a7e9a77a-005b-4253-8abc-7f3b944a4c0c"> - <skos:prefLabel xml:lang="en">{"id": "0d7ee85f-ef4a-4413-8619-5f1a0cc97a94", "value": "impasto"}</skos:prefLabel> - <skos:prefLabel xml:lang="de">{"id": "521851b8-e252-4824-96a0-b7dcf6981917", "value": "Pastos (impasto)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/8913b62a-23fe-4a7e-aeca-52356160b92e"> + <skos:prefLabel xml:lang="en">{"id": "9435c2af-2773-49d0-b85e-abb3539723da", "value": "transfer (method of acquisition)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "e9ac65f1-e92e-4a7a-9ef7-dbcfab49e278", "value": "http://vocab.getty.edu/aat/300053368"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "8409a616-c0b7-44be-95e5-432215ec2bad", "value": "Application of paint in thick, opaque masses, usually with a well-loaded brush or a palette knife."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "2bfc1e14-987e-4162-9755-64200a843c74", "value": "http://vocab.getty.edu/aat/300417644"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "0250da6a-bc67-492c-a80b-b5a9e6089c3c", "value": "Method of acquiring property by legally conferring existing ownership to another person or institution; it does not necessarily involve benefactors."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c84d1624-d004-4640-9653-6a6cd99c32e2"> - <dcterms:identifier xml:lang="en">{"id": "eb5718e5-fb47-47eb-a4c4-be1a81f9761d", "value": "http://vocab.getty.edu/aat/300411837"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "f5fee348-bf95-45e6-acf4-2d1980b9b50b", "value": "feminine"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/3e105447-bca4-4819-a674-e0773ce6df8e"> + <skos:prefLabel xml:lang="en">{"id": "2c7f9340-67db-4a9b-9ba9-e7ff293051e0", "value": "collaboration"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "035e18e6-866d-4d7e-82a6-28e593508060", "value": "Having chracteristics, qualities, attributes, or actions associated with the female sex."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "9edff51d-0753-479b-bdfe-283e11717f8e", "value": "http://vocab.getty.edu/aat/300379517"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "e97792d1-cf45-4238-9526-ee319597e8df", "value": "Refers to any venture in which individuals or organizations work together, especially in an intellectual endeavor."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/55949598-b28f-4e42-a286-1a1e9871fb09"> - <skos:prefLabel xml:lang="en">{"id": "35f60769-4c3e-43cd-a7d3-6afcfde1c88b", "value": "artists (visual artists)"}</skos:prefLabel> - <skos:scopeNote xml:lang="pt">{"id": "7e2e6389-fada-4628-bd40-d13e999aa3b8", "value": "Pessoas que produzem trabalho nas artes visuais. Para aqueles nas artes c\u00eanicas, consulte \"artistas perform\u00e1ticos\"."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "4ad3329c-05c6-44ce-a1ce-6d736c81e656", "value": "http://vocab.getty.edu/aat/300025103"}</dcterms:identifier> - <skos:prefLabel xml:lang="pt">{"id": "ae5c83e7-e2aa-45f8-a132-01c6d211cd03", "value": "artistas"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "970bea32-509f-40da-b3ba-899eb842d5b3", "value": "People who produce work in the visual arts. For those in the performing arts, see \"performing artists.\""}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/4781f26f-0f6e-44db-ac23-4ab3cb28d57f"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="fr">{"id": "4ea5d83e-9b84-42fb-a0c7-7c93bc39735c", "value": "styr\u00e8ne"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "efaa12f6-59ce-48db-a925-09413aa0ed11", "value": "A fragrant, liquid, unsaturated hydrocarbon used chiefly in making synthetic rubber, resin, and plastic and in improving drying oil."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "ba69695f-4a01-48eb-ab41-48aedea40f6c", "value": "http://vocab.getty.edu/aat/300015283"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "035e0d70-9880-47bd-a31d-97a12300a5ff", "value": "styrene"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/eb804068-a099-4443-8b01-711002e131a5"> + <skos:Concept rdf:about="http://localhost:8000/25b3ec4f-9e1f-43d1-82fb-c6cc9325c2e4"> + <dcterms:identifier xml:lang="en">{"id": "b398e0dc-f4bd-4e5d-aa82-a4a6dbc1f4c9", "value": "http://localhost:8000/25b3ec4f-9e1f-43d1-82fb-c6cc9325c2e4"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/f4ea3658-51df-4475-aaf6-9bbdf384ed0c"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "4e9be89a-23d1-4f02-97dd-7c8a6c5ab2ed", "value": "project"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "40effb24-be2f-4cfb-a298-921155f67ffe", "value": "http://localhost:8000/eb804068-a099-4443-8b01-711002e131a5"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/ce4ffb8a-597e-47c5-8d60-96f17fc92bb3"/> + <skos:prefLabel xml:lang="en">{"id": "90114ad5-fa03-45d2-ab52-406549a6ab59", "value": "Digital Object Service"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/ebbc6d1b-20b1-4f39-b2b0-1881c1187e1b"> - <skos:narrower rdf:resource="http://localhost:8000/b5b561eb-9935-40bf-ade0-5a576299c3d9"/> - <skos:narrower rdf:resource="http://localhost:8000/fbdf6081-0cfa-4594-aa96-1453e6b703d7"/> - <skos:narrower rdf:resource="http://localhost:8000/0159aa99-f9ef-43f6-a412-89df24b832bb"/> - <skos:narrower rdf:resource="http://localhost:8000/fa855ab3-215b-4b2e-b314-11364d9b6cb3"/> - <skos:prefLabel xml:lang="en">{"id": "f22c0f3c-98ef-4fae-bebb-c7a45741857b", "value": "Modification Types"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/c2456fbc-83c6-49c8-9959-552bba0b2efd"> + <skos:scopeNote xml:lang="en">{"id": "10e84351-7bad-4f09-8b40-2d4f611832b8", "value": "The application of testing methods to materials or objects in order to analyze their composition and manufacture. In a conservation science context, this may refer to movable art works and artifactual objects in a conservation lab. For a broader range of testing methods, prefer \"scientific analysis.\" "}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "f232c66a-be1f-48e7-906f-3b0b3bcc9ab7", "value": "technical analysis"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0e1a0097-acd6-4520-890e-e6b3a653f97e", "value": "http://vocab.getty.edu/aat/300379518"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/21bbcd2d-84b8-4604-96aa-add5e2e84588"/> - <dcterms:identifier xml:lang="en">{"id": "64f6cd34-711a-4db4-a9bf-9255e27b415b", "value": "http://localhost:8000/ebbc6d1b-20b1-4f39-b2b0-1881c1187e1b"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/01ff64ed-bba4-40a1-8715-4ffbaa060780"> - <skos:prefLabel xml:lang="en">{"id": "b5a639d3-b52d-46d2-b0c1-e9a4a939ea01", "value": "high-speed photography (still photography)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "346724a3-f946-4587-afbb-15318d4aa087", "value": "http://vocab.getty.edu/aat/300053462"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/bc5364c9-6179-429f-b643-88889e0291f1"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "d01aeaae-0140-4956-a79e-562c1d3273b9", "value": "Still photography in which the camera shutter operates at a speed much higher than normal."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "ee64064f-8169-4660-94da-36d37deb5a12", "value": "management"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "992b2b5b-7459-43fd-a10e-c8943dbe12d1", "value": "Functions including organizing, supervising, and carrying out the activities of a person, group, organization, or enterprise, and controlling its human and material resources, involving primarily the application rather than the formulation of policy. When the formulation of policy is the primary aspect, use \"administration.\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "e580c26e-549f-4f5c-b606-155b687d1d40", "value": "http://vocab.getty.edu/aat/300054594"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/3b46f7de-75f7-4999-a0ab-3a8b6ca5b01a"> - <skos:prefLabel xml:lang="en">{"id": "3339678b-8674-4ff0-807c-a010b747aefc", "value": "female"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/ac747098-0517-45b7-a311-808da9e96da6"> + <skos:prefLabel xml:lang="en">{"id": "a78acfee-fb0a-4a93-adb6-05e7649956a4", "value": "software development"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "4de0277f-3c4b-4142-b537-04a64df86683", "value": "Referring to the sex that normally produces eggs or female germ cells."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "916dff4f-6a3f-4faa-b337-88bd6b4b0a31", "value": "http://vocab.getty.edu/aat/300189557"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "ed954f17-4604-4b6a-b3b2-64a7b5181b19", "value": "http://localhost:8000/ac747098-0517-45b7-a311-808da9e96da6"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/cf3ccbc1-5524-4c0b-a706-61dd71554742"> - <skos:prefLabel xml:lang="en">{"id": "8a1b4816-8b3a-427b-9778-1e793596a49c", "value": " MA-XRF spectrometers"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c5874ee9-3c10-48a9-ad2d-fa0f09ea061a", "value": "http://localhost:8000/cf3ccbc1-5524-4c0b-a706-61dd71554742"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/96151ca8-8e58-4e07-a490-c6152e2c5048"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:altLabel xml:lang="en">{"id": "80ad02a4-2585-4a3d-b036-af6b9eefa13c", "value": "macro X-ray fluorescence spectrometers"}</skos:altLabel> - <skos:altLabel xml:lang="en">{"id": "4c3ddaa7-f830-41fd-8eae-27472d2a48f3", "value": "macro-XRF spectrometers"}</skos:altLabel> + <dcterms:identifier xml:lang="en">{"id": "227676ab-e141-44c5-8d4f-8a2433e251a7", "value": "http://vocab.getty.edu/aat/300379226"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "a93dc9ff-ac25-464d-ad0a-9dc21f246925", "value": "Metric units of mass equal to about 2.205 pounds. One kilogram is approximately equal to the weight of 1000 cubic centimeters of water. The kilogram is the base unit of mass in the International System of Units (SI) (the Metric system); defined as being equal to the mass of the International Prototype of the Kilogram. It is the only SI unit that is still directly defined by an artifact rather than a fundamental physical property that can be reproduced in different laboratories."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "38ab85e4-4842-4c4c-9d8d-5ea2c41f2caf", "value": "kilograms"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/f857e104-6587-4b32-8149-8caaac01b8ea"> + <skos:Concept rdf:about="http://localhost:8000/955f7d60-f1d7-4077-8765-1eb423fe7dcc"> + <skos:narrower rdf:resource="http://localhost:8000/340a38a7-8ed9-4a07-a4a4-a28c8fe77b28"/> + <dcterms:identifier xml:lang="en">{"id": "190896b9-0534-4f3c-9b60-e9094f5dc075", "value": "http://localhost:8000/955f7d60-f1d7-4077-8765-1eb423fe7dcc"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "fcff6780-5da6-492a-bb51-12d26236fd06", "value": "A thermoplastic resin that is soluble or swells in water and can become insoluble in time through crosslinking; used chiefly for emulsifier, adhesive, and film resistant to solvent and abrasion, and in making molded and extruded products, and polyvinyl acetal."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "4a563951-f2ab-4188-b053-42dcc294f408", "value": "polyvinyl alcohol"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "240020dd-668e-4256-bdff-6aa3ae611d78", "value": "http://vocab.getty.edu/aat/300014509"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/038d2bdf-081d-4f53-8ace-305e68c10591"/> + <skos:prefLabel xml:lang="en">{"id": "0a8952cf-dbd4-4e0f-96ac-c4bf004e3dab", "value": "Timespan Duration Type"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/1001587a-3524-455f-92ea-34deafc7bf68"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/fd958d6c-1ad9-4e51-b6f0-33d23d04fbe0"> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/392e4a35-2710-4467-86f9-650f5aea9630"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "af26216c-7929-4d82-b4ea-51ffcb80effa", "value": "donation (method of acquisition)"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "6b1853f6-8de8-4cc9-9bbd-b91095b8bde6", "value": "http://vocab.getty.edu/aat/300417638"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "4a8b571b-4e7d-4007-99b7-d6afda0597c0", "value": "Method of acquiring funds or property through transference of ownership from one party to another as a free gift."}</skos:scopeNote> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/88e8a379-1609-432d-8667-9f0c0d427a82"> - <skos:scopeNote xml:lang="en">{"id": "86944d59-2182-4f00-8146-9a62a9126ed6", "value": "General term for the method of acquiring property through transference by one person or institution to another person or institution, voluntarily and without any payment required."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "efda312c-e482-4d28-8ab2-f22df2efc2c2", "value": "gift (method of acquisition)"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "f82443c8-8234-4802-9cda-7ba38cc8177d", "value": "http://vocab.getty.edu/aat/300417637"}</dcterms:identifier> - </skos:Concept> - </skos:narrower> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/9c9ea021-34bc-4f4d-9b19-baff24198e36"> - <dcterms:identifier xml:lang="en">{"id": "25af5239-19ca-48fe-b459-52795a73690c", "value": "http://vocab.getty.edu/aat/300417643"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "01fcfd28-fd31-483f-8078-aceb41c68d6d", "value": "auction (method of acquisition)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "517457f6-2ccc-4f92-a7d1-75622f3da488", "value": "Method of acquiring property through bidding at an auction."}</skos:scopeNote> - </skos:Concept> - </skos:narrower> - <skos:prefLabel xml:lang="en">{"id": "95adb6e6-ff59-43ee-b0c7-eeb0b869467b", "value": "Provenance Activity Type"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/4d2e8c94-7536-4067-ae2f-2e52b337fa0b"/> + <skos:Concept rdf:about="http://localhost:8000/ede4e6a0-150c-4d2e-99ad-c21a42f309c8"> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "58381428-a65b-409b-a31d-31b62c98baa9", "value": "http://localhost:8000/ede4e6a0-150c-4d2e-99ad-c21a42f309c8"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "fe03bc60-ba4e-4fd0-97db-66af93bcc703", "value": "FORS Dataset"}</skos:prefLabel> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/0f0f9727-0dee-4ff5-bc8d-201aaf6ab338"> + <skos:prefLabel xml:lang="en-us">{"id": "37c3fdc5-5a8b-438a-8c6d-c82d450520c7", "value": "catalogue title"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "a9a7eb4b-690d-421c-b325-95069177f1f8", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/titles/catalogue-title"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/39fa12c0-6624-41bd-83fa-0fc28b5250bc"> + <skos:prefLabel xml:lang="en">{"id": "93a042f6-33c8-409e-93d5-c3d1c7e9270b", "value": "painting (image-making)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "48d646b3-ba50-416f-a0d2-decfbb6cfa6c", "value": "The art and practice of applying pigments suspended in water, oil, egg yolk, molten wax, or other liquid to a surface to create an expressive or communicative image. Paint is usually, but not always, applied with a brush. For the application of paint primarily to protect a surface or add a general color, use \"painting (coating).\""}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "2b0e07e1-ac35-4284-8b2e-af485c51c9dd", "value": "http://vocab.getty.edu/aat/300054216"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/93a715ef-5c16-4852-98c6-5d73d42633b6"> + <dcterms:identifier xml:lang="en">{"id": "25ea598e-7bf1-4ab4-b654-c38f70795e61", "value": "http://vocab.getty.edu/aat/300412019"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "63e149a5-609c-4303-bcc2-d28a21a44898", "value": "Dutch guilder (system of money)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "37738fca-2ec1-461a-8250-6b81c2d50b2b", "value": "The standard unit of currency of the Netherlands prior to adoption of the Euro."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/b8a8e087-6e8f-41db-98ff-202785afddbb"> + <skos:prefLabel xml:lang="en">{"id": "00d5a7a6-ff2f-4c44-ac85-7a8ab1a6fb70", "value": "Alternate Manifest"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "74a6afd0-bfa8-4133-97fd-0360729e0cd3", "value": "http://localhost:8000/b8a8e087-6e8f-41db-98ff-202785afddbb"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/9caeac56-1aa3-4dff-96cd-05403a5c4a1e"> + <skos:prefLabel xml:lang="en">{"id": "9d1ae117-4df7-4814-ad66-25d177728aeb", "value": "cellulose acetate"}</skos:prefLabel> + <skos:prefLabel xml:lang="de">{"id": "9f4893e4-1e7f-4ce9-9bfa-cd89d3f4244a", "value": "Celluloseacetat"}</skos:prefLabel> + <skos:prefLabel xml:lang="fr">{"id": "de1c080b-0cc5-4312-96a9-e6d4f5a5d70f", "value": "ac\u00e9tate de cellulose"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "8695a449-6b67-4272-953b-a7860d05c787", "value": "A tough, flammable, easily fabricated thermoplastic polymer composed of acetic acid ester of cellulose. Forms include white flakes or powder; it is used in a variety of products such as acetate fiber, lacquers, photographic film, magnetic tapes, lacquers, and transparent sheeting. The substance was first developed in 1865; in 1908 it was introduced as safety film by Eastman Kodak, replacing flammable cellulose nitrate film. As the cellulose acetate ages, the added plasticizers can migrate to the surface producing an oily film."}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="pt">{"id": "d4bd0603-bb24-4212-9c3c-e232d77633d1", "value": "acetato de celulose"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "7d8cfd5c-7a29-4ec3-a205-cb83694ac381", "value": "http://vocab.getty.edu/aat/300014439"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/324861e0-21c5-4bb4-9702-2ff478038a2e"> + <skos:prefLabel xml:lang="en">{"id": "27d93656-7d87-48fa-8b13-9eb735e4fc59", "value": "fiber optics reflectance spectroscopy (FORS)"}</skos:prefLabel> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "e20b0678-6180-4c3b-acc2-95c741b16b28", "value": "http://localhost:8000/324861e0-21c5-4bb4-9702-2ff478038a2e"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/b9c2b0a7-88b8-40d5-b605-0f74e4e0da61"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "6782165f-2f26-4265-8e13-c566289f7597", "value": "http://localhost:8000/fd958d6c-1ad9-4e51-b6f0-33d23d04fbe0"}</dcterms:identifier> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/26a055ac-f801-4170-a4d5-a11d72d51eba"> - <skos:prefLabel xml:lang="en">{"id": "09fbd1a3-65bf-47f9-959f-7744550430ed", "value": "transfer (method of acquisition)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "b16fb387-4a1b-4082-b2fc-09078d3d54fc", "value": "Method of acquiring property by legally conferring existing ownership to another person or institution; it does not necessarily involve benefactors."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "1873b9ba-9203-41cf-9cad-3e8452b04b59", "value": "http://vocab.getty.edu/aat/300417644"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/2f3699e4-1581-4bd7-b7f5-e2ac769d114d"/> - <skos:narrower rdf:resource="http://localhost:8000/ab9ab119-7e05-4841-9679-7bcc13548caa"/> - <skos:narrower rdf:resource="http://localhost:8000/efb920fe-6946-493c-a6b4-898babdbbc9d"/> - <skos:narrower rdf:resource="http://localhost:8000/4d40bcba-8ad8-4415-9781-94d501c50142"/> + <skos:prefLabel xml:lang="en">{"id": "4e6418ff-0b0f-4092-8265-3253ba87a25e", "value": "common names"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "21dca980-d00c-424d-ad17-7c32d088c266", "value": "Names for people, places, or things that are commonly used, but not necessarily the official version of the name."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "eaf3d4fb-e634-47cb-8870-2f4db1081850", "value": "http://vocab.getty.edu/aat/300404687"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/75de259d-80da-4593-b175-fea47bad942c"> - <skos:narrower rdf:resource="http://localhost:8000/5b2762ac-b9de-4fe4-b410-fbf9d80a56e9"/> - <skos:narrower rdf:resource="http://localhost:8000/eb804068-a099-4443-8b01-711002e131a5"/> - <skos:narrower rdf:resource="http://localhost:8000/66ac5ba5-c498-48fc-9a31-e132dce34883"/> - <dcterms:identifier xml:lang="en">{"id": "97675afa-71d5-45cd-a4ef-9d83ce221c4b", "value": "http://localhost:8000/75de259d-80da-4593-b175-fea47bad942c"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/54d2f763-34aa-4830-bc1d-f9ed627cf164"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/2ad8d78d-fb7d-42af-9b68-60f12291803a"> - <dcterms:identifier xml:lang="en">{"id": "905fb0c5-1371-4289-ba26-e2ac61d44fcd", "value": "http://localhost:8000/2ad8d78d-fb7d-42af-9b68-60f12291803a"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "98c6e817-45d9-46e0-bceb-601fcba51fb7", "value": "initiative"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/bdb0f548-836b-4619-a9b5-3e1a349ca358"/> - <skos:narrower rdf:resource="http://localhost:8000/2f3da2d3-1a5e-4603-ae2c-e716319ee226"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/a2e67013-c6a4-4024-bbfb-b691da0ecfed"> - <skos:prefLabel xml:lang="en-us">{"id": "75d6a9f7-598c-41dc-9f9f-36408c348774", "value": "sub-project"}</skos:prefLabel> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "8d5d8d2c-23cc-454a-9758-db82d71f942a", "value": "http://localhost:8000/a2e67013-c6a4-4024-bbfb-b691da0ecfed"}</dcterms:identifier> - </skos:Concept> - </skos:narrower> - <skos:prefLabel xml:lang="en-us">{"id": "fd87f8ef-8948-4ba4-8c84-1a39bf4b4da2", "value": "Project Types"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/480abea1-f508-4129-af86-52a4358b0e8a"> + <dcterms:identifier xml:lang="en">{"id": "273f5923-8291-4d8d-999b-7c4c37122e4c", "value": "http://localhost:8000/480abea1-f508-4129-af86-52a4358b0e8a"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "a4214e72-a6d5-4b17-ae40-f1fac63635ef", "value": "Getty Guide Title"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/f72e688f-855b-43d1-92aa-11aa679b01e6"> - <dcterms:identifier xml:lang="en">{"id": "3f55bf12-0e44-47d4-8d8b-b01ac13a0e16", "value": "http://vocab.getty.edu/aat/300438737"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "14abd7b2-fa8c-4201-baf4-453e2c05794d", "value": "gender-fluid"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/abeca9ea-214c-4a19-91d1-233c940fd679"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "ad9f5938-87c5-41da-b1bf-ce00ebf09bb3", "value": "The state or condition of identifying outside a male/female gender binary, specifically people who do not identify with a single fixed gender; having or expressing a fluid or unfixed gender identity or fluctuating between gender and expressions."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "57832b8e-603c-4513-87d1-00cd1aea39d6", "value": "biology"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "df4b4ca2-7a24-49d1-beba-e0f7de6ec0f8", "value": "http://vocab.getty.edu/aat/300054466"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "f2b55b4b-81be-4f86-a558-ab2fc29908ce", "value": "The study of living organisms, including their structure, functioning, origin and evolution, classification, interrelationships, and distribution."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/f16e685d-fa8a-4670-8707-99448fe2a791"> + <skos:Concept rdf:about="http://localhost:8000/e3193f72-3a4c-4d54-8294-6a1af433a886"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "34c26d8e-401f-419a-8ae2-ef517970acb7", "value": "http://vocab.getty.edu/aat/300025063"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "4e8e97be-223e-4941-bc16-3bcab992e3c9", "value": "engineers"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "e47d67df-f431-483d-9c03-f1d3f85be812", "value": "Persons trained in a branch of engineering. In some jurisdictions the designation is legally restricted in technical use to persons who have completed a prescribed course of study and complied with requirements concerning registration or licensing."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "5872133e-39ef-40c9-8945-2957d6eb79d4", "value": "hyperspectral cameras"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "846c9d1a-5376-4617-9eff-9e4a11774fb2", "value": "http://localhost:8000/e3193f72-3a4c-4d54-8294-6a1af433a886"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c9457185-7085-4ea2-a152-122d1bb28f12"> - <skos:narrower rdf:resource="http://localhost:8000/f8dcc963-bc7e-41f1-9449-0a96a27432e5"/> - <dcterms:identifier xml:lang="en">{"id": "61e20c5f-8a71-4843-b0dc-cdbdd9e26d18", "value": "http://localhost:8000/c9457185-7085-4ea2-a152-122d1bb28f12"}</dcterms:identifier> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/5f238aa7-f57b-4092-876e-3c5cb87461ed"> - <skos:prefLabel xml:lang="en-us">{"id": "a7729abb-2079-4db3-bedc-fa22d8783951", "value": "Contact Point types"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/6a0a4e8b-dfc5-4b38-9c26-98cb05592621"/> - <dcterms:identifier xml:lang="en">{"id": "035f8b4f-225a-4c5d-bf36-d2a16e6318a5", "value": "http://localhost:8000/5f238aa7-f57b-4092-876e-3c5cb87461ed"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/c0561406-3cd4-414d-9a64-d75abf6570be"/> - </skos:Concept> - </skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/c5f909c8-d870-4752-b62d-d18f945f1ddf"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/1022a93a-1860-4b56-9e85-e4ad416b9098"> - <skos:prefLabel xml:lang="en-us">{"id": "12d76365-c695-4203-a787-cce42c724f3e", "value": "Contact Point Part Types"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/a3ddd46c-0aba-4ba0-a943-c9d793e1a9bc"/> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "481c8076-c398-4e3b-94f0-19813ade8957", "value": "http://localhost:8000/1022a93a-1860-4b56-9e85-e4ad416b9098"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/48e08437-a15d-4f0f-adfc-77c1587f17b9"/> - <skos:narrower rdf:resource="http://localhost:8000/62f83f13-058e-4c73-a0b0-4f1816780f52"/> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/deebb113-05f9-4a53-b0ad-9d9a8dac9317"/> - <skos:prefLabel xml:lang="en-us">{"id": "e72534a7-20f8-4bbd-bc05-6509f3073e51", "value": "Name Types"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/c418eb94-c435-4f87-b7fc-122dd776bec7"/> - <skos:narrower rdf:resource="http://localhost:8000/0b569d5e-5cb9-4f10-8995-9acfea31b63a"/> + <skos:prefLabel xml:lang="en">{"id": "281b7d2f-c2cc-45b7-a2a6-f9cbc17d2302", "value": "last names"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "b164f4a5-3296-4ca6-8145-abe6a60da9d3", "value": "http://vocab.getty.edu/aat/300404652"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "06269753-2871-4323-baa1-875682df0d1a", "value": "In the context of modern western personal names, the names that are hereditary and common to all members of a family; used with a first name to distinguish an individual from others with the same first name. In other cultural traditions, last names may not be hereditary family names or they may not be used at all. Before last names became common in western tradition, personal names were qualified with the addition of epithets, place names, ancestors' names, or terms for professions; these were added to a first name on an individual basis, not necesssarily hereditary for a family."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/409ff344-73cb-4d92-82d1-abb5a80c744b"> - <skos:prefLabel xml:lang="en">{"id": "a7c2526f-64b0-4740-98e7-e7e403429f7c", "value": "releasing"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "2cb22ecb-6b47-4842-838b-955bd4f68d6a", "value": "Discharging people from an institution, enterprise, or obligation."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/ac3c260d-a77a-4ebb-8281-43282e53f0d2"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "c5d3aedb-d759-4560-9482-ba1c25d1207b", "value": "http://vocab.getty.edu/aat/300137587"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "ad7fa9a8-7ac9-4311-975b-d5936eb46af2", "value": "telephone numbers"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "e147fc06-53a3-4ab3-bb81-6d668e409f46", "value": "http://vocab.getty.edu/aat/300435688"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "c82bd30c-cdc7-432f-80a3-9c0e24427cf7", "value": "Identifying numbers assigned to a telephone or group of telephones; the numbers are dialled in order to make a connection to telephonic devices."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"> - <skos:prefLabel xml:lang="en">{"id": "c91dfcf2-a6bb-4336-9a3e-165f3cc7fc29", "value": "FT-IR microscopes"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/c85793a7-86d1-45ae-92f9-913652c5b4c8"> + <skos:prefLabel xml:lang="en">{"id": "e3507a33-faf2-4336-b9d1-81bf22e482f8", "value": "minutes (units for duration)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "ba1708a0-61f0-4477-a4ba-8fd587efddf4", "value": "http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "05406b1a-42bf-4a04-8cc7-813c5d515636", "value": "Units of time equal to 60 seconds or 1/60 of an hour. "}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "e8eb14a0-dcfa-4b53-8660-96ece1a302d1", "value": "http://vocab.getty.edu/aat/300379240"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/ce4ffb8a-597e-47c5-8d60-96f17fc92bb3"> - <skos:prefLabel xml:lang="en">{"id": "45554224-bad3-4f5b-8ae2-9a329804bea2", "value": "map service"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "7f74f0c2-0834-4011-8285-8a7b6838938a", "value": "http://localhost:8000/ce4ffb8a-597e-47c5-8d60-96f17fc92bb3"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/54b03ff5-24de-427f-b8c9-1d6fba460bc1"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "da21079d-9e42-461f-b1ca-3a261852cca4", "value": "http://vocab.getty.edu/aat/300389935"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "fa391dbc-4de5-4789-8543-227cff5007db", "value": "hermaphroditic"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "2fa75e0d-2575-4eb8-a04a-29ddb7ddcac4", "value": "Belonging to or of the nature of a hermaphrodite, combining male and female characteristics."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4b2ed1f9-3b31-47c1-975e-1e114f0fe099"> - <dcterms:identifier xml:lang="en">{"id": "16d10530-66c6-4a9e-9436-27c0e2a3f30d", "value": "http://vocab.getty.edu/aat/300053899"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "0460e745-cf3f-42e8-94f3-08a31b5cc245", "value": "shipping"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "3d13f0f5-bbfb-4c67-ab38-025328fdc420", "value": "Process of transporting goods sending goods to people, stores, or other destinations."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/b2f88a00-97c6-4530-87e3-54cdc65ce7e6"> + <skos:prefLabel xml:lang="fr">{"id": "a96f4f59-16d2-465f-8ed7-84d4b148dde5", "value": "poly\u00e9thyl\u00e8ne"}</skos:prefLabel> + <skos:prefLabel xml:lang="en-us">{"id": "990342b3-a94d-4a40-80de-b56179d93eac", "value": "polyethylene"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "3a18f56b-cb2b-443a-a485-7bcb3978fc4b", "value": "http://vocab.getty.edu/aat/300014482"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "2459ff6a-c9d4-43a7-ba95-c346b8fe10a1", "value": "A group of polyolefin polymers derived from ethylene by polymerization by heat and pressure."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/edead18b-2e9e-4790-856f-9bf05dc78b23"> + <skos:Concept rdf:about="http://localhost:8000/598ce9bd-a5d6-4fd8-886f-7f45d99f1d57"> + <skos:prefLabel xml:lang="en">{"id": "dfd91951-c5e4-47c9-abca-f4dc6116b063", "value": "Reichsmark (system of money)"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "6ed60da8-538a-48a2-a1d5-48d53a2cf0db", "value": "http://localhost:8000/edead18b-2e9e-4790-856f-9bf05dc78b23"}</dcterms:identifier> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/b9721f25-a10c-4b55-85fc-ce03bb85b3a0"> - <skos:prefLabel xml:lang="en">{"id": "507aba8a-a992-48da-90ba-f10757b02a0e", "value": "file size"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "0f9acc8b-5e70-4a73-9960-ba71de0ddf54", "value": "http://localhost:8000/b9721f25-a10c-4b55-85fc-ce03bb85b3a0"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/8362bfe2-eb98-4445-a18d-609f1515879f"/> - <skos:prefLabel xml:lang="en">{"id": "cd7b2bb6-e2e6-4f09-b2fd-160bdd72bf5f", "value": "Digital Dimensions"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "6afb0125-4650-45a1-863d-baba0f7d960d", "value": "http://vocab.getty.edu/aat/300412169"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "7b3191e4-397a-4a41-af69-e55188e9f46a", "value": "From 1924 to 1948, used as the official designation of the German currency. Later historical use chiefly refers to this official designation during this period."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/15f52617-f1cf-40c6-b31f-eccd2dc8c252"> - <skos:scopeNote xml:lang="en">{"id": "91d1c3fa-bd02-4f41-b239-4cf9c29f1954", "value": "Detailed examination principles and empirical processes of discovery and demonstration considered characteristic of scientific investigation, generally involving the observation, formulation of a hypothesis, experimentation, and development of a conclusion."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/e518447a-c5a2-485f-926d-c854f65e88ec"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "b80336e8-7919-4c03-a932-0dc04e3f90f6", "value": "scientific analysis"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "d5d20b1b-7296-40e6-be98-bdcb98020415", "value": "http://vocab.getty.edu/aat/300379372"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "72710de1-344f-4abf-884f-0ce26bc18a7b", "value": "The standard unit of currency of the United States of America, containing 100 cents."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "b73e3464-adf5-4325-b5e9-50c82d29013f", "value": "http://vocab.getty.edu/aat/300411994"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "8ab7498c-4bd2-4cda-bf74-7ba32e199574", "value": "United States dollar (system of money)"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"> - <skos:prefLabel xml:lang="en">{"id": "2c07b59a-66b5-402e-9fd9-c6df59cbe162", "value": "GC-MS"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/f72e688f-855b-43d1-92aa-11aa679b01e6"> + <skos:prefLabel xml:lang="en">{"id": "14abd7b2-fa8c-4201-baf4-453e2c05794d", "value": "gender-fluid"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "925a876e-6f4a-4ec4-b2f7-660704ce8c17", "value": "http://localhost:8000/1364936b-f5bc-4fd3-b0db-6ef7efe3f08a"}</dcterms:identifier> - <skos:altLabel xml:lang="en">{"id": "63ef399b-cf47-47cc-b203-2820c3e6eca4", "value": "Gas chromatography\u2013mass spectrometry"}</skos:altLabel> + <dcterms:identifier xml:lang="en">{"id": "3f55bf12-0e44-47d4-8d8b-b01ac13a0e16", "value": "http://vocab.getty.edu/aat/300438737"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "ad9f5938-87c5-41da-b1bf-ce00ebf09bb3", "value": "The state or condition of identifying outside a male/female gender binary, specifically people who do not identify with a single fixed gender; having or expressing a fluid or unfixed gender identity or fluctuating between gender and expressions."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1c655462-b04c-4f44-a236-151e6625f37f"> - <skos:prefLabel xml:lang="fr">{"id": "df7d4de4-d3ea-4d21-af25-0461cb9679a4", "value": "polypropyl\u00e8ne"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "90f7c85d-bf72-4dc4-b0fd-29ced87c340d", "value": "polypropylene"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/4649d0f2-ad6c-4905-a24e-8d784c2cbc48"> + <skos:scopeNote xml:lang="en">{"id": "273017b8-2e3f-4970-bfcb-862617570a4b", "value": "The quantity or mass of an object or material that occupies space."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "a00016cd-b964-4ceb-8057-ed1e5d9194cd", "value": "http://vocab.getty.edu/aat/300055649"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "c53cf978-6823-48a9-ad19-6fce066a0e5b", "value": "http://vocab.getty.edu/aat/300014489"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "59731d52-2f94-488a-944e-a13382073d67", "value": "Tough, lightweight, rigid plastic made by the polymerization of high-purity propylene gas in the presence of an organometallic catalyst at relatively low pressure and temperature."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "c28807da-962a-4ea6-a0be-8ae049bfcb0e", "value": "volume (quantity or mass)"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/106feb03-935f-49c4-8e15-c30ee42adc66"> - <skos:prefLabel xml:lang="en">{"id": "1497d15a-1c3b-4ee9-a259-846bbab012ed", "value": "Preferred Manifest"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "aeeb4428-0b66-40e8-a77f-08dfb8e454f2", "value": "http://localhost:8000/106feb03-935f-49c4-8e15-c30ee42adc66"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/fa579432-0d81-4d5e-a721-01015f8fbfe5"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "7f83b58c-481a-44fe-a658-e20b40debf2b", "value": "http://vocab.getty.edu/aat/300404679"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "67fa9f61-f296-43f9-952d-39097d24741f", "value": "stage names"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "e38ca71b-103b-4407-86d1-7ffdad3b4134", "value": "Regarding personal names, assumed names used by actors and other performers rather than their real names."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/87da0b3d-f6b7-4e40-aea3-15a0d7dc7878"> - <skos:narrower rdf:resource="http://localhost:8000/47e940a3-b483-41c9-9430-34c990014764"/> - <skos:prefLabel xml:lang="en-us">{"id": "cfcee227-9929-49a0-a773-55df9c51d9ea", "value": "Group Joining Types"}</skos:prefLabel> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f899df4e-86eb-4579-aca8-d0cbadc31994"> - <dcterms:identifier xml:lang="en">{"id": "fe2d63d9-af88-4014-82e9-8c32d01ba30d", "value": "http://localhost:8000/f899df4e-86eb-4579-aca8-d0cbadc31994"}</dcterms:identifier> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en-us">{"id": "607f4467-9956-46fe-8355-fc3f4bee3791", "value": "Joining as Leader"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> - <skos:narrower rdf:resource="http://localhost:8000/5bf90b5e-37eb-45af-b326-e4609208fcb0"/> - <dcterms:identifier xml:lang="en">{"id": "51ff619a-9bb1-43a5-a3a2-0b2b1b52ddf4", "value": "http://localhost:8000/87da0b3d-f6b7-4e40-aea3-15a0d7dc7878"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/3b46f7de-75f7-4999-a0ab-3a8b6ca5b01a"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "916dff4f-6a3f-4faa-b337-88bd6b4b0a31", "value": "http://vocab.getty.edu/aat/300189557"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "3339678b-8674-4ff0-807c-a010b747aefc", "value": "female"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "4de0277f-3c4b-4142-b537-04a64df86683", "value": "Referring to the sex that normally produces eggs or female germ cells."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/42f66db6-b76f-416a-8fd8-5dc3f5d3c171"> + <skos:Concept rdf:about="http://localhost:8000/4583a363-ad2d-4dd9-8c7c-b1a433f53079"> + <dcterms:identifier xml:lang="en">{"id": "e623186d-35dc-4694-aa19-77833ca21d2d", "value": "http://vocab.getty.edu/aat/300379254"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "a2c84e7d-c7e9-41a4-baf4-535b22a9cf3b", "value": "pounds (units for weight)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "6590accc-0698-46ce-9807-cade7c20f907", "value": "In avoirdupois measure, standardized units of weight and mass equal to 16 ounces (7000 grains, exactly 0.45359237 kg). The pound was originally made up of 12 ounces, as in the system of troy weight which is still used in stating the weight of precious metals."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b0587eec-002d-4389-b802-d21ce18a9435", "value": "http://localhost:8000/42f66db6-b76f-416a-8fd8-5dc3f5d3c171"}</dcterms:identifier> - <skos:narrower rdf:resource="http://localhost:8000/4b2ed1f9-3b31-47c1-975e-1e114f0fe099"/> - <skos:prefLabel xml:lang="en">{"id": "eef67223-b9e5-4f90-a128-de53ad426c16", "value": "Move Event Type"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/32c7ac9c-9ab0-445b-b0c7-e08f65850356"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/c0561406-3cd4-414d-9a64-d75abf6570be"> - <skos:scopeNote xml:lang="en">{"id": "53bc61cf-daa1-43f7-90b1-bdd5340f57f2", "value": "Particulars of the place where a person, organization, building, or monument can be found on a street or other thoroughfare; typically consisting of a number, street name, the name of the administrative area (a town or district), and often a postcode."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/c801eaae-849a-46b4-a97e-280b59c1f2d7"> + <skos:prefLabel xml:lang="en">{"id": "6d224b77-605e-4424-95db-5abe11d8fc7f", "value": "gift (method of acquisition)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "a2521c01-20a0-4399-80c4-b8ff4ebd100a", "value": "General term for the method of acquiring property through transference by one person or institution to another person or institution, voluntarily and without any payment required."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "e161bb15-8f37-476a-9908-b66a513bb817", "value": "http://vocab.getty.edu/aat/300417637"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "d4a6cc7e-04a8-42af-85e2-56540ec3a53b", "value": "http://vocab.getty.edu/aat/300386983"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "5dc5c14a-61bd-4dce-bcce-5d9dda49f363", "value": "street addresses"}</skos:prefLabel> </skos:Concept> <skos:Concept rdf:about="http://localhost:8000/47e23fb9-a593-433e-a1b4-32fa1f5576d1"> <skos:prefLabel xml:lang="en-us">{"id": "8ced572f-9cd6-46f3-8911-288ef481cb05", "value": "Identifiers"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "43dc502a-835f-42b7-8534-02a175ccd0f1", "value": "http://localhost:8001/47e23fb9-a593-433e-a1b4-32fa1f5576d1"}</dcterms:identifier> <skos:narrower rdf:resource="http://localhost:8000/a16a24c8-7b71-43a3-8473-39638039eaf4"/> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "43dc502a-835f-42b7-8534-02a175ccd0f1", "value": "http://localhost:8001/47e23fb9-a593-433e-a1b4-32fa1f5576d1"}</dcterms:identifier> <skos:narrower rdf:resource="http://localhost:8000/e3acac51-5f58-4a8d-8c25-0949b1f664df"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/9caeac56-1aa3-4dff-96cd-05403a5c4a1e"> - <skos:prefLabel xml:lang="pt">{"id": "d4bd0603-bb24-4212-9c3c-e232d77633d1", "value": "acetato de celulose"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "9d1ae117-4df7-4814-ad66-25d177728aeb", "value": "cellulose acetate"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="fr">{"id": "de1c080b-0cc5-4312-96a9-e6d4f5a5d70f", "value": "ac\u00e9tate de cellulose"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "8695a449-6b67-4272-953b-a7860d05c787", "value": "A tough, flammable, easily fabricated thermoplastic polymer composed of acetic acid ester of cellulose. Forms include white flakes or powder; it is used in a variety of products such as acetate fiber, lacquers, photographic film, magnetic tapes, lacquers, and transparent sheeting. The substance was first developed in 1865; in 1908 it was introduced as safety film by Eastman Kodak, replacing flammable cellulose nitrate film. As the cellulose acetate ages, the added plasticizers can migrate to the surface producing an oily film."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "7d8cfd5c-7a29-4ec3-a205-cb83694ac381", "value": "http://vocab.getty.edu/aat/300014439"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "9f4893e4-1e7f-4ce9-9bfa-cd89d3f4244a", "value": "Celluloseacetat"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "ba1708a0-61f0-4477-a4ba-8fd587efddf4", "value": "http://localhost:8000/7ec8734d-8c9c-446c-a5df-13fa852c4a79"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "c91dfcf2-a6bb-4336-9a3e-165f3cc7fc29", "value": "FT-IR microscopes"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/6fcdb2d8-efa7-42f8-94fc-d491b5074631"> - <skos:scopeNote xml:lang="en">{"id": "5351d277-5f72-468a-aaad-d7aa451ff084", "value": "Refers to the practice of making photographs with a pinhole camera. Light-sensitive film or paper is exposed through a tiny, lensless aperture: the resulting images have very great depth of field, but lack critical sharpness."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/1635bf19-34b2-4f52-b2dd-f67116830f05"> + <dcterms:identifier xml:lang="en">{"id": "ef9a66c4-e827-4e8a-8714-403b66a0c72c", "value": "http://vocab.getty.edu/aat/300404657"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "48dc926a-9637-4465-a26f-ff6f1bf3efb8", "value": "pseudonyms"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "5b159574-09f4-4212-a131-d96ee5d34922", "value": "pinhole photography"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "56ba601b-adc6-4f26-b40c-5193f6fde320", "value": "http://vocab.getty.edu/aat/300265124"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "e0ee3d78-f474-460b-8d50-ba4672ac24ef", "value": "General term for false or ficticious names or appellations used instead of personal names, place names, and other names. When adopted for personal names, pseudonyms may be used to conceal the real identity of the person, for example, as used by authors and artists."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/25b3ec4f-9e1f-43d1-82fb-c6cc9325c2e4"> - <skos:prefLabel xml:lang="en">{"id": "90114ad5-fa03-45d2-ab52-406549a6ab59", "value": "Digital Object Service"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "b398e0dc-f4bd-4e5d-aa82-a4a6dbc1f4c9", "value": "http://localhost:8000/25b3ec4f-9e1f-43d1-82fb-c6cc9325c2e4"}</dcterms:identifier> - <skos:narrower> - <skos:Concept rdf:about="http://localhost:8000/f4ea3658-51df-4475-aaf6-9bbdf384ed0c"> - <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "e8352809-5c21-4713-a4c8-43010c08f023", "value": "http://localhost:8000/f4ea3658-51df-4475-aaf6-9bbdf384ed0c"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "e208df66-9e61-498b-8071-3024aa7bed30", "value": "web service"}</skos:prefLabel> - </skos:Concept> - </skos:narrower> + <skos:Concept rdf:about="http://localhost:8000/e6c99d74-08b7-42c3-b663-978873bb3865"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/ce4ffb8a-597e-47c5-8d60-96f17fc92bb3"/> + <skos:prefLabel xml:lang="de">{"id": "c62fce61-65bf-452a-a28f-50bf5cf530f7", "value": "\u00d6sterreichischer Schilling"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "ddcc387e-27f1-4e6f-aeef-1d7e00a2f69a", "value": "http://vocab.getty.edu/aat/300412158"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "4f9a37c0-2a4b-47c8-bcbc-e7af443ea7e0", "value": "Austrian Shilling (system of money)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "48801691-3261-4f72-ac0c-1706013ebbb9", "value": "Austrian unit of currency 1925-2002, with a lapse during WWII. It was replaced by the Euro as the country\u2019s sole currency in 2002. "}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e0cb0905-bf56-488f-b682-4a14cc0afa49"> - <skos:scopeNote xml:lang="en">{"id": "a320e519-ffcf-448a-8cb8-cb401805aaa3", "value": "Persons who gender-identify outside the male/female binary. This term may be used in addition to other gender identities."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "f66ae5ca-9a1e-4a4e-913d-5e51fcde70ee", "value": "gender non-binary"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/44230e61-1c33-47a2-a425-8089e09c060c"> + <skos:scopeNote xml:lang="en">{"id": "e4609ad7-e8a8-441e-abce-407e2b053725", "value": "General term for the principal monetary unit of Denmark and of Norway."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "8cbf8b82-c376-48b0-b9e6-24f46b81783d", "value": "krone (unit of currency)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "3091c4eb-b7e5-4524-b1f1-43526f041542", "value": "http://vocab.getty.edu/aat/300412164"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "2de95982-6550-4c5a-a701-86a0ac3a9e04", "value": "http://vocab.getty.edu/aat/300438736"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/d9c6e689-f74b-4494-b8d4-cd6cc78297c9"> - <skos:prefLabel xml:lang="de">{"id": "7c12d01a-bc2b-4c17-9e82-ef1407c62cb7", "value": "Konservator"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "c8b2af3c-4d05-4738-99d2-6c34dc904fab", "value": "http://vocab.getty.edu/aat/300102842"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "e790d860-9c38-44eb-805f-3a6c1c5c3de3", "value": "People responsible for treatment, preventive care, and research directed toward the long-term safekeeping of cultural and natural heritage. For those engaged in making changes to an object or structure in order to prevent further deterioration, see \"preservationists.\" For those who make changes to an object or structure so as to closely approximate its state at a specific time in its past, see \"restorers.\""}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/93c026d3-22d5-45a3-847b-4767d49a5bbf"> + <dcterms:identifier xml:lang="en">{"id": "cb6890b4-225c-4aba-9e2b-873d31133ae8", "value": "http://localhost:8000/93c026d3-22d5-45a3-847b-4767d49a5bbf"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "c3f2a071-03d4-409f-8b28-088aa2156b07", "value": "conservators (people in conservation)"}</skos:prefLabel> + <skos:prefLabel xml:lang="en">{"id": "1e69cbf5-a291-4a28-933b-c20569162ae9", "value": "preventative conservation"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/879c7e4e-2bce-490c-bb05-bf9ac6c3fe28"> + <skos:Concept rdf:about="http://localhost:8000/ddac2d30-4d8e-4c37-bb13-a8a32ee7b924"> + <skos:prefLabel xml:lang="en">{"id": "9c0bcddf-0dce-4b98-b3fa-e52ca7e1c7b1", "value": "conservation science (cultural heritage discipline)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "ca5ec325-9e7b-42a6-a370-d748b11bb76d", "value": "Interdisciplinary study of the maintenance, care, and protection of art, architecture, and other cultural works."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "22a8f0da-af7d-4a7d-a370-30034f6a3fb9", "value": "http://vocab.getty.edu/aat/300379510"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "b455a2f1-e268-49a1-8ed4-413d092764b6", "value": "http://vocab.getty.edu/aat/300053462"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "590cdf13-13ce-43cb-85f9-3794e2a86209", "value": "high-speed photography (still photography)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "21e4c589-ddf2-458a-be2d-bba69a438019", "value": "Still photography in which the camera shutter operates at a speed much higher than normal."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/07edfe46-dc43-40ab-aeec-3103e2673bab"> - <skos:prefLabel xml:lang="en">{"id": "198ca933-218e-40d1-a440-0c3d0db26786", "value": "grisaille"}</skos:prefLabel> - <skos:scopeNote xml:lang="de">{"id": "a75726f6-579c-47fb-a3ac-fbe3c95042e5", "value": "Gemaltes Bild in Schwarz-Wei\u00df, in der Regel mit Graut\u00f6nen; etabliert in der Malerei, Glasmalerei, Emaillekunst, auf Keramik und anderen Objekten."}</skos:scopeNote> - <skos:prefLabel xml:lang="de">{"id": "a43b0e72-45b5-4bdb-b064-b621e944a047", "value": "Grisaillemalerei"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/0159aa99-f9ef-43f6-a412-89df24b832bb"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "dc45c0c3-9f68-4ff6-865f-a4a1e0ed3014", "value": "Painting of images in monochrome, usually gray tones; employed in paintings, stained glass, enamels, and on pottery and other objects."}</skos:scopeNote> - <dcterms:identifier xml:lang="en">{"id": "a4db6b8a-e939-4354-b0d9-f4ca0aa2c525", "value": "http://vocab.getty.edu/aat/300053386"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "0639b0d2-67d7-4aa0-99cf-83d2d75099df", "value": "Making incisions with a sharp-edged instrument, thus removing material or dividing something into parts."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "6243e036-745c-4701-b6e6-e986a2008b2f", "value": "http://vocab.getty.edu/aat/300053069"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "c660d5a0-0352-4f29-a3a0-7705cca4e830", "value": "cutting (shaping or dividing)"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/3c4df3ee-bf83-4b3e-b2d1-0dc42baf6088"> - <skos:prefLabel xml:lang="en">{"id": "56963ec5-de92-4707-9ef8-c957231d9aa1", "value": "X-ray fluorescence (XRF) spectrometers"}</skos:prefLabel> - <skos:narrower rdf:resource="http://localhost:8000/cf3ccbc1-5524-4c0b-a706-61dd71554742"/> + <skos:Concept rdf:about="http://localhost:8000/725a5deb-3ed2-4b66-9979-8590ad6a6d6e"> + <skos:scopeNote xml:lang="en">{"id": "f8a420e8-e072-4f44-a9a9-d9b9b2ba6530", "value": "Addresses, not necessarily street addresses of the home or workplace, to which mail for a particular person, family, or corporate body is to be sent."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "e2b1c654-2497-4ac8-9fdb-fbb999d851c8", "value": "http://vocab.getty.edu/aat/300435687"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "e12647f0-6efc-49de-b5a9-5b5abf745707", "value": "mailing addresses"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/c3bf842e-3c29-48da-9908-b4fc844ba2a6"/> - <dcterms:identifier xml:lang="en">{"id": "19e4a535-0f91-42b2-b61c-869cd8365915", "value": "http://localhost:8000/3c4df3ee-bf83-4b3e-b2d1-0dc42baf6088"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4490453e-608e-40d6-9e39-79af0f1cc9fe"> - <skos:scopeNote xml:lang="en">{"id": "748fc851-88cd-458c-950e-dc7a8ed57bd6", "value": "Recognizing or establishing someone or something as being a particular person or thing."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/411b634d-3ead-498c-9b30-29f0512e9771"> + <skos:prefLabel xml:lang="en">{"id": "812f1242-f78f-44c7-b2f9-966dbd30ec0f", "value": "Swiss franc (system of money)"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "4fe8369a-d0d2-4089-adb1-db2e935eb24c", "value": "The standard unit of currency of Switzerland."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "c2f3ddb5-cf14-42e0-8f69-60c339025c76", "value": "http://vocab.getty.edu/aat/300137570"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "767f2c7f-c701-4719-bf71-da6f7eac6794", "value": "identification"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "df24f660-6c9f-48a3-9a41-adb0639d08a9", "value": "http://vocab.getty.edu/aat/300412001"}</dcterms:identifier> + </skos:Concept> + <skos:Concept rdf:about="http://localhost:8000/5f14cdc5-0430-4623-80d2-290510b99807"> + <skos:scopeNote xml:lang="en">{"id": "44011921-6c29-4e20-8156-a41a69d72df6", "value": "Concluding or discontinuing an activity, program, or job position. For the act of dismissing an employee, use \"firing (managing).\""}</skos:scopeNote> + <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <skos:prefLabel xml:lang="en">{"id": "949703de-de31-4226-adfb-e379a7bdd55d", "value": "terminating"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "0fa6121e-7edd-470e-b79d-b26ccdce9e49", "value": "http://vocab.getty.edu/aat/300189140"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/ecb98f2b-7104-4bbc-ae9a-8837104052a8"> - <dcterms:identifier xml:lang="en">{"id": "59660708-4888-4876-b094-249655cf9026", "value": "http://vocab.getty.edu/aat/300008626"}</dcterms:identifier> - <skos:prefLabel xml:lang="de">{"id": "6183f169-10df-46cb-8c42-c30e005daffa", "value": "Landschaft (Lebensraum)"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "b811a0c4-8866-4262-8d98-ea4e094f2256", "value": "Broadly used to describe portions of the earth's surface that share common repeating characteristics that can be comprehended at a glance. Landscapes are more than scenery or political units; they are systems of natural and cultural contexts. If possible use a more specific term."}</skos:scopeNote> - <skos:prefLabel xml:lang="fr">{"id": "8899c498-691d-43e9-b86d-19f244c7a7d6", "value": "paysages (environments)"}</skos:prefLabel> - <skos:prefLabel xml:lang="en">{"id": "7ee0e71b-7d0d-42c9-b0cf-ecb5bd9ea815", "value": "landscapes (environments)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/106feb03-935f-49c4-8e15-c30ee42adc66"> + <skos:prefLabel xml:lang="en">{"id": "1497d15a-1c3b-4ee9-a259-846bbab012ed", "value": "Preferred Manifest"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "aeeb4428-0b66-40e8-a77f-08dfb8e454f2", "value": "http://localhost:8000/106feb03-935f-49c4-8e15-c30ee42adc66"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="de">{"id": "0055810e-e266-48e3-97e8-f3c0056948f2", "value": "Begriff mit gro\u00dfem Bedeutungsumfang, um Teile der Erdoberfl\u00e4che zu beschreiben, die sich dank wiederkehrender Charakteristika auf einen Blick erfassen lassen. Eine Landschaft ist mehr als eine \u00e4sthetische oder politische Einheit; sie ist ein System, in dem nat\u00fcrliche und kulturelle Zusammenh\u00e4nge interagieren. Wenn m\u00f6glich, sollte ein spezifischerer Begriff verwendet werden."}</skos:scopeNote> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e8a9a948-1cc2-452f-bd4b-33b1d84e899d"> + <skos:Concept rdf:about="http://localhost:8000/191c70d0-82cd-4eeb-8a71-48f794f15211"> + <skos:prefLabel xml:lang="en">{"id": "d2376975-2a9b-4240-8fef-05034e5361f6", "value": "width"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "0d0570bf-b727-4f40-985f-1749a951fbb1", "value": "The length of a straight horizontal line extending from one side to the other of a form. For the measure or distance of the extent across a surface, prefer \"breadth,\" although usage overlaps."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "ada39e8f-467b-4d70-999a-a02623a09649", "value": "Designates the state of a person or persons that do not identify as belonging to any particular gender."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "69533d50-dd6d-4d5b-9819-7d7bfeda93a8", "value": "agender"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "1abd2190-72a3-4728-9862-f5c6beecdd79", "value": "http://vocab.getty.edu/aat/300438735"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "7d6f969d-ee01-43c4-90fb-e70ffae7dfeb", "value": "http://vocab.getty.edu/aat/300055647"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b2f88a00-97c6-4530-87e3-54cdc65ce7e6"> - <skos:prefLabel xml:lang="fr">{"id": "a96f4f59-16d2-465f-8ed7-84d4b148dde5", "value": "poly\u00e9thyl\u00e8ne"}</skos:prefLabel> - <skos:prefLabel xml:lang="en-us">{"id": "990342b3-a94d-4a40-80de-b56179d93eac", "value": "polyethylene"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "2459ff6a-c9d4-43a7-ba95-c346b8fe10a1", "value": "A group of polyolefin polymers derived from ethylene by polymerization by heat and pressure."}</skos:scopeNote> + <skos:Concept rdf:about="http://localhost:8000/e0cb0905-bf56-488f-b682-4a14cc0afa49"> + <dcterms:identifier xml:lang="en">{"id": "2de95982-6550-4c5a-a701-86a0ac3a9e04", "value": "http://vocab.getty.edu/aat/300438736"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "3a18f56b-cb2b-443a-a485-7bcb3978fc4b", "value": "http://vocab.getty.edu/aat/300014482"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "a320e519-ffcf-448a-8cb8-cb401805aaa3", "value": "Persons who gender-identify outside the male/female binary. This term may be used in addition to other gender identities."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "f66ae5ca-9a1e-4a4e-913d-5e51fcde70ee", "value": "gender non-binary"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b9cb3ead-ae6d-4f04-9551-e390defc35f2"> - <skos:prefLabel xml:lang="en">{"id": "c8f44544-d7f0-4ee2-881b-87715dcc6266", "value": "Invasive"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/2a5d7e8c-df22-434e-8208-66a7d80b1168"> + <skos:prefLabel xml:lang="en">{"id": "735db97f-1e46-475c-a6b5-1b6ad137afe3", "value": "sculpting"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "dd61f941-31b4-44a3-9265-b009e1f3d937", "value": "Refers to the process or branch of fine art concerned with creating sculpture, which are three-dimensional works. It refers particularly to carving or engraving a hard material, or with molding or casting a malleable material, so as to produce designs or figures in relief, in intaglio, or in the round. It is typically used to refer to the production of large or medium-sized objects in stone, clay, or bronze. The production of small objects in bronze or stone is typically referred to by a specific term, such as \"stone carving\" or \"die sinking.\" The production of sculpture in wood or ivory is typically referred to as \"carving,\" even though the finished work in these materials may be called \"sculpture (visual work).\""}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "ba8a6b37-2c87-4898-afd8-ae71c7db61fe", "value": "http://vocab.getty.edu/aat/300264383"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "e344fa87-5082-4eb9-a058-5a4944eebdc4", "value": "http://localhost:8000/b9cb3ead-ae6d-4f04-9551-e390defc35f2"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/102d6dc8-5a56-418e-afbf-799398a37ba8"> + <skos:Concept rdf:about="http://localhost:8000/1c55bd47-1895-4c3e-ba40-3dc0084cad2d"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "e7f238d3-9902-4baf-9d24-27e95a6a9441", "value": "In the composition of pages, matter set apart from the text as a title or a summary of the text that follows."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "af7817d7-8798-4e2d-8532-6a3b2658b6c8", "value": "headings"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "092b08a4-2fd3-47d4-bbf6-08da014a447f", "value": "http://vocab.getty.edu/aat/300200862"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "c352258b-a978-4977-aad7-d8981cdfcc94", "value": "http://vocab.getty.edu/aat/300404161"}</dcterms:identifier> + <skos:scopeNote xml:lang="en">{"id": "bd922b19-b1cb-478e-b152-67c64105cdb4", "value": "An historical Italian unit of length, equal to approximately 26/27 inches (66/68 cm), however usage varies."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "2de6d771-7ca2-4a35-9b14-dd407a7985d5", "value": "braccia"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/e3193f72-3a4c-4d54-8294-6a1af433a886"> + <skos:Concept rdf:about="http://localhost:8000/aaf5444e-3e94-4f4b-905c-c5c5c7c35ec8"> + <skos:prefLabel xml:lang="en">{"id": "17276f52-44a8-4279-a401-c059934732bc", "value": "bytes"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "846c9d1a-5376-4617-9eff-9e4a11774fb2", "value": "http://localhost:8000/e3193f72-3a4c-4d54-8294-6a1af433a886"}</dcterms:identifier> - <skos:prefLabel xml:lang="en">{"id": "5872133e-39ef-40c9-8945-2957d6eb79d4", "value": "hyperspectral cameras"}</skos:prefLabel> + <skos:scopeNote xml:lang="en">{"id": "7fcaf8b4-a686-4e26-bbca-101664781213", "value": "Unit of storage measurement, specifically a collection of 8 bits, in digital technology, or computers. It represents a value, or code, for an individual character or typographic symbol."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "dec139d6-fef0-4da7-af0a-a115b3c12313", "value": "http://vocab.getty.edu/aat/300265869"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/96c6ba52-ac8b-4c26-a020-a8199a851e42"> - <skos:prefLabel xml:lang="en">{"id": "cc9408b8-efe1-4282-9844-4dbeeaff5252", "value": "acrylic painting (technique)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/b0f10e3b-6dc6-41a1-b3ac-204ba3f9b982"> + <skos:altLabel xml:lang="en">{"id": "6fea6990-b592-11ee-8d43-f32ced083e7c", "value": "Point Raman spectroscopy Measurement"}</skos:altLabel> + <dcterms:identifier xml:lang="en">{"id": "d08dc87a-b40c-4606-a9ef-960ce1441cdd", "value": "Point Raman Measurement"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "7b39c459-a692-4a6f-8af2-ae23dd34a12c", "value": "http://vocab.getty.edu/aat/300182574"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "5773647b-5d17-4a7a-bff8-8eee0a88daa8", "value": "The art or practice of producing creative works with acrylic paint."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "6418248a-bcf5-408b-9bed-2dbfc996f922", "value": "Point Raman Measurement"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/4be949ac-5737-4415-b2af-6055bfddcad0"> - <dcterms:identifier xml:lang="en">{"id": "2c5211fb-28ad-4be6-b5d1-78f4b5466348", "value": "http://vocab.getty.edu/aat/300390560"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/c1046e53-a3c7-4e1e-b9a3-5051b5fb2e33"> + <skos:scopeNote xml:lang="en">{"id": "50941146-8c4c-410b-8abf-ddffacf876da", "value": "Strings of characters that uniquely identify a location on the internet or other network to which email can be sent; the email address is typically a point of contact for a particular individual or organization."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "e421b5ff-3586-4616-985f-e13056465946", "value": "email addresses"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:prefLabel xml:lang="en">{"id": "7a107d05-9760-4969-a503-f87c2ca1cdab", "value": "completion"}</skos:prefLabel> - <skos:scopeNote xml:lang="en">{"id": "a7b5ed62-d45e-4b1a-b13a-4154d09c98aa", "value": "The act or process of finishing something as in an architecutral context; completion of a protracted building campaign such as the construction of a cathedral."}</skos:scopeNote> + <dcterms:identifier xml:lang="en">{"id": "c25cd78a-fe2e-4f00-b28a-c83c0e1363a4", "value": "http://vocab.getty.edu/aat/300435686"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/1bd9f61f-fbc6-4b0d-9107-0e5b1ed9b277"> - <dcterms:identifier xml:lang="en">{"id": "3bc08650-9566-4684-9a6c-a910d694c9b2", "value": "http://vocab.getty.edu/aat/300182574"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "f901e6e6-c56c-4dff-8447-66415330edc6", "value": "The art or practice of producing creative works with acrylic paint."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "4c760add-9cec-4705-a7b8-0d4759af2a47", "value": "acrylic painting (technique)"}</skos:prefLabel> + <skos:Concept rdf:about="http://localhost:8000/48b2dd36-2148-4ce6-a00a-40be229da73d"> + <dcterms:identifier xml:lang="en">{"id": "01fe738c-2df4-4202-8726-afe454651dce", "value": "http://localhost:8000/48b2dd36-2148-4ce6-a00a-40be229da73d"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "d690f5b9-1d0e-4263-9982-2d03d4331040", "value": "formal title"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/67d2e2c0-4a05-41fa-8e22-c8fda35ea76e"> - <skos:narrower rdf:resource="http://localhost:8000/cf8cd73c-d245-4128-a509-84451c28eccc"/> + <skos:Concept rdf:about="http://localhost:8000/ebbc6d1b-20b1-4f39-b2b0-1881c1187e1b"> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:narrower rdf:resource="http://localhost:8000/edead18b-2e9e-4790-856f-9bf05dc78b23"/> - <skos:prefLabel xml:lang="en-us">{"id": "d152fdbb-9397-4d6e-96e1-26ff3c923696", "value": "Dimensions"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "72641181-6ac9-4974-b0b8-8189eff09dff", "value": "http://localhost:8001/67d2e2c0-4a05-41fa-8e22-c8fda35ea76e"}</dcterms:identifier> + <dcterms:identifier xml:lang="en">{"id": "64f6cd34-711a-4db4-a9bf-9255e27b415b", "value": "http://localhost:8000/ebbc6d1b-20b1-4f39-b2b0-1881c1187e1b"}</dcterms:identifier> + <skos:narrower rdf:resource="http://localhost:8000/21bbcd2d-84b8-4604-96aa-add5e2e84588"/> + <skos:narrower rdf:resource="http://localhost:8000/0159aa99-f9ef-43f6-a412-89df24b832bb"/> + <skos:narrower rdf:resource="http://localhost:8000/b5b561eb-9935-40bf-ade0-5a576299c3d9"/> + <skos:prefLabel xml:lang="en">{"id": "f22c0f3c-98ef-4fae-bebb-c7a45741857b", "value": "Modification Types"}</skos:prefLabel> + <skos:narrower rdf:resource="http://localhost:8000/fbdf6081-0cfa-4594-aa96-1453e6b703d7"/> + <skos:narrower rdf:resource="http://localhost:8000/fa855ab3-215b-4b2e-b314-11364d9b6cb3"/> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/62f83f13-058e-4c73-a0b0-4f1816780f52"> - <dcterms:identifier xml:lang="en">{"id": "4066b7b4-2bfe-404f-9254-0c2cfaba5ce5", "value": "http://vocab.getty.edu/aat/300419272"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/75e09bc6-2208-41c0-bcb1-a740c58782e6"> + <skos:prefLabel xml:lang="en-us">{"id": "eee61848-cfea-45de-8d42-3c7d630e3a34", "value": "gallery label"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "463b06b5-b2ed-4e66-bbf7-6a79a158ca5d", "value": "https://data.getty.edu/museum/ontology/linked-data/tms/object/titles/gallery-label"}</dcterms:identifier> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <skos:scopeNote xml:lang="en">{"id": "db2aa345-b051-4c4d-b440-08a648f4fe90", "value": "Identification numbers or alphanumeric codes assigned to, and usually posted on, buildings or plots located on a thoroughfare."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "32b8a4c6-bc01-4742-97e4-6b265c9ea1ab", "value": "street numbers (address elements)"}</skos:prefLabel> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/cd68971d-382b-447e-8d12-c41462ddeaf3"> + <skos:Concept rdf:about="http://localhost:8000/e683fc2f-c24f-4cad-9e52-582f960de82e"> + <skos:scopeNote xml:lang="en">{"id": "526a5a81-d497-4b0c-938b-5218934b6cdc", "value": "Detailed examination principles and empirical processes of discovery and demonstration considered characteristic of scientific investigation, generally involving the observation, formulation of a hypothesis, experimentation, and development of a conclusion."}</skos:scopeNote> + <skos:prefLabel xml:lang="en">{"id": "71f1d2fd-b43b-4ec9-aabd-d36c24444db0", "value": "scientific analysis"}</skos:prefLabel> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> - <dcterms:identifier xml:lang="en">{"id": "9f83a115-3f9f-4387-8638-bafe2c254963", "value": "http://vocab.getty.edu/aat/300389795"}</dcterms:identifier> - <skos:scopeNote xml:lang="en">{"id": "77b0a8ba-a181-46e6-965e-026300b86ba5", "value": "The dedicated practice of making photographs as an applied art."}</skos:scopeNote> - <skos:prefLabel xml:lang="en">{"id": "7e6adc53-b9be-48cb-8093-a79aacbc3add", "value": "photography (discipline)"}</skos:prefLabel> + <dcterms:identifier xml:lang="en">{"id": "c2f0e7fe-8a3e-43ab-8b89-d90ca4b9b171", "value": "http://vocab.getty.edu/aat/300379372"}</dcterms:identifier> </skos:Concept> - <skos:Concept rdf:about="http://localhost:8000/b8a8e087-6e8f-41db-98ff-202785afddbb"> - <skos:prefLabel xml:lang="en">{"id": "00d5a7a6-ff2f-4c44-ac85-7a8ab1a6fb70", "value": "Alternate Manifest"}</skos:prefLabel> - <dcterms:identifier xml:lang="en">{"id": "74a6afd0-bfa8-4133-97fd-0360729e0cd3", "value": "http://localhost:8000/b8a8e087-6e8f-41db-98ff-202785afddbb"}</dcterms:identifier> + <skos:Concept rdf:about="http://localhost:8000/58e0487d-3421-41ef-ab8e-4a635eb40e9d"> + <skos:scopeNote xml:lang="en">{"id": "3ed791af-221a-4a16-a803-49fc694f270d", "value": "General term for several currencies used in Denmark until 1875."}</skos:scopeNote> <skos:inScheme rdf:resource="http://localhost:8000/b73e741b-46da-496c-8960-55cc1007bec4"/> + <dcterms:identifier xml:lang="en">{"id": "2eb82f5a-7110-43d2-921c-7eeeabb6df2e", "value": "http://vocab.getty.edu/aat/300412190"}</dcterms:identifier> + <skos:prefLabel xml:lang="en">{"id": "003ce537-5b58-4a02-9ae4-dc0f075416eb", "value": "Danish rigsdaler (system of money)"}</skos:prefLabel> </skos:Concept> </rdf:RDF>