Skip to content

Instantly share code, notes, and snippets.

@stain
Created November 13, 2020 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stain/d5ecffce8f465e26b69188c7afe9b38b to your computer and use it in GitHub Desktop.
Save stain/d5ecffce8f465e26b69188c7afe9b38b to your computer and use it in GitHub Desktop.
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix ex: <http://example.com/> .
@prefix s: <http://schema.org/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
ex:regionList1 a prov:Entity .
ex:dataset1 a prov:Entity , s:Dataset .
ex:composition1 a prov:Entity .
ex:compose1 a prov:Activity , ex:Composing ;
rdfs:label "Composing region and data" .
ex:compose1 prov:qualifiedUsage _:blank1 .
_:blank1 a prov:Usage ;
prov:entity ex:dataset1 .
_:blank1 prov:atTime "2011-11-16T16:00:00.000Z"^^xsd:dateTime .
ex:compose1 prov:used ex:regionList1 .
ex:composition1 prov:wasGeneratedBy ex:compose1 .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment