removed hadRole from an Influence
authorTim L <lebot@rpi.edu>
Tue, 12 Feb 2013 08:36:59 -0500
changeset 5534 f6d053f8bfb2
parent 5533 0bb02b43e80b
child 5535 2e432ef815ab
removed hadRole from an Influence
examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedInfluence.ttl
--- a/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedInfluence.ttl	Tue Feb 12 13:02:06 2013 +0000
+++ b/examples/eg-24-prov-o-html-examples/rdf/create/rdf/property_qualifiedInfluence.ttl	Tue Feb 12 08:36:59 2013 -0500
@@ -5,7 +5,7 @@
 @prefix my:   <http://example.com/ontology#> .
 @prefix :     <http://example.com/> .
 
-# Although a domain extension (e.g. ':wasConductedBy') is not defined by PROV-O,
+# Although domain extension 'my:wasConductedBy' is not defined by PROV-O,
 # the relation between a surgery and an agent can still be qualified
 # by reusing prov:Influence and one of its three subclasses:
 # AgentInfluence, EntityInfluence, and ActivityInfluence
@@ -14,17 +14,22 @@
 :conductingSurgery_1
    a prov:Activity;
 
-   # This unqualified influence is unknown in PROV, 
-   # this would be a subproperty of wasAssociatedWith.
+   # This unqualified influence is unknown in PROV;
+   # it would be a subproperty of prov:wasAssociatedWith.
    my:wasConductedBy    :bob;
    prov:wasInfluencedBy :bob;  
    prov:qualifiedInfluence [   
-      # Even though PROV systems do not understand :wasConductedBy, 
+      # Even though PROV systems do not understand my:wasConductedBy, 
+      # they will at least understand that :bob influenced the 
+      # surgery in some way.
       a prov:Influence;      # Inferred
-      prov:agent   :bob;     # The object of :wasConductedBy
-      prov:hadRole :surgeon;
+      prov:agent   :bob;     # The object of my:wasConductedBy
+
+      # Domain extension properties may be used to describe the
+      # influences that an Entity, Activity, or Agent
+      # have upon another Entity, Activity, or Agent.
+      my:degree .72;
    ];
 .
 
-:bob       a prov:Agent .
-my:surgeon a prov:Role .
+:bob a prov:Agent .