added provo example involvee.
--- 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 .