association and plan
authorStian Soiland-Reyes <soiland-reyes@cs.manchester.ac.uk>
Wed, 25 Apr 2012 15:16:48 +0100
changeset 2534 ae2fd4f4f232
parent 2533 807d0b45705d
child 2535 500a16d4fdd9
association and plan
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Association.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Plan.ttl
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadPlan.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Association.ttl	Wed Apr 25 15:09:21 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Association.ttl	Wed Apr 25 15:16:48 2012 +0100
@@ -16,7 +16,7 @@
         a prov:Association ;
         prov:agent :steve ;
         prov:role :stylist ;
-        prov:hadPlan :houseStyles ;
+        prov:hadPlan :house-styles ;
         rdfs:comment "Steve helped Derek conform with the house style"@en 
     ] .
 
@@ -26,4 +26,4 @@
 :illustratonist a prov:Role .
 :stylist a prov:Role .
 
-:houseStyles a prov:Plan, prov:Entity .
+:house-styles a prov:Plan, prov:Entity .
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Plan.ttl	Wed Apr 25 15:09:21 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_Plan.ttl	Wed Apr 25 15:16:48 2012 +0100
@@ -4,4 +4,13 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:house-styles a prov:Plan, prov:Entity ;
+    rdfs:comment "Use blue graphs for positive spin, red for negative"@en .
+
+:illustrating a prov:Activity ;
+    prov:qualifiedAssociation :steve-checking-housestyles .
+
+:steve-checking-housestyles a prov:Association ;
+    prov:agent :steve ;
+    prov:hadPlan :house-styles .
+
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadPlan.ttl	Wed Apr 25 15:09:21 2012 +0100
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_hadPlan.ttl	Wed Apr 25 15:16:48 2012 +0100
@@ -4,4 +4,17 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:illustrating
+    a prov:Activity; 
+    prov:wasAssociatedWith :derek, :steve ;
+    prov:qualifiedAssociation :steve-checking-housestyles
+
+:steve-checking-housestyles a prov:Association ;
+    prov:agent :steve ;
+    prov:role :stylist ;
+    prov:hadPlan :house-styles ;
+    rdfs:comment "Steve helped Derek conform with the house style"@en .
+
+:house-styles a prov:Plan, prov:Entity ;
+    rdfs:comment "Use blue graphs for positive spin, red for negative"@en .
+