domain, range on asInBundle and a comment
authorTim L <lebot@rpi.edu>
Mon, 02 Jul 2012 08:20:09 -0400
changeset 3583 aa66d7cda761
parent 3582 4572e561acac
child 3584 04e6abbd9e22
domain, range on asInBundle and a comment
ontology/ProvenanceOntology.owl
ontology/prov.ttl
--- a/ontology/ProvenanceOntology.owl	Sun Jul 01 20:33:07 2012 -0400
+++ b/ontology/ProvenanceOntology.owl	Mon Jul 02 08:20:09 2012 -0400
@@ -205,8 +205,11 @@
 
     <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#asInBundle">
         <rdfs:label>asInBundle</rdfs:label>
+        <rdfs:comment xml:lang="en">When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :b was described.</rdfs:comment>
         <inverse>contextOf</inverse>
         <category>expanded</category>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Bundle"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
         <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#mentionOf"/>
     </owl:ObjectProperty>
     
--- a/ontology/prov.ttl	Sun Jul 01 20:33:07 2012 -0400
+++ b/ontology/prov.ttl	Mon Jul 02 08:20:09 2012 -0400
@@ -437,7 +437,10 @@
 
 :asInBundle
     a owl:ObjectProperty ;
+    rdfs:comment "When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :b was described."@en ;
+    rdfs:domain :Entity ;
     rdfs:label "asInBundle" ;
+    rdfs:range :Bundle ;
     :category "expanded" ;
     :inverse "contextOf" ;
     :sharesDefinitionWith :mentionOf .