collections examples for prov-o html
authorTim L <lebot@rpi.edu>
Mon, 16 Apr 2012 11:45:08 -0400
changeset 2324 20c5ae01c7e7
parent 2323 2f8394853124
child 2325 7723c244cf6c
collections examples for prov-o html
examples/eg-26-provo-collections-narrative/document/homepage
examples/eg-26-provo-collections-narrative/rdf/eg-26-provo-collections-narrative.ttl
examples/eg-26-provo-collections-narrative/rdf/eg-26-provo-collections-narrative.ttl.sd_name
examples/eg-26-provo-collections-narrative/rdf/start.ttl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-26-provo-collections-narrative/document/homepage	Mon Apr 16 11:45:08 2012 -0400
@@ -0,0 +1,2 @@
+http://www.w3.org/2011/prov/wiki/Eg-26-provo-collections-narrative
+http://dvcs.w3.org/hg/prov/file/tip/examples/eg-26-provo-collections-narrative
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-26-provo-collections-narrative/rdf/eg-26-provo-collections-narrative.ttl	Mon Apr 16 11:45:08 2012 -0400
@@ -0,0 +1,11 @@
+@prefix rdf:     <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs:    <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd:     <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:     <http://www.w3.org/2002/07/owl#> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix sd:      <http://www.w3.org/ns/sparql-service-description#> .
+@prefix dcat:    <http://www.w3.org/ns/dcat#> .
+@prefix void:    <http://rdfs.org/ns/void#> .
+@prefix foaf:    <http://xmlns.com/foaf/0.1/> .
+@prefix prov:    <http://www.w3.org/ns/prov#> .
+@prefix :        <http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-26-provo-collections-narrative/rdf/eg-26-provo-collections-narrative.ttl#> .
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-26-provo-collections-narrative/rdf/eg-26-provo-collections-narrative.ttl.sd_name	Mon Apr 16 11:45:08 2012 -0400
@@ -0,0 +1,1 @@
+http://dvcs.w3.org/hg/prov/raw-file/tip/examples/eg-26-provo-collections-narrative/rdf/eg-26-provo-collections-narrative.ttl
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/examples/eg-26-provo-collections-narrative/rdf/start.ttl	Mon Apr 16 11:45:08 2012 -0400
@@ -0,0 +1,21 @@
+@prefix prov: <http://www.w3.org/ns/prov#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix :    <http://example.org/> .
+
+:e1 a prov:Entity .
+:e2 a prov:Entity .
+
+:c1 a prov:Collection;
+   prov:membership [ 
+      a prov:Membership;
+      prov:member [ 
+           a prov:KeyValuePair;
+           prov:key   "k1"^^xsd:string;
+           prov:value :e1
+        ], [ 
+           a prov:KeyValuePair;
+           prov:key   "k2"^^xsd:string;
+           prov:value :e2
+        ];
+    ];
+.