updated variables for wasAssciatedWith
authorLuc Moreau <l.moreau@ecs.soton.ac.uk>
Thu, 17 Nov 2011 15:39:02 +0000
changeset 952 5f6d39d503c6
parent 951 9487fc1112d7
child 954 ad9a0b38a946
child 984 d29353d001bf
updated variables for wasAssciatedWith
model/ProvenanceModel.html
--- a/model/ProvenanceModel.html	Thu Nov 17 15:29:35 2011 +0000
+++ b/model/ProvenanceModel.html	Thu Nov 17 15:39:02 2011 +0000
@@ -1404,16 +1404,16 @@
 </div>
 
 <div class="anexample">
-In the following example, a programmer, a researcher and a team leader agents are asserted.  The porgrammer and researcher are associated with a workflow activity.  The programmer acts on behalf of the researcher (acting as a proxy) encoding the commands specified by the researcher; the researcher acts on behalf of the team leader, who delegated his responsibility.
+In the following example, a programmer, a researcher and a funder agents are asserted.  The porgrammer and researcher are associated with a workflow activity.  The programmer acts on behalf of the researcher (delegation) encoding the commands specified by the researcher; the researcher acts on behalf of the funder, who has an contractual agreement with the researcher.
 <pre class="codeexample">
 activity(a,[prov:type="workflow"])
 agent(ag1,[prov:type="programmer"]
 agent(ag2,[prov:type="researcher"]
-agent(ag3,[prov:type="teamleader"]
+agent(ag3,[prov:type="funder"]
 wasAssociatedWith(a,ag1,[prov:role="loggedInUser"])
 wasAssociatedWith(a,ag2)
-actedOnBehalfOf(ag1,ag2,a,[prov:type="proxy"])
-actedOnBehalfOf(ag2,ag3,a,[prov:type="delegation"])
+actedOnBehalfOf(ag1,ag2,a,[prov:type="delegation"])
+actedOnBehalfOf(ag2,ag3,a,[prov:type="contract"])
 </pre>
 </div>