Created
January 8, 2019 10:32
-
-
Save ncarboni/2b532a219bb3f81be2d02ef8f34c4b64 to your computer and use it in GitHub Desktop.
Modelling of notes in CIDOC-CRM
This file contains 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 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