updated comment to qualifiedForm annotation property
authorTim L <lebot@rpi.edu>
Tue, 03 Jul 2012 10:49:12 -0400
changeset 3689 a8b1780d6d10
parent 3688 43fece0f4b32
child 3690 42195124779a
updated comment to qualifiedForm annotation property
ontology/ProvenanceOntology.owl
ontology/prov.ttl
--- a/ontology/ProvenanceOntology.owl	Tue Jul 03 10:38:48 2012 -0400
+++ b/ontology/ProvenanceOntology.owl	Tue Jul 03 10:49:12 2012 -0400
@@ -99,21 +99,25 @@
         <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
     </owl:AnnotationProperty>
     <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#qualifiedForm">
-        <rdfs:comment xml:lang="en">This annotation property links a prov:involved subproperty with a prov:Involved subclass. This indicates that the property can be qualified by using prov:qualified. 
+        <rdfs:comment xml:lang="en">This annotation property links a subproperty of prov:wasInfluencedBy with the subclass of prov:Influence and the qualifying property that are used to qualify it. 
 
-Example:
-    prov:wasGeneratedBy prov:qualifiedForm prov:Generation .
+Example annotation:
+
+    prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation .
 
 Then this unqualified assertion:
+
     :entity1 prov:wasGeneratedBy :activity1 .
 
 can be qualified by adding:
-   :entity1 prov:qualified :entity1Gen .
-   :entity1Gen a prov:Generation;
-       prov:activity :activity1 ;
+
+   :entity1 prov:qualifiedGeneration :entity1Gen .
+   :entity1Gen 
+       a prov:Generation, prov:Influence;
+       prov:activity :activity1;
        :customValue 1337 .
 
-Note how the range of the unqualified property is mirrored by the prov:activity or prov:entity on the involvement class.</rdfs:comment>
+Note how the value of the unqualified influence (prov:wasGeneratedBy :activity1) is mirrored as the value of the prov:activity (or prov:entity, or prov:agent) property on the influence class.</rdfs:comment>
         <rdfs:subPropertyOf rdf:resource="&rdfs;seeAlso"/>
         <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
     </owl:AnnotationProperty>
--- a/ontology/prov.ttl	Tue Jul 03 10:38:48 2012 -0400
+++ b/ontology/prov.ttl	Tue Jul 03 10:49:12 2012 -0400
@@ -895,21 +895,25 @@
 
 :qualifiedForm
     a owl:AnnotationProperty ;
-    rdfs:comment """This annotation property links a prov:involved subproperty with a prov:Involved subclass. This indicates that the property can be qualified by using prov:qualified. 
+    rdfs:comment """This annotation property links a subproperty of prov:wasInfluencedBy with the subclass of prov:Influence and the qualifying property that are used to qualify it. 
 
-Example:
-    prov:wasGeneratedBy prov:qualifiedForm prov:Generation .
+Example annotation:
+
+    prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation .
 
 Then this unqualified assertion:
+
     :entity1 prov:wasGeneratedBy :activity1 .
 
 can be qualified by adding:
-   :entity1 prov:qualified :entity1Gen .
-   :entity1Gen a prov:Generation;
-       prov:activity :activity1 ;
+
+   :entity1 prov:qualifiedGeneration :entity1Gen .
+   :entity1Gen 
+       a prov:Generation, prov:Influence;
+       prov:activity :activity1;
        :customValue 1337 .
 
-Note how the range of the unqualified property is mirrored by the prov:activity or prov:entity on the involvement class."""@en ;
+Note how the value of the unqualified influence (prov:wasGeneratedBy :activity1) is mirrored as the value of the prov:activity (or prov:entity, or prov:agent) property on the influence class."""@en ;
     rdfs:isDefinedBy <http://www.w3.org/ns/prov#> ;
     rdfs:subPropertyOf rdfs:seeAlso .