Modified version of ontology to include responses to lasts call comments
authorDave Reynolds <dave@epimorphics.com>
Sat, 16 Feb 2013 17:13:14 +0000
changeset 276 dd91ee2c7b95
parent 275 48943de3f945
child 277 817454df40c7
Modified version of ontology to include responses to lasts call comments
org/vocab/org.ttl
--- a/org/vocab/org.ttl	Sat Feb 16 15:17:35 2013 +0000
+++ b/org/vocab/org.ttl	Sat Feb 16 17:13:14 2013 +0000
@@ -17,7 +17,7 @@
 
 <http://www.w3.org/ns/org#>
     a owl:Ontology;
-    owl:versionInfo "0.6";
+    owl:versionInfo "0.7";
     rdfs:label "Core organization ontology"@en;
     rdfs:comment "Vocabulary for describing organizational structures, specializable to a broad variety of types of organization."@en;
     dct:created "2010-05-28"^^xsd:date;
@@ -25,12 +25,13 @@
     dct:modified "2010-10-08"^^xsd:date;
     dct:modified "2012-09-30"^^xsd:date;
     dct:modified "2012-10-06"^^xsd:date;
+    dct:modified "2013-02-15"^^xsd:date;
     dct:title "Core organization ontology"@en;
     dct:title "Ontologie des organisations"@fr;
     dct:contributor [foaf:mbox "dave@epimorphics.com"; foaf:name "Dave Reynolds"];
     dct:contributor [foaf:mbox "dguardiola@quinode.fr"; foaf:name "Dominique Guardiola"];
     dct:license <http://www.opendatacommons.org/licenses/pddl/1.0/> ;
-    rdfs:seeAlso <http://www.epimorphics.com/public/vocabulary/org.html>;
+    rdfs:seeAlso <http://www.w3.org/TR/vocab-org/> ;
     .
     
 # -- Organizational structure -----------------------------------------------------------
@@ -192,10 +193,10 @@
 org:reportsTo a owl:ObjectProperty, rdf:Property;
     rdfs:label "reports to"@en;
     rdfs:label "est subordonné à"@fr;
-#    rdfs:domain foaf:Agent;
-#    rdfs:range  foaf:Agent;
-    rdfs:domain [a owl:Class; owl:unionOf (foaf:Agent org:Post)];
-    rdfs:range  [a owl:Class; owl:unionOf (foaf:Agent org:Post)];
+    rdfs:domain foaf:Agent;
+    rdfs:range  foaf:Agent;
+#    rdfs:domain [a owl:Class; owl:unionOf (foaf:Agent org:Post)];
+#    rdfs:range  [a owl:Class; owl:unionOf (foaf:Agent org:Post)];
     rdfs:comment """Indicates a reporting relationship as might be depicted on an organizational chart. The precise semantics of the reporting relationship will vary by organization but is intended to encompass both direct supervisory relationships (e.g. carrying objective and salary setting authority) and more general reporting or accountability relationships (e.g. so called _dotted line_ reporting)."""@en;
     rdfs:comment """Indique une relation de subordination comme elle pourrait figurer dans un organigramme. La sémantique précise de cette subordination pourra varier selon l'Organisation mais vise à englober aussi bien les relations hiérarchiques directes (définition d'objectifs, montant du salaire) que des relations plus générales ou organisationnelles (les liens en pointillés dans les organigrammes)."""@fr;    
     rdfs:isDefinedBy <http://www.w3.org/ns/org> ;
@@ -323,9 +324,9 @@
     rdfs:label "site Address"@en;
     rdfs:label "adresse du Site"@fr;
     rdfs:domain org:Site;
-    rdfs:range  vcard:VCard;
-    rdfs:comment """Indicates a VCard (using the http://www.w3.org/TR/vcard-rdf/ vocabulary) for the site. This can include email, telephone, and geo-location details as well as an address. """@en;
-    rdfs:comment """Indique une VCard (utilisant le vocabulaire http://www.w3.org/TR/vcard-rdf/) pour le Site. Peut inclure un email, un téléphone, et des détails de geo-localisation au côtés de l'adresse. """@fr;    
+ #   rdfs:range  vcard:VCard;
+    rdfs:comment """Indicates an addess for the site in a suitable encoding. Use of vCard (using the http://www.w3.org/TR/vcard-rdf/ vocabulary) is encouraged but the range is left open to allow other encodings to be used. The address may include email, telephone, and geo-location information and is not restricted to a physical address. """@en;
+#    rdfs:comment """Indique une VCard (utilisant le vocabulaire http://www.w3.org/TR/vcard-rdf/) pour le Site. Peut inclure un email, un téléphone, et des détails de geo-localisation au côtés de l'adresse. """@fr;    
     rdfs:isDefinedBy <http://www.w3.org/ns/org> ;
     .
 
@@ -473,6 +474,9 @@
 org:resultedFrom          owl:inverseOf org:resultingOrganization .
 org:resultingOrganization owl:inverseOf org:resultedFrom .
 
+# Property chain to license derivation relation
+prov:wasDerivedFrom owl:propertyChainAxiom (org:resultedFrom org:originalOrganization) .
+    
 # -- Posts - added 2012-09-30 -----------------------------------------------------------
 
 org:Post a owl:Class, rdfs:Class;