added provo example involvee.
authorTim L <lebot@rpi.edu>
Mon, 07 May 2012 09:49:56 -0400
changeset 2714 312f5d8b2309
parent 2713 eb1a96df37d5
child 2715 5a55ac048ae3
added provo example involvee.
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_involvee.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_involvee.ttl	Mon May 07 09:44:20 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_involvee.ttl	Mon May 07 09:49:56 2012 -0400
@@ -4,4 +4,31 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:illustrationActivity 
+   a prov:Activity;
+   prov:qualifiedUsage         :usage_1;
+   prov:qualifiedAssociation   :association_1;
+   prov:qualifiedCommunication :communication_1;
+.
+
+:usage_1
+   a prov:Usage;
+   prov:entity   :aggregatedByRegions;
+   prov:involvee :aggregatedByRegions; # Inferred
+.
+
+:association_1
+   a prov:Association;
+   prov:agent    :derek;
+   prov:involvee :derek; # - - - - - - - Inferred
+.
+
+:communication_1
+   a prov:Communication;
+   prov:activity :aggregationActivity;
+   prov:involvee :aggregationActivity; # Inferred
+.
+
+:aggregationActivity a prov:Activity .  
+:derek               a prov:Agent .
+:aggregatedByRegions a prov:Entity .