Fix odrl:Action being erroneously defined as rdf:Class
authorMo McRoberts <mo.mcroberts@bbc.co.uk>
Sun, 08 Sep 2013 22:48:27 +0100
changeset 10 4a793c1b62aa
parent 9 60236d98d771
child 11 521cc0c87930
Fix odrl:Action being erroneously defined as rdf:Class
2/model.nt
2/model.rdf
2/model.ttl
--- a/2/model.nt	Sun Sep 08 22:46:47 2013 +0100
+++ b/2/model.nt	Sun Sep 08 22:48:27 2013 +0100
@@ -197,7 +197,7 @@
 <http://w3.org/ns/odrl/2/Duty> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
 <http://w3.org/ns/odrl/2/Duty> <http://www.w3.org/2000/01/rdf-schema#label> "Duty"@en .
 <http://w3.org/ns/odrl/2/Duty> <http://www.w3.org/2000/01/rdf-schema#comment> "A Duty indicates requirements which must be fulfilled in order to receive the permission."@en .
-<http://w3.org/ns/odrl/2/Action> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Class> .
+<http://w3.org/ns/odrl/2/Action> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Class> .
 <http://w3.org/ns/odrl/2/Action> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
 <http://w3.org/ns/odrl/2/Action> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.w3.org/2004/02/skos/core#Concept> .
 <http://w3.org/ns/odrl/2/Action> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
--- a/2/model.rdf	Sun Sep 08 22:46:47 2013 +0100
+++ b/2/model.rdf	Sun Sep 08 22:48:27 2013 +0100
@@ -21,13 +21,13 @@
     <rdfs:label xml:lang="en">ODRL</rdfs:label>
     <owl:versionInfo xml:lang="en">2.0</owl:versionInfo>
   </owl:Ontology>
-  <rdf:Class rdf:about="http://w3.org/ns/odrl/2/Action">
+  <rdfs:Class rdf:about="http://w3.org/ns/odrl/2/Action">
     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
     <rdfs:comment xml:lang="en">Sub-classes of Action are things one might be permitted to do or prohibited from doing to a work.</rdfs:comment>
     <rdfs:label xml:lang="en">Action</rdfs:label>
     <rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
     <vs:term_status>testing</vs:term_status>
-  </rdf:Class>
+  </rdfs:Class>
   <rdfs:Class rdf:about="http://w3.org/ns/odrl/2/Agreement">
     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
     <rdfs:comment xml:lang="en">Policy expressions that are formal contracts (or licenses) stipulating all the terms of usage and all the parties involved.</rdfs:comment>
--- a/2/model.ttl	Sun Sep 08 22:46:47 2013 +0100
+++ b/2/model.ttl	Sun Sep 08 22:48:27 2013 +0100
@@ -202,7 +202,7 @@
 	rdfs:comment "A Duty indicates requirements which must be fulfilled in order to receive the permission."@en .
 
 :Action
-	a rdf:Class, owl:Class ;
+	a rdfs:Class, owl:Class ;
 	rdfs:subClassOf skos:Concept ;
 	vs:term_status "testing" ;
 	rdfs:comment "Sub-classes of Action are things one might be permitted to do or prohibited from doing to a work."@en ;