involvement -> influence
authorTim L <lebot@rpi.edu>
Sat, 30 Jun 2012 19:54:19 -0400
changeset 3547 2ead883a7785
parent 3546 41757e1d354c
child 3548 4723d8b90630
involvement -> influence
examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_AgentInfluence.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_AgentInfluence.ttl	Sat Jun 30 19:52:09 2012 -0400
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/class_AgentInfluence.ttl	Sat Jun 30 19:54:19 2012 -0400
@@ -4,4 +4,17 @@
 @prefix prov: <http://www.w3.org/ns/prov#> .
 @prefix :     <http://example.com/> .
 
-# TODO
+:illustrating
+    a prov:Activity; 
+    prov:wasAssociatedWith :derek;
+    prov:qualifiedAssociation [
+       a prov:Association, 
+         prov:AgentInfluence;   ## Instances of Generation, Invalidation, and Communication qualify
+       prov:agent   :derek;     ## the influence of an Agent (cited by prov:agent)
+       prov:hadRole :illustrationist
+    ];
+.
+
+:derek a prov:Person, prov:Agent, prov:Entity .
+
+:illustratonist a prov:Role .