Skip to content

Instantly share code, notes, and snippets.

@ncarboni
Last active April 21, 2026 12:30
Show Gist options
  • Select an option

  • Save ncarboni/e4c475519a1c2715dcc8de9d4a275bcb to your computer and use it in GitHub Desktop.

Select an option

Save ncarboni/e4c475519a1c2715dcc8de9d4a275bcb to your computer and use it in GitHub Desktop.
The agency in the activity modelled with CIDOC-CRM
@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" .
@ZoeRenaudie
Copy link
Copy Markdown

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.

@ncarboni
Copy link
Copy Markdown
Author

ncarboni commented Apr 21, 2026

oh yes, the URIs do not match! Thank you! Fixed, now should be alright

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment