Skip to content

Instantly share code, notes, and snippets.

@ncarboni
Created January 8, 2019 16:21
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ncarboni/a9f973abdd24d06638fc14dec4ab157a to your computer and use it in GitHub Desktop.
Save ncarboni/a9f973abdd24d06638fc14dec4ab157a to your computer and use it in GitHub Desktop.
Modelling of provenance information with CIDOC-CRM
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix crm: <http://http://www.cidoc-crm.org/cidoc-crm/> .
@prefix sari: <http://w3id.org/sari#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://example.com/work/663763> a crm:E22_Man-made-object ;
crm:P24i_changed_ownership_through <https://example.com/acquisition/22734637> ;
crm:P24i_changed_ownership_through <https://example.com/acquisition/22734638> ;
crm:P24i_changed_ownership_through <https://example.com/acquisition/22734639> .
<https://example.com/acquisition/22734637> a crm:E8_Acquisition ;
crm:P22_transferred_title_to <https://example.com/person/223> ;
crm:P4_has_time-span <https://example.com/acquisition_timespan/0466456> .
<https://example.com/acquisition_timespan/0466456> a crm:E52_Time-Span ;
crm:P81a_end_of_the_begin "1640-01-01"^^xsd:date ;
crm:p81b_begin_of_the_end "1862-12-31"^^xsd:date .
<https://example.com/person/223> a crm:E21_Person .
<https://example.com/acquisition/22734638> a crm:E8_Acquisition ;
crm:P23_transferred_title_from <https://example.com/person/223> ;
crm:P22_transferred_title_to <https://example.com/person/224> ;
crm:P4_has_time-span <https://example.com/acquisition_timespan/0466457> .
<https://example.com/person/224> a crm:E21_Person ;
crm:P1_is_identified_by <http://example.com/224/appellation/> .
<http://example.com/223/appellation/> a crm:E41_Appellation ;
rdfs:label "Daniel Burckhardt-Werthemann" .
<https://example.com/acquisition_timespan/0466457> a crm:E52_Time-Span;
crm:P81a_end_of_the_begin "1863-01-01"^^xsd:date ;
crm:p81b_begin_of_the_end "1949-12-31"^^xsd:date .
<https://example.com/acquisition/22734639> a crm:E8_Acquisition ;
crm:P23_transferred_title_from <https://example.com/person/224> ;
crm:P22_transferred_title_to <https://example.com/person/225> ;
crm:P4_has_time-span <https://example.com/acquisition_timespan/0466458> .
<https://example.com/person/225> a crm:E21_Person .
<https://example.com/acquisition_timespan/0466458> a crm:E52_Time-Span;
crm:P81a_end_of_the_begin "1950-01-01"^^xsd:date .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment