Skip to content

Instantly share code, notes, and snippets.

@sennierer
Last active December 5, 2019 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sennierer/0b01815c822d4a559452f817ca01f638 to your computer and use it in GitHub Desktop.
Save sennierer/0b01815c822d4a559452f817ca01f638 to your computer and use it in GitHub Desktop.
APIS Person CIDOC CRM example
@prefix crm: <http://www.cidoc-crm.org/cidoc-crm/> .
@prefix geo: <http://www.opengis.net/ont/geosparql#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
<https://apis.acdh.oeaw.ac.at/entity/31522/> a crm:E21_Person ;
crm:P1_is_identified_by <https://apis.acdh.oeaw.ac.at/appellation/31522/1>;
owl:sameAs <http://d-nb.info/gnd/1036446948>.
<https://apis.acdh.oeaw.ac.at/appellation/31522/1> a crm:E41_Appellation ;
rdfs:label "Theodor Steiskal"@de.
<https://apis.acdh.oeaw.ac.at/birth/31522/> a crm:E67_Birth ;
crm:P4_has_time-span [ a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "1876-12-19"^^xsd:date ;
crm:P82b_end_of_the_end "1876-12-19"^^xsd:date ] ;
crm:P7_took_place_at <https://apis.acdh.oeaw.ac.at/entity/183> ;
crm:P98_brought_into_life <https://apis.acdh.oeaw.ac.at/entity/31522/> .
<https://apis.acdh.oeaw.ac.at/death/31522/> a crm:E69_Death ;
crm:P100_was_death_of <https://apis.acdh.oeaw.ac.at/entity/31522/> ;
crm:P4_has_time-span [ a crm:E52_Time-Span ;
crm:P82a_begin_of_the_begin "1945-07-11"^^xsd:date ;
crm:P82b_end_of_the_end "1945-07-11"^^xsd:date ] ;
crm:P7_took_place_at <https://apis.acdh.oeaw.ac.at/entity/183> .
<https://apis.acdh.oeaw.ac.at/entity/183> a crm:E53_Place ;
crm:P168_place_is_defined_by "Point( 48.20849 16.37208 )"^^<geo:wktLiteral> ;
crm:P1_is_identified_by <https://apis.acdh.oeaw.ac.at/appellation/183>;
owl:sameAs <http://sws.geonames.org/2761369/> .
<https://apis.acdh.oeaw.ac.at/appellation/183> a crm:E41_Appellation ;
rdfs:label "Wien"@de.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment