Add range to odrl:assigner and odrl:assignee
authorMo McRoberts <mo.mcroberts@bbc.co.uk>
Sun, 08 Sep 2013 22:13:02 +0100
changeset 8 45f40c3c8cb6
parent 7 220d89a549ea
child 9 60236d98d771
Add range to odrl:assigner and odrl:assignee
2/model.nt
2/model.rdf
2/model.ttl
--- a/2/model.nt	Sun Sep 08 22:12:50 2013 +0100
+++ b/2/model.nt	Sun Sep 08 22:13:02 2013 +0100
@@ -752,12 +752,14 @@
 <http://w3.org/ns/odrl/2/assignee> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
 <http://w3.org/ns/odrl/2/assignee> <http://www.w3.org/2000/01/rdf-schema#label> "Assignee"@en .
 <http://w3.org/ns/odrl/2/assignee> <http://www.w3.org/2000/01/rdf-schema#comment> "The Party is the recipient of the policy statement."@en .
+<http://w3.org/ns/odrl/2/assignee> <http://www.w3.org/2000/01/rdf-schema#range> <http://w3.org/ns/odrl/2/Party> .
 <http://w3.org/ns/odrl/2/assigner> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
 <http://w3.org/ns/odrl/2/assigner> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
 <http://w3.org/ns/odrl/2/assigner> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://w3.org/ns/odrl/2/function> .
 <http://w3.org/ns/odrl/2/assigner> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
 <http://w3.org/ns/odrl/2/assigner> <http://www.w3.org/2000/01/rdf-schema#label> "Assigner"@en .
 <http://w3.org/ns/odrl/2/assigner> <http://www.w3.org/2000/01/rdf-schema#comment> "The Party is the issuer of the policy statement."@en .
+<http://w3.org/ns/odrl/2/assigner> <http://www.w3.org/2000/01/rdf-schema#range> <http://w3.org/ns/odrl/2/Party> .
 <http://w3.org/ns/odrl/2/attributedParty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
 <http://w3.org/ns/odrl/2/attributedParty> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
 <http://w3.org/ns/odrl/2/attributedParty> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://w3.org/ns/odrl/2/function> .
--- a/2/model.rdf	Sun Sep 08 22:12:50 2013 +0100
+++ b/2/model.rdf	Sun Sep 08 22:13:02 2013 +0100
@@ -288,6 +288,7 @@
     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
     <rdfs:comment xml:lang="en">The Party is the recipient of the policy statement.</rdfs:comment>
     <rdfs:label xml:lang="en">Assignee</rdfs:label>
+    <rdfs:range rdf:resource="http://w3.org/ns/odrl/2/Party"/>
     <rdfs:subPropertyOf rdf:resource="http://w3.org/ns/odrl/2/function"/>
     <vs:term_status>testing</vs:term_status>
   </rdf:Property>
@@ -295,6 +296,7 @@
     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
     <rdfs:comment xml:lang="en">The Party is the issuer of the policy statement.</rdfs:comment>
     <rdfs:label xml:lang="en">Assigner</rdfs:label>
+    <rdfs:range rdf:resource="http://w3.org/ns/odrl/2/Party"/>
     <rdfs:subPropertyOf rdf:resource="http://w3.org/ns/odrl/2/function"/>
     <vs:term_status>testing</vs:term_status>
   </rdf:Property>
--- a/2/model.ttl	Sun Sep 08 22:12:50 2013 +0100
+++ b/2/model.ttl	Sun Sep 08 22:13:02 2013 +0100
@@ -946,14 +946,16 @@
     rdfs:subPropertyOf :function ;
 	vs:term_status "testing" ;
 	rdfs:label "Assignee"@en ;
-	rdfs:comment "The Party is the recipient of the policy statement."@en .
+	rdfs:comment "The Party is the recipient of the policy statement."@en ;
+	rdfs:range :Party .
 
 :assigner
     a rdf:Property , owl:ObjectProperty ;
     rdfs:subPropertyOf :function ;
 	vs:term_status "testing" ;
 	rdfs:label "Assigner"@en ;
-	rdfs:comment "The Party is the issuer of the policy statement."@en .
+	rdfs:comment "The Party is the issuer of the policy statement."@en ;
+	rdfs:range :Party .
 
 :attributedParty
     a rdf:Property , owl:ObjectProperty ;