prov:order annotation property prov-o
authorTim L <lebot@rpi.edu>
Sun, 19 Aug 2012 13:15:14 -0400
changeset 4355 706c8b0e4d0f
parent 4354 33ae28a11dc1
child 4356 dd9b0506b37a
prov:order annotation property prov-o
ontology/ProvenanceOntology.owl
ontology/prov.ttl
--- a/ontology/ProvenanceOntology.owl	Sat Aug 18 13:59:21 2012 -0400
+++ b/ontology/ProvenanceOntology.owl	Sun Aug 19 13:15:14 2012 -0400
@@ -94,10 +94,17 @@
         <rdfs:subPropertyOf rdf:resource="&rdfs;seeAlso"/>
         <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
     </owl:AnnotationProperty>
+
     <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#category">
         <rdfs:comment xml:lang="en">Classify prov-o terms into three categories, including &#39;starting-point&#39;, &#39;qualifed&#39;, and &#39;extended&#39;. This classification is used by the prov-o html document to gently introduce prov-o terms to its users. </rdfs:comment>
         <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
     </owl:AnnotationProperty>
+
+    <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#order">
+        <rdfs:comment xml:lang="en">The position that this OWL term should be listed within documentation. The scope of the documentation (e.g., among all terms, among terms within a prov:category, among properties applying to a particular class, etc.) is unspecified.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+
     <owl:AnnotationProperty rdf:about="&rdfs;isDefinedBy"/>
     <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#editorsDefinition">
         <rdfs:comment xml:lang="en">When the prov-o term does not have a definition drawn from prov-dm, and the prov-o editor provides one.</rdfs:comment>
--- a/ontology/prov.ttl	Sat Aug 18 13:59:21 2012 -0400
+++ b/ontology/prov.ttl	Sun Aug 19 13:15:14 2012 -0400
@@ -778,10 +778,15 @@
 
 :n
     a owl:AnnotationProperty ;
-    rdfs:comment "A reference to the principal section of the PROV-M document that describes this concept."@en ;
+    rdfs:comment "A reference to the principal section of the PROV-DM document that describes this concept."@en ;
     rdfs:isDefinedBy <http://www.w3.org/ns/prov#> ;
     rdfs:subPropertyOf rdfs:seeAlso .
 
+:order
+    a owl:AnnotationProperty ;
+    rdfs:comment "The position that this OWL term should be listed within documentation. The scope of the documentation (e.g., among all terms, among terms within a prov:category, among properties applying to a particular class, etc.) is unspecified."@en ;
+    rdfs:isDefinedBy <http://www.w3.org/ns/prov#> .
+
 :qualifiedAssociation
     a owl:ObjectProperty ;
     rdfs:comment "If this Activity prov:wasAssociatedWith Agent :ag, then it can qualify the Association using prov:qualifiedAssociation [ a prov:Association;  prov:agent :ag; :foo :bar ]."@en ;