Last active
July 8, 2019 20:49
-
-
Save ncarboni/0ef99d3e520a7496f8dd357dddd000fd to your computer and use it in GitHub Desktop.
Modelling of diverse types of appellations 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/500020981> a crm:E21_Person ; | |
crm:P1_is_identified_by <http://example.com/500020981/appellation/name> , <http://example.com/500020981/appellation/surname> , <http://example.com/500020981/appellation/full> . | |
<http://example.com/500020981/appellation/name> | |
a crm:E41_Appellation ; | |
rdfs:label "Ferdinand" ; | |
crm:P2_has_type <http://vocab.getty.edu/page/aat/300404651> . | |
<http://example.com/500020981/appellation/surname> | |
a crm:E41_Appellation ; | |
rdfs:label "Hodler" ; | |
crm:P2_has_type <http://vocab.getty.edu/page/aat/300404652> . | |
<http://example.com/500020981/appellation/full> | |
a crm:E41_Appellation ; | |
rdfs:label "Ferdinand Hodler" . | |
<http://vocab.getty.edu/aat/300404651> a crm:E55_Type . | |
<http://vocab.getty.edu/aat/300404652> a crm:E55_Type . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi Petram,
No problem, happy it could be useful to someone else :-)
You are definitively right. I skipped the class declaration for the type. Just added. Thanks for spotting it.
Nicola