added wasAssociatedWith
authorSatya Sahoo <satya.sahoo@case.edu>
Wed, 18 Jan 2012 21:19:44 -0500
changeset 1400 7918902c8dbc
parent 1399 26cec1772461
child 1401 97217a0f5e0f
added wasAssociatedWith
ontology/ProvenanceFormalModel.html
--- a/ontology/ProvenanceFormalModel.html	Wed Jan 18 18:14:19 2012 +0000
+++ b/ontology/ProvenanceFormalModel.html	Wed Jan 18 21:19:44 2012 -0500
@@ -809,21 +809,21 @@
 
 
 		<section id="wascontrolledby">
-		  <h4>wasControlledBy</h4>
-	      <p>The wasControlledBy property links Activity class to Agent class, where control represents the involvement of the Agent in modifying the characteristics of the instance of the Activity class"[[PROV-DM]].</p>
+		  <h4>wasAssociatedWith</h4>
+	      <p>The wasAssociatedWith property links Agent class to Activity class, where association represents the involvement of the Agent in modifying the characteristics of the instance of the Activity class"[[PROV-DM]].</p>
           <img src="diagrams/wasControlledBy.png" 
                style="height: 3em" alt="wasControlledBy links Activity to Agent" />
 		  <div class="anexample">
 			  <div><b>Example</b></div>
-			  <p> Example of wasControlledBy property from the <a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018/#a-file-scenario"> provenance scenario </a> is <i>FileAppending</i> (Activity) <i>wasControlledBy Bob</i>. The RDF/XML syntax for asserting this is given below.		
+			  <p> Example of wasAssociatedWith property from the <a href="http://www.w3.org/TR/2011/WD-prov-dm-20111018/#a-file-scenario"> provenance scenario </a> is <i>Bob wasAssociatedWith FileAppending</i> (Activity). The RDF/XML syntax for asserting this is given below.		
 			  <div class="exampleOuter">
 				<pre class="example">
-					&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#act1"&gt;
-					  &lt;prov:wasControlledBy&gt;
-						&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#Bob"&gt;
-						  &lt;rdf:type rdf:resource="http://www.example.com/crime#Journalist"/&gt;
+					&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#Bob"&gt;
+					  &lt;prov:wasAssociatedWith&gt;
+						&lt;rdf:Description rdf:about="http://www.example.com/crimeFile#act1"&gt;
+						  &lt;rdf:type rdf:resource="http://www.example.com/crime#FileAppending"/&gt;
 						&lt;/rdf:Description&gt;
-					  &lt;/prov:wasControlledBy&gt;
+					  &lt;/prov:wasAssociatedWith&gt;
 					&lt;/rdf:Description&gt;	
 				</pre>
 			  </div>