Last active
April 21, 2026 12:30
-
-
Save ncarboni/e4c475519a1c2715dcc8de9d4a275bcb to your computer and use it in GitHub Desktop.
The agency in the activity modelled with CIDOC-CRM
This file contains hidden or 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 rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | |
| @prefix crm: <http://http://www.cidoc-crm.org/cidoc-crm/> . | |
| <https://example.com/work/6004987> a crm:E22_Man-Made_Object ; | |
| crm:P16i_was_used_for <https://example.sikart.ch/publication_activity/1> . | |
| <https://example.sikart.ch/publication_activity/1> a crm:E7_Activity ; | |
| crm:P14_carried_out_by <https://example.sikart.ch/person/135> . | |
| <https://example.sikart.ch/person/135> a crm:E21_Person; | |
| crm:P1_is_identified_by <https://example.sikart.ch/person/134/appellation> . | |
| <https://example.sikart.ch/person/134/appellation> a crm:E41_Appellation ; | |
| rdfs:label "Oskar Bätschmann" . |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Hello ! Just a small question, shouldn't it be https://example.com/publication_activity/1 a crm:E7_Activity ;
crm:P14_carried_out_by https://example.com/person/135 ? Instead of https://example.sikart.ch/person/135.