Last active
January 8, 2019 15:17
-
-
Save ncarboni/cb1fd5c26d19faf9bf3432c724c6a1ce to your computer and use it in GitHub Desktop.
Modelling of a technique with 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#> . | |
<https://example.com/work/6004987> a crm:E22_Man-Made_Object ; | |
crm:P108i_was_produced_by <https://example.sikart.ch/production_activity/1> . | |
<https://example.com/production_activity/1> a crm:E12_Production ; | |
crm:P33_used_specific_technique <https://example.sikart.ch/technique/1> . | |
<https://example.com/technique/1> a crm:E29_Design_or_Procedure ; | |
crm:P1_is_identified_by <https://example.sikart.ch/technique/1/appellation> . | |
<https://example.com/technique/1/appellation> a crm:E41_Appellation ; | |
rdfs:label "Öl auf Leinwand" . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment