Update namespace of examples
authorMo McRoberts <mo.mcroberts@bbc.co.uk>
Mon, 19 May 2014 12:39:24 +0100
changeset 53 2fbc72acd711
parent 52 990fca6995bc
child 54 74bd5f9114fb
Update namespace of examples
2/ODRL20.html
examples/example1.nt
examples/example1.rdf
examples/example1.ttl
examples/example10.nt
examples/example10.rdf
examples/example10.ttl
examples/example11.nt
examples/example11.rdf
examples/example11.ttl
examples/example1a.nt
examples/example1a.rdf
examples/example1a.ttl
examples/example2.nt
examples/example2.rdf
examples/example2.ttl
examples/example3.nt
examples/example3.rdf
examples/example3.ttl
examples/example4.nt
examples/example4.rdf
examples/example4.ttl
examples/example5.nt
examples/example5.rdf
examples/example5.ttl
examples/example6.nt
examples/example6.rdf
examples/example6.ttl
examples/example7.nt
examples/example7.rdf
examples/example7.ttl
examples/example8.nt
examples/example8.rdf
examples/example8.ttl
examples/example9.nt
examples/example9.rdf
examples/example9.ttl
--- a/2/ODRL20.html	Tue May 13 09:02:48 2014 +0100
+++ b/2/ODRL20.html	Mon May 19 12:39:24 2014 +0100
@@ -143,7 +143,7 @@
 <p>
 	The following shows an instance of a <a href="#term-Set">set</a> <a href="#term-Policy">policy</a>. The set shows a policy expression, stating that the <a href="#term-Asset">asset</a>, <code>http://example.com/asset:9898</code>, is the target of the <a href="#term-Permission">permission</a> to <a href="#term-reproduce">reproduce</a> and the <a href="#term-Prohibition">prohibition</a> to <a href="#term-modify">modify</a>.
 </p>
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 
 &lt;http://example.com/policy:0099&gt;
 	a odrl:Set;
@@ -159,7 +159,7 @@
 	] .
 </code></pre><p>Download this example as <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example1.ttl">Turtle</a>, <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example1.rdf">RDF/XML</a>, or <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example1.nt">N-Triples</a>.</p>
 <p>Because all of the <a href="#term-Rule">rules</a> associated with this policy have the same target, and do not have any <a href="#term-constraint">constraints</a> or <a href="#term-duty">duties</a> (requirements), one may abbreviate the expression of the policy and use the Dublin Core <a href="http://purl.org/dc/terms/rights">rights</a> or <a href="http://purl.org/dc/terms/license">license</a> predicates to associate the asset with that policy:</p>
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 @prefix dct: &lt;http://purl.org/dc/terms/&gt; .
 
 &lt;http://example.com/asset:9898&gt; dct:license &lt;http://example.com/policy:0099&gt; .
@@ -173,7 +173,7 @@
 <p>
 	The following shows the instance of an <a href="#term-Offer">offer</a> policy. The offer contains the music file <code>http://example.com/music:4545</code> that is offered by the <a href="#term-Party">party</a> <code>http://example.com/sony:10</code> with the permissions to <a href="#term-play">play</a> and copy the file. The permission to copy is only granted once. The two permissions are offered in exchange for a payment of <code>AUD$0.50</code>.
 </p>
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 
 &lt;http://example.com/policy:0231&gt;
 	a odrl:Offer ;
@@ -210,7 +210,7 @@
 	The following shows the instance of an <a href="#term-Agreement">agreement</a> policy. The agreement contains all entities shown in the offer scenario above. A new party, <code>http://example.com/billie:888</code> has been added. This party accepted the previous offer and thus is now the buyer of the permission play and copy: i.e. they are now linked as <a href="#term-assignee">assignee</a> of the permissions and duty entities.
 </p>
 
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 
 &lt;http://example.com/policy:9001&gt;
 	a odrl:Agreement ;
@@ -249,7 +249,7 @@
 	The following shows the instance of a <a href="#term-Request">request</a> policy. The party <code>http://example.com/guest:0589</code> has requested the permission to <a href="#term-display">display</a> the target asset, <code>http://example.com/news:0099</code>.
 </p>
 
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 
 &lt;http://example.com/policy:04311&gt;
 	a odrl:Request ;
@@ -268,7 +268,7 @@
 	The following shows the instance of a <a href="#term-Ticket">ticket</a> policy. The ticket expresses the play permission for the target asset, <code>http://example.com/game:4589</code>. The ticket is valid <a href="#term-dateTime">until the end of the year</a> <code>2010</code>. Any valid holder of this ticket may exercise this permission.
 </p>
 
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 @prefix xsd: &lt;http://www.w3.org/2001/XMLSchema#&gt; .
 
 &lt;http://example.com/policy:0811&gt;
@@ -294,7 +294,7 @@
 	The party <code>http://example.com/sony:99</code> assigns the permission distribute directly to the potential buyer of the permission who will pay <code>€1,000</code>. The distribute permission is also constrained to the country <code>Italy</code>. The potential assignee may then distribute the target asset according to the next-policy target asset linked directly from this duty. In this case, the next policy asset stipulates that the potential assignee may only offer the display permission to downstream consumers.
 </p>
 
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 
 &lt;http://example.com/policy:5531&gt;
 	a odrl:Offer ;
@@ -339,7 +339,7 @@
 
 <p>Additionally, the assigner (the party who the personal data is about) has stipulated that the assignee must delete the asset after a <code>30 day period</code> (retention policy).</p>
 
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 @prefix p3p: &lt;http://www.w3.org/2002/01/p3prdfv1#&gt; .
 @prefix xsd: &lt;http://www.w3.org/2001/XMLSchema#&gt; .
 
@@ -376,7 +376,7 @@
 	The following shows the instance of an agreement policy with both a permission and a prohibition. The party <code>http://example.com/sony:10</code> assigns the permission play to the party <code>http://example.com/billie:888</code> at the same time they are prohibited from utilising the target asset as a <code>mobile:ringtone</code>. Additionally, in case of any conflict, the conflict attribute is set to <a href="#term-perm"><code>perm</code></a> indicating that the permission entity will take precedence.
 </p>
 
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 @prefix mobile: &lt;http://example.com/mobile#&gt; .
 
 &lt;http://example.com/policy:3433&gt;
@@ -409,7 +409,7 @@
 <p>
 	In this inheritance example, the parent policy allows the party <code>http://example.com/billie:888</code> to print the parent’s target asset. The child policy allows the party <code>http://example.com/class:IT01</code> (a group of people) to display the child’s target asset. Since the child policy also inherits from the parent policy, then the party <code>http://example.com/class:IT01</code> can also print the parent’s target asset.</p>
 
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 
 &lt;http://example.com/policy:5531&gt;
 	a odrl:Agreement ;
@@ -444,7 +444,7 @@
 	The target asset are photos posted to a social network site and the assigner is the owner of the photos. The assignee is a group and represents the football network members on the social network, who are each allowed to display the photos.
 </p>
 
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 
 &lt;http://example.com/policy:5109&gt;
 	a odrl:Agreement ;
@@ -465,7 +465,7 @@
 
 <p>The <a href="#term-index">index</a> permission is granted to the target asset. Additionally, the <code>x:collection</code> asset specifies which database the index outcome should be stored in.</p>
 
-<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
 @prefix x: &lt;http://example.com/x#&gt; .
 
 &lt;http://example.com/policy:881212&gt;
--- a/examples/example1.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example1.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,9 +1,9 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid1 <http://w3.org/ns/odrl/2/target> <http://example.com/asset:9898> .
-_:genid1 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/reproduce> .
-_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Prohibition> .
-_:genid2 <http://w3.org/ns/odrl/2/target> <http://example.com/asset:9898> .
-_:genid2 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/modify> .
-<http://example.com/policy:0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Set> .
-<http://example.com/policy:0099> <http://w3.org/ns/odrl/2/permission> _:genid1 .
-<http://example.com/policy:0099> <http://w3.org/ns/odrl/2/prohibition> _:genid2 .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid1 <http://www.w3.org/ns/odrl/2/target> <http://example.com/asset:9898> .
+_:genid1 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/reproduce> .
+_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Prohibition> .
+_:genid2 <http://www.w3.org/ns/odrl/2/target> <http://example.com/asset:9898> .
+_:genid2 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/modify> .
+<http://example.com/policy:0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Set> .
+<http://example.com/policy:0099> <http://www.w3.org/ns/odrl/2/permission> _:genid1 .
+<http://example.com/policy:0099> <http://www.w3.org/ns/odrl/2/prohibition> _:genid2 .
--- a/examples/example1.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example1.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,17 +1,16 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
   <odrl:Set rdf:about="http://example.com/policy:0099">
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/reproduce"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/reproduce"/>
         <odrl:target rdf:resource="http://example.com/asset:9898"/>
       </odrl:Permission>
     </odrl:permission>
     <odrl:prohibition>
       <odrl:Prohibition>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/modify"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/modify"/>
         <odrl:target rdf:resource="http://example.com/asset:9898"/>
       </odrl:Prohibition>
     </odrl:prohibition>
--- a/examples/example1.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example1.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 
 <http://example.com/policy:0099>
 	a odrl:Set;
--- a/examples/example10.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example10.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,9 +1,9 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid1 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/display> .
-_:genid1 <http://w3.org/ns/odrl/2/target> <http://example.com/myPlace:billie:photos:football2010> .
-_:genid1 <http://w3.org/ns/odrl/2/assigner> <http://example.com/myPlace:billie> .
-_:genid1 <http://w3.org/ns/odrl/2/assignee> <http://example.com/myPlace:network:football> .
-<http://example.com/policy:5109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Agreement> .
-<http://example.com/policy:5109> <http://w3.org/ns/odrl/2/permission> _:genid1 .
-<http://example.com/myPlace:billie> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
-<http://example.com/myPlace:network:football> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Group> .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid1 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/display> .
+_:genid1 <http://www.w3.org/ns/odrl/2/target> <http://example.com/myPlace:billie:photos:football2010> .
+_:genid1 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/myPlace:billie> .
+_:genid1 <http://www.w3.org/ns/odrl/2/assignee> <http://example.com/myPlace:network:football> .
+<http://example.com/policy:5109> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Agreement> .
+<http://example.com/policy:5109> <http://www.w3.org/ns/odrl/2/permission> _:genid1 .
+<http://example.com/myPlace:billie> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
+<http://example.com/myPlace:network:football> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Group> .
--- a/examples/example10.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example10.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,13 +1,12 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
   <odrl:Party rdf:about="http://example.com/myPlace:billie"/>
   <odrl:Group rdf:about="http://example.com/myPlace:network:football"/>
   <odrl:Agreement rdf:about="http://example.com/policy:5109">
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/display"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/display"/>
         <odrl:assignee rdf:resource="http://example.com/myPlace:network:football"/>
         <odrl:assigner rdf:resource="http://example.com/myPlace:billie"/>
         <odrl:target rdf:resource="http://example.com/myPlace:billie:photos:football2010"/>
--- a/examples/example10.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example10.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 
 <http://example.com/policy:5109>
 	a odrl:Agreement ;
--- a/examples/example11.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example11.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,6 +1,6 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid1 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/index> .
-_:genid1 <http://w3.org/ns/odrl/2/target> <http://example.com/archive/2010> .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid1 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/index> .
+_:genid1 <http://www.w3.org/ns/odrl/2/target> <http://example.com/archive/2010> .
 _:genid1 <http://example.com/x#collection> <http://example.com/x/database> .
-<http://example.com/policy:881212> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Set> .
-<http://example.com/policy:881212> <http://w3.org/ns/odrl/2/permission> _:genid1 .
+<http://example.com/policy:881212> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Set> .
+<http://example.com/policy:881212> <http://www.w3.org/ns/odrl/2/permission> _:genid1 .
--- a/examples/example11.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example11.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,13 +1,12 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:x="http://example.com/x#">
   <odrl:Set rdf:about="http://example.com/policy:881212">
     <odrl:permission>
       <odrl:Permission>
         <x:collection rdf:resource="http://example.com/x/database"/>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/index"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/index"/>
         <odrl:target rdf:resource="http://example.com/archive/2010"/>
       </odrl:Permission>
     </odrl:permission>
--- a/examples/example11.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example11.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 @prefix x: <http://example.com/x#> .
 
 <http://example.com/policy:881212>
--- a/examples/example1a.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example1a.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
 <http://example.com/asset:9898> <http://purl.org/dc/terms/license> <http://example.com/policy:0099> .
-<http://example.com/policy:0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Set> .
-<http://example.com/policy:0099> <http://w3.org/ns/odrl/2/permission> <http://w3.org/ns/odrl/2/reproduce> .
-<http://example.com/policy:0099> <http://w3.org/ns/odrl/2/prohibition> <http://w3.org/ns/odrl/2/modify> .
+<http://example.com/policy:0099> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Set> .
+<http://example.com/policy:0099> <http://www.w3.org/ns/odrl/2/permission> <http://www.w3.org/ns/odrl/2/reproduce> .
+<http://example.com/policy:0099> <http://www.w3.org/ns/odrl/2/prohibition> <http://www.w3.org/ns/odrl/2/modify> .
--- a/examples/example1a.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example1a.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,13 +1,12 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:dct="http://purl.org/dc/terms/"
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:dct="http://purl.org/dc/terms/"
+   xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
   <rdf:Description rdf:about="http://example.com/asset:9898">
     <dct:license rdf:resource="http://example.com/policy:0099"/>
   </rdf:Description>
   <odrl:Set rdf:about="http://example.com/policy:0099">
-    <odrl:permission rdf:resource="http://w3.org/ns/odrl/2/reproduce"/>
-    <odrl:prohibition rdf:resource="http://w3.org/ns/odrl/2/modify"/>
+    <odrl:permission rdf:resource="http://www.w3.org/ns/odrl/2/reproduce"/>
+    <odrl:prohibition rdf:resource="http://www.w3.org/ns/odrl/2/modify"/>
   </odrl:Set>
 </rdf:RDF>
--- a/examples/example1a.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example1a.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 @prefix dct: <http://purl.org/dc/terms/> .
 
 <http://example.com/asset:9898> dct:license <http://example.com/policy:0099> .
--- a/examples/example2.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example2.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,21 +1,21 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid1 <http://w3.org/ns/odrl/2/target> <http://example.com/music:4545> .
-_:genid1 <http://w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
-_:genid1 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/play> .
-_:genid1 <http://w3.org/ns/odrl/2/duty> _:requirements .
-_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Constraint> .
-_:genid2 <http://w3.org/ns/odrl/2/count> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
-_:genid2 <http://w3.org/ns/odrl/2/operator> <http://w3.org/ns/odrl/2/lteq> .
-_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid3 <http://w3.org/ns/odrl/2/target> <http://example.com/music:4545> .
-_:genid3 <http://w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
-_:genid3 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/copy> .
-_:genid3 <http://w3.org/ns/odrl/2/duty> _:requirements .
-_:genid3 <http://w3.org/ns/odrl/2/constraint> _:genid2 .
-<http://example.com/policy:0231> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Offer> .
-<http://example.com/policy:0231> <http://w3.org/ns/odrl/2/permission> _:genid1 .
-<http://example.com/policy:0231> <http://w3.org/ns/odrl/2/permission> _:genid3 .
-_:requirements <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Duty> .
-_:requirements <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/pay> .
-_:requirements <http://w3.org/ns/odrl/2/target> <http://example.com/ubl:AUD0.50> .
-<http://example.com/sony:10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid1 <http://www.w3.org/ns/odrl/2/target> <http://example.com/music:4545> .
+_:genid1 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
+_:genid1 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/play> .
+_:genid1 <http://www.w3.org/ns/odrl/2/duty> _:requirements .
+_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Constraint> .
+_:genid2 <http://www.w3.org/ns/odrl/2/count> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
+_:genid2 <http://www.w3.org/ns/odrl/2/operator> <http://www.w3.org/ns/odrl/2/lteq> .
+_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid3 <http://www.w3.org/ns/odrl/2/target> <http://example.com/music:4545> .
+_:genid3 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
+_:genid3 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/copy> .
+_:genid3 <http://www.w3.org/ns/odrl/2/duty> _:requirements .
+_:genid3 <http://www.w3.org/ns/odrl/2/constraint> _:genid2 .
+<http://example.com/policy:0231> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Offer> .
+<http://example.com/policy:0231> <http://www.w3.org/ns/odrl/2/permission> _:genid1 .
+<http://example.com/policy:0231> <http://www.w3.org/ns/odrl/2/permission> _:genid3 .
+_:requirements <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Duty> .
+_:requirements <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/pay> .
+_:requirements <http://www.w3.org/ns/odrl/2/target> <http://example.com/ubl:AUD0.50> .
+<http://example.com/sony:10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
--- a/examples/example2.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example2.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,11 +1,10 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
   <odrl:Offer rdf:about="http://example.com/policy:0231">
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/play"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/play"/>
         <odrl:assigner rdf:resource="http://example.com/sony:10"/>
         <odrl:duty rdf:nodeID="requirements"/>
         <odrl:target rdf:resource="http://example.com/music:4545"/>
@@ -13,12 +12,12 @@
     </odrl:permission>
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/copy"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/copy"/>
         <odrl:assigner rdf:resource="http://example.com/sony:10"/>
         <odrl:constraint>
           <odrl:Constraint>
             <odrl:count rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</odrl:count>
-            <odrl:operator rdf:resource="http://w3.org/ns/odrl/2/lteq"/>
+            <odrl:operator rdf:resource="http://www.w3.org/ns/odrl/2/lteq"/>
           </odrl:Constraint>
         </odrl:constraint>
         <odrl:duty rdf:nodeID="requirements"/>
@@ -28,7 +27,7 @@
   </odrl:Offer>
   <odrl:Party rdf:about="http://example.com/sony:10"/>
   <odrl:Duty rdf:nodeID="requirements">
-    <odrl:action rdf:resource="http://w3.org/ns/odrl/2/pay"/>
+    <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/pay"/>
     <odrl:target rdf:resource="http://example.com/ubl:AUD0.50"/>
   </odrl:Duty>
 </rdf:RDF>
--- a/examples/example2.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example2.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 
 <http://example.com/policy:0231>
 	a odrl:Offer ;
--- a/examples/example3.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example3.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,23 +1,23 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid1 <http://w3.org/ns/odrl/2/target> <http://example.com/music:4545> .
-_:genid1 <http://w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
-_:genid1 <http://w3.org/ns/odrl/2/assignee> <http://example.com/billie:888> .
-_:genid1 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/play> .
-_:genid1 <http://w3.org/ns/odrl/2/duty> _:requirements .
-_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Constraint> .
-_:genid2 <http://w3.org/ns/odrl/2/count> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
-_:genid2 <http://w3.org/ns/odrl/2/operator> <http://w3.org/ns/odrl/2/lteq> .
-_:genid3 <http://w3.org/ns/odrl/2/target> <http://example.com/music:4545> .
-_:genid3 <http://w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
-_:genid3 <http://w3.org/ns/odrl/2/assignee> <http://example.com/billie:888> .
-_:genid3 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/copy> .
-_:genid3 <http://w3.org/ns/odrl/2/duty> _:requirements .
-_:genid3 <http://w3.org/ns/odrl/2/constraint> _:genid2 .
-<http://example.com/policy:9001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Agreement> .
-<http://example.com/policy:9001> <http://w3.org/ns/odrl/2/permission> _:genid1 .
-<http://example.com/policy:9001> <http://w3.org/ns/odrl/2/permission> _:genid3 .
-_:requirements <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Duty> .
-_:requirements <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/pay> .
-_:requirements <http://w3.org/ns/odrl/2/target> <http://example.com/ubl:AUD0.50> .
-<http://example.com/sony:10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
-<http://example.com/billie:888> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid1 <http://www.w3.org/ns/odrl/2/target> <http://example.com/music:4545> .
+_:genid1 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
+_:genid1 <http://www.w3.org/ns/odrl/2/assignee> <http://example.com/billie:888> .
+_:genid1 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/play> .
+_:genid1 <http://www.w3.org/ns/odrl/2/duty> _:requirements .
+_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Constraint> .
+_:genid2 <http://www.w3.org/ns/odrl/2/count> "1"^^<http://www.w3.org/2001/XMLSchema#integer> .
+_:genid2 <http://www.w3.org/ns/odrl/2/operator> <http://www.w3.org/ns/odrl/2/lteq> .
+_:genid3 <http://www.w3.org/ns/odrl/2/target> <http://example.com/music:4545> .
+_:genid3 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
+_:genid3 <http://www.w3.org/ns/odrl/2/assignee> <http://example.com/billie:888> .
+_:genid3 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/copy> .
+_:genid3 <http://www.w3.org/ns/odrl/2/duty> _:requirements .
+_:genid3 <http://www.w3.org/ns/odrl/2/constraint> _:genid2 .
+<http://example.com/policy:9001> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Agreement> .
+<http://example.com/policy:9001> <http://www.w3.org/ns/odrl/2/permission> _:genid1 .
+<http://example.com/policy:9001> <http://www.w3.org/ns/odrl/2/permission> _:genid3 .
+_:requirements <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Duty> .
+_:requirements <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/pay> .
+_:requirements <http://www.w3.org/ns/odrl/2/target> <http://example.com/ubl:AUD0.50> .
+<http://example.com/sony:10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
+<http://example.com/billie:888> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
--- a/examples/example3.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example3.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,12 +1,11 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
   <odrl:Party rdf:about="http://example.com/billie:888"/>
   <odrl:Agreement rdf:about="http://example.com/policy:9001">
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/play"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/play"/>
         <odrl:assignee rdf:resource="http://example.com/billie:888"/>
         <odrl:assigner rdf:resource="http://example.com/sony:10"/>
         <odrl:duty rdf:nodeID="requirements"/>
@@ -15,13 +14,13 @@
     </odrl:permission>
     <odrl:permission>
       <rdf:Description>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/copy"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/copy"/>
         <odrl:assignee rdf:resource="http://example.com/billie:888"/>
         <odrl:assigner rdf:resource="http://example.com/sony:10"/>
         <odrl:constraint>
           <odrl:Constraint>
             <odrl:count rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</odrl:count>
-            <odrl:operator rdf:resource="http://w3.org/ns/odrl/2/lteq"/>
+            <odrl:operator rdf:resource="http://www.w3.org/ns/odrl/2/lteq"/>
           </odrl:Constraint>
         </odrl:constraint>
         <odrl:duty rdf:nodeID="requirements"/>
@@ -31,7 +30,7 @@
   </odrl:Agreement>
   <odrl:Party rdf:about="http://example.com/sony:10"/>
   <odrl:Duty rdf:nodeID="requirements">
-    <odrl:action rdf:resource="http://w3.org/ns/odrl/2/pay"/>
+    <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/pay"/>
     <odrl:target rdf:resource="http://example.com/ubl:AUD0.50"/>
   </odrl:Duty>
 </rdf:RDF>
--- a/examples/example3.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example3.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 
 <http://example.com/policy:9001>
 	a odrl:Agreement ;
--- a/examples/example4.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example4.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,7 +1,7 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid1 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/display> .
-_:genid1 <http://w3.org/ns/odrl/2/assignee> <http://example.com/guest:0589> .
-_:genid1 <http://w3.org/ns/odrl/2/target> <http://example.com/news:0099> .
-<http://example.com/policy:04311> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Request> .
-<http://example.com/policy:04311> <http://w3.org/ns/odrl/2/permission> _:genid1 .
-<http://example.com/guest:0589> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid1 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/display> .
+_:genid1 <http://www.w3.org/ns/odrl/2/assignee> <http://example.com/guest:0589> .
+_:genid1 <http://www.w3.org/ns/odrl/2/target> <http://example.com/news:0099> .
+<http://example.com/policy:04311> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Request> .
+<http://example.com/policy:04311> <http://www.w3.org/ns/odrl/2/permission> _:genid1 .
+<http://example.com/guest:0589> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
--- a/examples/example4.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example4.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,12 +1,11 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
   <odrl:Party rdf:about="http://example.com/guest:0589"/>
   <odrl:Request rdf:about="http://example.com/policy:04311">
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/display"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/display"/>
         <odrl:assignee rdf:resource="http://example.com/guest:0589"/>
         <odrl:target rdf:resource="http://example.com/news:0099"/>
       </odrl:Permission>
--- a/examples/example4.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example4.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 
 <http://example.com/policy:04311>
 	a odrl:Request ;
--- a/examples/example5.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example5.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,9 +1,9 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Constraint> .
-_:genid1 <http://w3.org/ns/odrl/2/operator> <http://w3.org/ns/odrl/2/lteq> .
-_:genid1 <http://w3.org/ns/odrl/2/dateTime> "2010-12-31"^^<http://www.w3.org/2001/XMLSchema#date> .
-_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid2 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/play> .
-_:genid2 <http://w3.org/ns/odrl/2/target> <http://example.com/game:4589> .
-_:genid2 <http://w3.org/ns/odrl/2/constraint> _:genid1 .
-<http://example.com/policy:0811> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Ticket> .
-<http://example.com/policy:0811> <http://w3.org/ns/odrl/2/permission> _:genid2 .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Constraint> .
+_:genid1 <http://www.w3.org/ns/odrl/2/operator> <http://www.w3.org/ns/odrl/2/lteq> .
+_:genid1 <http://www.w3.org/ns/odrl/2/dateTime> "2010-12-31"^^<http://www.w3.org/2001/XMLSchema#date> .
+_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid2 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/play> .
+_:genid2 <http://www.w3.org/ns/odrl/2/target> <http://example.com/game:4589> .
+_:genid2 <http://www.w3.org/ns/odrl/2/constraint> _:genid1 .
+<http://example.com/policy:0811> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Ticket> .
+<http://example.com/policy:0811> <http://www.w3.org/ns/odrl/2/permission> _:genid2 .
--- a/examples/example5.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example5.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,16 +1,15 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
   <odrl:Ticket rdf:about="http://example.com/policy:0811">
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/play"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/play"/>
         <odrl:constraint>
           <odrl:Constraint>
             <odrl:dateTime rdf:datatype="http://www.w3.org/2001/XMLSchema#date">2010-12-31</odrl:dateTime>
-            <odrl:operator rdf:resource="http://w3.org/ns/odrl/2/lteq"/>
+            <odrl:operator rdf:resource="http://www.w3.org/ns/odrl/2/lteq"/>
           </odrl:Constraint>
         </odrl:constraint>
         <odrl:target rdf:resource="http://example.com/game:4589"/>
--- a/examples/example5.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example5.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 
 <http://example.com/policy:0811>
--- a/examples/example6.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example6.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,24 +1,24 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Constraint> .
-_:genid1 <http://w3.org/ns/odrl/2/operator> <http://w3.org/ns/odrl/2/eq> .
-_:genid1 <http://w3.org/ns/odrl/2/spatial> <http://ontologi.es/place/IT> .
-_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid2 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/distribute> .
-_:genid2 <http://w3.org/ns/odrl/2/target> <http://example.com/wallpaper:2321> .
-_:genid2 <http://w3.org/ns/odrl/2/assigner> <http://example.com/sony:99> .
-_:genid2 <http://w3.org/ns/odrl/2/constraint> _:genid1 .
-_:genid2 <http://w3.org/ns/odrl/2/duty> <http://example.com/duty:01> .
-_:genid2 <http://w3.org/ns/odrl/2/duty> <http://example.com/duty:02> .
-<http://example.com/policy:5531> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Offer> .
-<http://example.com/policy:5531> <http://w3.org/ns/odrl/2/permission> _:genid2 .
-<http://example.com/duty:01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Duty> .
-<http://example.com/duty:01> <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/pay> .
-<http://example.com/duty:01> <http://w3.org/ns/odrl/2/target> <http://example.com/ubl:EU1000.00> .
-<http://example.com/duty:02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Duty> .
-<http://example.com/duty:02> <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/nextPolicy> .
-<http://example.com/duty:02> <http://w3.org/ns/odrl/2/target> <http://example.com/policy:7777> .
-_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid3 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/display> .
-_:genid3 <http://w3.org/ns/odrl/2/target> <http://example.com/wallpaper:2321> .
-<http://example.com/policy:7777> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Set> .
-<http://example.com/policy:7777> <http://w3.org/ns/odrl/2/permission> _:genid3 .
-<http://example.com/sony:99> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Constraint> .
+_:genid1 <http://www.w3.org/ns/odrl/2/operator> <http://www.w3.org/ns/odrl/2/eq> .
+_:genid1 <http://www.w3.org/ns/odrl/2/spatial> <http://ontologi.es/place/IT> .
+_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid2 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/distribute> .
+_:genid2 <http://www.w3.org/ns/odrl/2/target> <http://example.com/wallpaper:2321> .
+_:genid2 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/sony:99> .
+_:genid2 <http://www.w3.org/ns/odrl/2/constraint> _:genid1 .
+_:genid2 <http://www.w3.org/ns/odrl/2/duty> <http://example.com/duty:01> .
+_:genid2 <http://www.w3.org/ns/odrl/2/duty> <http://example.com/duty:02> .
+<http://example.com/policy:5531> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Offer> .
+<http://example.com/policy:5531> <http://www.w3.org/ns/odrl/2/permission> _:genid2 .
+<http://example.com/duty:01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Duty> .
+<http://example.com/duty:01> <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/pay> .
+<http://example.com/duty:01> <http://www.w3.org/ns/odrl/2/target> <http://example.com/ubl:EU1000.00> .
+<http://example.com/duty:02> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Duty> .
+<http://example.com/duty:02> <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/nextPolicy> .
+<http://example.com/duty:02> <http://www.w3.org/ns/odrl/2/target> <http://example.com/policy:7777> .
+_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid3 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/display> .
+_:genid3 <http://www.w3.org/ns/odrl/2/target> <http://example.com/wallpaper:2321> .
+<http://example.com/policy:7777> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Set> .
+<http://example.com/policy:7777> <http://www.w3.org/ns/odrl/2/permission> _:genid3 .
+<http://example.com/sony:99> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
--- a/examples/example6.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example6.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,23 +1,22 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
   <odrl:Duty rdf:about="http://example.com/duty:01">
-    <odrl:action rdf:resource="http://w3.org/ns/odrl/2/pay"/>
+    <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/pay"/>
     <odrl:target rdf:resource="http://example.com/ubl:EU1000.00"/>
   </odrl:Duty>
   <odrl:Duty rdf:about="http://example.com/duty:02">
-    <odrl:action rdf:resource="http://w3.org/ns/odrl/2/nextPolicy"/>
+    <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/nextPolicy"/>
     <odrl:target rdf:resource="http://example.com/policy:7777"/>
   </odrl:Duty>
   <odrl:Offer rdf:about="http://example.com/policy:5531">
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/distribute"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/distribute"/>
         <odrl:assigner rdf:resource="http://example.com/sony:99"/>
         <odrl:constraint>
           <odrl:Constraint>
-            <odrl:operator rdf:resource="http://w3.org/ns/odrl/2/eq"/>
+            <odrl:operator rdf:resource="http://www.w3.org/ns/odrl/2/eq"/>
             <odrl:spatial rdf:resource="http://ontologi.es/place/IT"/>
           </odrl:Constraint>
         </odrl:constraint>
@@ -30,7 +29,7 @@
   <odrl:Set rdf:about="http://example.com/policy:7777">
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/display"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/display"/>
         <odrl:target rdf:resource="http://example.com/wallpaper:2321"/>
       </odrl:Permission>
     </odrl:permission>
--- a/examples/example6.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example6.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 
 <http://example.com/policy:5531>
 	a odrl:Offer ;
--- a/examples/example7.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example7.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,20 +1,20 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Constraint> .
-_:genid1 <http://w3.org/ns/odrl/2/operator> <http://w3.org/ns/odrl/2/eq> .
-_:genid1 <http://w3.org/ns/odrl/2/dateTime> "P30D"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
-_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Duty> .
-_:genid2 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/delete> .
-_:genid2 <http://w3.org/ns/odrl/2/constraint> _:genid1 .
-_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Constraint> .
-_:genid3 <http://w3.org/ns/odrl/2/operator> <http://w3.org/ns/odrl/2/eq> .
-_:genid3 <http://w3.org/ns/odrl/2/purpose> <http://www.w3.org/2002/01/p3prdfv1#contact> .
-_:genid4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid4 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/distribute> .
-_:genid4 <http://w3.org/ns/odrl/2/target> <http://example.com/billie:888:personal-data> .
-_:genid4 <http://w3.org/ns/odrl/2/assigner> <http://example.com/billie:888> .
-_:genid4 <http://w3.org/ns/odrl/2/assignee> <http://example.com/gov:health:au> .
-_:genid4 <http://w3.org/ns/odrl/2/duty> _:genid2 .
-_:genid4 <http://w3.org/ns/odrl/2/constraint> _:genid3 .
-<http://example.com/policy:1111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Privacy> .
-<http://example.com/policy:1111> <http://w3.org/ns/odrl/2/permission> _:genid4 .
-<http://example.com/billie:888> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
-<http://example.com/gov:health:au> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Constraint> .
+_:genid1 <http://www.w3.org/ns/odrl/2/operator> <http://www.w3.org/ns/odrl/2/eq> .
+_:genid1 <http://www.w3.org/ns/odrl/2/dateTime> "P30D"^^<http://www.w3.org/2001/XMLSchema#dateTime> .
+_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Duty> .
+_:genid2 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/delete> .
+_:genid2 <http://www.w3.org/ns/odrl/2/constraint> _:genid1 .
+_:genid3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Constraint> .
+_:genid3 <http://www.w3.org/ns/odrl/2/operator> <http://www.w3.org/ns/odrl/2/eq> .
+_:genid3 <http://www.w3.org/ns/odrl/2/purpose> <http://www.w3.org/2002/01/p3prdfv1#contact> .
+_:genid4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid4 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/distribute> .
+_:genid4 <http://www.w3.org/ns/odrl/2/target> <http://example.com/billie:888:personal-data> .
+_:genid4 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/billie:888> .
+_:genid4 <http://www.w3.org/ns/odrl/2/assignee> <http://example.com/gov:health:au> .
+_:genid4 <http://www.w3.org/ns/odrl/2/duty> _:genid2 .
+_:genid4 <http://www.w3.org/ns/odrl/2/constraint> _:genid3 .
+<http://example.com/policy:1111> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Privacy> .
+<http://example.com/policy:1111> <http://www.w3.org/ns/odrl/2/permission> _:genid4 .
+<http://example.com/billie:888> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
+<http://example.com/gov:health:au> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
--- a/examples/example7.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example7.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:p3p="http://www.w3.org/2002/01/p3prdfv1#"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
@@ -9,22 +8,22 @@
   <odrl:Privacy rdf:about="http://example.com/policy:1111">
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/distribute"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/distribute"/>
         <odrl:assignee rdf:resource="http://example.com/gov:health:au"/>
         <odrl:assigner rdf:resource="http://example.com/billie:888"/>
         <odrl:constraint>
           <odrl:Constraint>
-            <odrl:operator rdf:resource="http://w3.org/ns/odrl/2/eq"/>
+            <odrl:operator rdf:resource="http://www.w3.org/ns/odrl/2/eq"/>
             <odrl:purpose rdf:resource="http://www.w3.org/2002/01/p3prdfv1#contact"/>
           </odrl:Constraint>
         </odrl:constraint>
         <odrl:duty>
           <odrl:Duty>
-            <odrl:action rdf:resource="http://w3.org/ns/odrl/2/delete"/>
+            <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/delete"/>
             <odrl:constraint>
               <odrl:Constraint>
                 <odrl:dateTime rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">P30D</odrl:dateTime>
-                <odrl:operator rdf:resource="http://w3.org/ns/odrl/2/eq"/>
+                <odrl:operator rdf:resource="http://www.w3.org/ns/odrl/2/eq"/>
               </odrl:Constraint>
             </odrl:constraint>
           </odrl:Duty>
--- a/examples/example7.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example7.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 @prefix p3p: <http://www.w3.org/2002/01/p3prdfv1#> .
 @prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
 
--- a/examples/example8.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example8.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,16 +1,16 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid1 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/play> .
-_:genid1 <http://w3.org/ns/odrl/2/assignee> <http://example.com/billie:888> .
-_:genid1 <http://w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
-_:genid1 <http://w3.org/ns/odrl/2/target> <http://example.com/music:1234908> .
-_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Prohibition> .
-_:genid2 <http://w3.org/ns/odrl/2/action> <http://example.com/mobile#ringtone> .
-_:genid2 <http://w3.org/ns/odrl/2/assignee> <file:///http://example.combillie:888> .
-_:genid2 <http://w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
-_:genid2 <http://w3.org/ns/odrl/2/target> <http://example.com/music:1234908> .
-<http://example.com/policy:3433> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Agreement> .
-<http://example.com/policy:3433> <http://w3.org/ns/odrl/2/conflict> <http://w3.org/ns/odrl/2/perm> .
-<http://example.com/policy:3433> <http://w3.org/ns/odrl/2/permission> _:genid1 .
-<http://example.com/policy:3433> <http://w3.org/ns/odrl/2/prohibition> _:genid2 .
-<http://example.com/billie:888> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
-<http://example.com/sony:10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid1 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/play> .
+_:genid1 <http://www.w3.org/ns/odrl/2/assignee> <http://example.com/billie:888> .
+_:genid1 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
+_:genid1 <http://www.w3.org/ns/odrl/2/target> <http://example.com/music:1234908> .
+_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Prohibition> .
+_:genid2 <http://www.w3.org/ns/odrl/2/action> <http://example.com/mobile#ringtone> .
+_:genid2 <http://www.w3.org/ns/odrl/2/assignee> <file:///http://example.combillie:888> .
+_:genid2 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/sony:10> .
+_:genid2 <http://www.w3.org/ns/odrl/2/target> <http://example.com/music:1234908> .
+<http://example.com/policy:3433> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Agreement> .
+<http://example.com/policy:3433> <http://www.w3.org/ns/odrl/2/conflict> <http://www.w3.org/ns/odrl/2/perm> .
+<http://example.com/policy:3433> <http://www.w3.org/ns/odrl/2/permission> _:genid1 .
+<http://example.com/policy:3433> <http://www.w3.org/ns/odrl/2/prohibition> _:genid2 .
+<http://example.com/billie:888> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
+<http://example.com/sony:10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
--- a/examples/example8.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example8.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,14 +1,13 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:mobile="http://example.com/mobile#"
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:mobile="http://example.com/mobile#"
+   xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
   <odrl:Party rdf:about="http://example.com/billie:888"/>
   <odrl:Agreement rdf:about="http://example.com/policy:3433">
-    <odrl:conflict rdf:resource="http://w3.org/ns/odrl/2/perm"/>
+    <odrl:conflict rdf:resource="http://www.w3.org/ns/odrl/2/perm"/>
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/play"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/play"/>
         <odrl:assignee rdf:resource="http://example.com/billie:888"/>
         <odrl:assigner rdf:resource="http://example.com/sony:10"/>
         <odrl:target rdf:resource="http://example.com/music:1234908"/>
--- a/examples/example8.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example8.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 @prefix mobile: <http://example.com/mobile#> .
 
 <http://example.com/policy:3433>
--- a/examples/example9.nt	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example9.nt	Mon May 19 12:39:24 2014 +0100
@@ -1,18 +1,18 @@
-_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid1 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/print> .
-_:genid1 <http://w3.org/ns/odrl/2/target> <http://example.com/report:2321> .
-_:genid1 <http://w3.org/ns/odrl/2/assigner> <http://example.com/pub:88> .
-_:genid1 <http://w3.org/ns/odrl/2/assignee> <http://example.com/billie:888> .
-<http://example.com/policy:5531> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Agreement> .
-<http://example.com/policy:5531> <http://w3.org/ns/odrl/2/permission> _:genid1 .
-_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Permission> .
-_:genid2 <http://w3.org/ns/odrl/2/action> <http://w3.org/ns/odrl/2/display> .
-_:genid2 <http://w3.org/ns/odrl/2/target> <http://example.com/report:2333> .
-_:genid2 <http://w3.org/ns/odrl/2/assigner> <http://example.com/pub:88> .
-_:genid2 <http://w3.org/ns/odrl/2/assignee> <http://example.com/class:IT01> .
-<http://example.com/policy:9999> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Agreement> .
-<http://example.com/policy:9999> <http://w3.org/ns/odrl/2/inheritFrom> <http://example.com/policy:5531> .
-<http://example.com/policy:9999> <http://w3.org/ns/odrl/2/permission> _:genid2 .
-<http://example.com/pub:88> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
-<http://example.com/billie:888> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Party> .
-<http://example.com/class:IT01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://w3.org/ns/odrl/2/Group> .
+_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid1 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/print> .
+_:genid1 <http://www.w3.org/ns/odrl/2/target> <http://example.com/report:2321> .
+_:genid1 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/pub:88> .
+_:genid1 <http://www.w3.org/ns/odrl/2/assignee> <http://example.com/billie:888> .
+<http://example.com/policy:5531> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Agreement> .
+<http://example.com/policy:5531> <http://www.w3.org/ns/odrl/2/permission> _:genid1 .
+_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Permission> .
+_:genid2 <http://www.w3.org/ns/odrl/2/action> <http://www.w3.org/ns/odrl/2/display> .
+_:genid2 <http://www.w3.org/ns/odrl/2/target> <http://example.com/report:2333> .
+_:genid2 <http://www.w3.org/ns/odrl/2/assigner> <http://example.com/pub:88> .
+_:genid2 <http://www.w3.org/ns/odrl/2/assignee> <http://example.com/class:IT01> .
+<http://example.com/policy:9999> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Agreement> .
+<http://example.com/policy:9999> <http://www.w3.org/ns/odrl/2/inheritFrom> <http://example.com/policy:5531> .
+<http://example.com/policy:9999> <http://www.w3.org/ns/odrl/2/permission> _:genid2 .
+<http://example.com/pub:88> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
+<http://example.com/billie:888> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
+<http://example.com/class:IT01> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Group> .
--- a/examples/example9.rdf	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example9.rdf	Mon May 19 12:39:24 2014 +0100
@@ -1,13 +1,12 @@
 <?xml version="1.0" encoding="utf-8"?>
-<rdf:RDF
-   xmlns:odrl="http://w3.org/ns/odrl/2/"
+<rdf:RDF xmlns:odrl="http://www.w3.org/ns/odrl/2/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
   <odrl:Party rdf:about="http://example.com/billie:888"/>
   <odrl:Group rdf:about="http://example.com/class:IT01"/>
   <odrl:Agreement rdf:about="http://example.com/policy:5531">
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/print"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/print"/>
         <odrl:assignee rdf:resource="http://example.com/billie:888"/>
         <odrl:assigner rdf:resource="http://example.com/pub:88"/>
         <odrl:target rdf:resource="http://example.com/report:2321"/>
@@ -18,7 +17,7 @@
     <odrl:inheritFrom rdf:resource="http://example.com/policy:5531"/>
     <odrl:permission>
       <odrl:Permission>
-        <odrl:action rdf:resource="http://w3.org/ns/odrl/2/display"/>
+        <odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/display"/>
         <odrl:assignee rdf:resource="http://example.com/class:IT01"/>
         <odrl:assigner rdf:resource="http://example.com/pub:88"/>
         <odrl:target rdf:resource="http://example.com/report:2333"/>
--- a/examples/example9.ttl	Tue May 13 09:02:48 2014 +0100
+++ b/examples/example9.ttl	Mon May 19 12:39:24 2014 +0100
@@ -1,4 +1,4 @@
-@prefix odrl: <http://w3.org/ns/odrl/2/> .
+@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
 
 <http://example.com/policy:5531>
 	a odrl:Agreement ;