Skip to content

Instantly share code, notes, and snippets.

@ncarboni
Created January 8, 2019 10:32
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 ncarboni/2b532a219bb3f81be2d02ef8f34c4b64 to your computer and use it in GitHub Desktop.
Save ncarboni/2b532a219bb3f81be2d02ef8f34c4b64 to your computer and use it in GitHub Desktop.
Modelling of notes in 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#> .
<http://example.com/person/134> a crm:E21_Person ;
crm:P01i_is_domain_of <http://example.com/note/123> ;
crm:P3_has_note "Kommissär der Eidgen. Kunstkommission" .
<http://example.com/note/123> a crm:PC3_has_note ;
crm:P3.1_has_type <http://example.com/type/SIKART_DOCUMENTATION_LEVEL> ;
crm:P03_has_range_literal "A" .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment