Last active
March 4, 2026 19:16
-
-
Save ewg118/2c104718a5705f455ed92c2d8c4dfe0d to your computer and use it in GitHub Desktop.
Linked Art Set provenance example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
| @prefix la: <https://linked.art/ns/terms/> . | |
| @prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> . | |
| @prefix xsd: <http://www.w3.org/2001/XMLSchema#> . | |
| <http://numismatics.org/lot/1955.190> | |
| a la:Set ; | |
| rdfs:label "1955.190" ; | |
| la:members_exemplified_by [ | |
| a crm:E22_Human-Made_Object ; | |
| crm:P24i_changed_ownership_through [ | |
| a crm:E8_Acquisition ; | |
| crm:P2_has_type <http://vocab.getty.edu/aat/300417638> ; | |
| crm:P4_has_time-span [ | |
| a crm:E52_Time-Span ; | |
| rdfs:label "December 1, 1955" ; | |
| crm:P82a_begin_of_the_begin "1955-12-01T00:00:00Z"^^xsd:dateTime ; | |
| crm:P82b_end_of_the_end "1955-12-01T23:59:59Z"^^xsd:dateTime | |
| ] ; | |
| crm:P22_transferred_title_to <http://nomisma.org/id/ans> ; | |
| crm:P23_transferred_title_from <http://numismatics.org/search/entity/21631466-f7e4-3b6a-ad15-14a8b2348d97> | |
| ] | |
| ] . | |
| <http://numismatics.org/search/entity/21631466-f7e4-3b6a-ad15-14a8b2348d97> | |
| a crm:E21_Person ; | |
| rdfs:label "Chalifoux, Elizabeth A. (Mrs. Harold L.)" ; | |
| crm:P1_is_identified_by [ | |
| a crm:E33_E41_Linguistic_Appellation ; | |
| crm:P190_has_symbolic_content "Chalifoux, Elizabeth A. (Mrs. Harold L.)" ; | |
| crm:P2_has_type <http://vocab.getty.edu/aat/300404670> | |
| ] . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment