Re-generate RDF and HTML
authorMo McRoberts <mo.mcroberts@bbc.co.uk>
Mon, 12 May 2014 10:45:51 +0100
changeset 50 e4134825ebec
parent 49 6180eb5b79b4
child 51 c435cf427267
Re-generate RDF and HTML
2/ODRL20.html
2/ODRL20.nt
2/ODRL20.rdf
2/ODRL20.ttl
--- a/2/ODRL20.html	Mon May 12 10:45:08 2014 +0100
+++ b/2/ODRL20.html	Mon May 12 10:45:51 2014 +0100
@@ -16,7 +16,7 @@
 <dl>
 <dt>Latest Version</dt><dd><a href="http://www.w3.org/ns/odrl/2/">http://www.w3.org/ns/odrl/2/</a></dd>
 <dt>Revision</dt><dd>2.0</dd>
-<dt>Authors</dt><dd>Mo McRoberts (BBC), Víctor Rodríguez Doncel</dd>
+<dt>Authors</dt><dd>Mo McRoberts (BBC), Víctor Rodríguez Doncel (OEG-UPM)</dd>
 <dt>Contributors</dt><dd>ODRL Community Group</dd>
 </dl>
 
@@ -142,30 +142,28 @@
 <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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 
-&lt;/policy:0099&gt;
+&lt;http://example.com/policy:0099&gt;
 	a odrl:Set;
 	odrl:permission [
 		a odrl:Permission ;
-		odrl:target &lt;/asset:9898&gt; ;
+		odrl:target &lt;http://example.com/asset:9898&gt; ;
 		odrl:action odrl:reproduce
 	] ;
 	odrl:prohibition [
 		a odrl:Prohibition ;
-		odrl:target &lt;/asset:9898&gt; ;
+		odrl:target &lt;http://example.com/asset:9898&gt; ;
 		odrl:action odrl:modify
 	] .
 </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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 @prefix dct: &lt;http://purl.org/dc/terms/&gt; .
 
-&lt;/asset:9898&gt; dct:license &lt;/policy:0099&gt; .
+&lt;http://example.com/asset:9898&gt; dct:license &lt;http://example.com/policy:0099&gt; .
 
-&lt;/policy:0099&gt;
+&lt;http://example.com/policy:0099&gt;
 	a odrl:Set;
 	odrl:permission odrl:reproduce ;
 	odrl:prohibition odrl:modify .
@@ -174,22 +172,21 @@
 <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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 
-&lt;/policy:0231&gt;
+&lt;http://example.com/policy:0231&gt;
 	a odrl:Offer ;
 	odrl:permission [
 		a odrl:Permission ;
-		odrl:target &lt;/music:4545&gt; ;
-		odrl:assigner &lt;/sony:10&gt; ;
+		odrl:target &lt;http://example.com/music:4545&gt; ;
+		odrl:assigner &lt;http://example.com/sony:10&gt; ;
 		odrl:action odrl:play ;
 		odrl:duty _:requirements
 	] ;
 	odrl:permission [
 		a odrl:Permission ;
-		odrl:target &lt;/music:4545&gt; ;
-		odrl:assigner &lt;/sony:10&gt; ;
+		odrl:target &lt;http://example.com/music:4545&gt; ;
+		odrl:assigner &lt;http://example.com/sony:10&gt; ;
 		odrl:action odrl:copy ;
 		odrl:duty _:requirements ;
 		odrl:constraint [
@@ -202,9 +199,9 @@
 _:requirements
 	a odrl:Duty ;
 	odrl:action odrl:pay ;
-	odrl:target &lt;/ubl:AUD0.50&gt; .
+	odrl:target &lt;http://example.com/ubl:AUD0.50&gt; .
 
-&lt;/sony:10&gt; a odrl:Party .
+&lt;http://example.com/sony:10&gt; a odrl:Party .
 </code></pre><p>Download this example as <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example2.ttl">Turtle</a>, <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example2.rdf">RDF/XML</a>, or <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example2.nt">N-Triples</a>.</p>
 <h3 id="sec-example-3">Agreement</h3>
 
@@ -212,23 +209,22 @@
 	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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 
-&lt;/policy:9001&gt;
+&lt;http://example.com/policy:9001&gt;
 	a odrl:Agreement ;
 	odrl:permission [
 		a odrl:Permission ;
-		odrl:target &lt;/music:4545&gt; ;
-		odrl:assigner &lt;/sony:10&gt; ;
-		odrl:assignee &lt;/billie:888&gt; ;
+		odrl:target &lt;http://example.com/music:4545&gt; ;
+		odrl:assigner &lt;http://example.com/sony:10&gt; ;
+		odrl:assignee &lt;http://example.com/billie:888&gt; ;
 		odrl:action odrl:play ;
 		odrl:duty _:requirements
 	] ;
 	odrl:permission [
-		odrl:target &lt;/music:4545&gt; ;
-		odrl:assigner &lt;/sony:10&gt; ;
-		odrl:assignee &lt;/billie:888&gt; ;
+		odrl:target &lt;http://example.com/music:4545&gt; ;
+		odrl:assigner &lt;http://example.com/sony:10&gt; ;
+		odrl:assignee &lt;http://example.com/billie:888&gt; ;
 		odrl:action odrl:copy ;
 		odrl:duty _:requirements ;
 		odrl:constraint [
@@ -241,10 +237,10 @@
 _:requirements
 	a odrl:Duty ;
 	odrl:action odrl:pay ;
-	odrl:target &lt;/ubl:AUD0.50&gt; .
+	odrl:target &lt;http://example.com/ubl:AUD0.50&gt; .
 
-&lt;/sony:10&gt; a odrl:Party .
-&lt;/billie:888&gt; a odrl:Party .
+&lt;http://example.com/sony:10&gt; a odrl:Party .
+&lt;http://example.com/billie:888&gt; a odrl:Party .
 </code></pre><p>Download this example as <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example3.ttl">Turtle</a>, <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example3.rdf">RDF/XML</a>, or <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example3.nt">N-Triples</a>.</p>
 <h3 id="sec-example-4">Request</h3>
 
@@ -252,19 +248,18 @@
 	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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 
-&lt;/policy:04311&gt;
+&lt;http://example.com/policy:04311&gt;
 	a odrl:Request ;
 	odrl:permission [
 		a odrl:Permission ;
 		odrl:action odrl:display ;
-		odrl:assignee &lt;/guest:0589&gt; ;
-		odrl:target &lt;/news:0099&gt;
+		odrl:assignee &lt;http://example.com/guest:0589&gt; ;
+		odrl:target &lt;http://example.com/news:0099&gt;
 	] .
 
-&lt;/guest:0589&gt; a odrl:Party .
+&lt;http://example.com/guest:0589&gt; a odrl:Party .
 </code></pre><p>Download this example as <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example4.ttl">Turtle</a>, <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example4.rdf">RDF/XML</a>, or <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example4.nt">N-Triples</a>.</p>
 <h3 id="sec-example-5">Ticket</h3>
 
@@ -272,16 +267,15 @@
 	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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 @prefix xsd: &lt;http://www.w3.org/2001/XMLSchema#&gt; .
 
-&lt;/policy:0811&gt;
+&lt;http://example.com/policy:0811&gt;
 	a odrl:Ticket ;
 	odrl:permission [
 		a odrl:Permission ;
 		odrl:action odrl:play ;
-		odrl:target &lt;/game:4589&gt; ;
+		odrl:target &lt;http://example.com/game:4589&gt; ;
 		odrl:constraint [
 			a odrl:Constraint ;
 			odrl:operator odrl:lteq ;
@@ -299,43 +293,42 @@
 	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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 
-&lt;/policy:5531&gt;
+&lt;http://example.com/policy:5531&gt;
 	a odrl:Offer ;
 	odrl:permission [
 		a odrl:Permission ;
 		odrl:action odrl:distribute ;
-		odrl:target &lt;/wallpaper:2321&gt; ;
-		odrl:assigner &lt;/sony:99&gt; ;
+		odrl:target &lt;http://example.com/wallpaper:2321&gt; ;
+		odrl:assigner &lt;http://example.com/sony:99&gt; ;
 		odrl:constraint [
 			a odrl:Constraint ;
 			odrl:operator odrl:eq ;
 			odrl:spatial &lt;http://ontologi.es/place/IT&gt;
 		] ;
-		odrl:duty &lt;/duty:01&gt;, &lt;/duty:02&gt;
+		odrl:duty &lt;http://example.com/duty:01&gt;, &lt;http://example.com/duty:02&gt;
 	] .
 
-&lt;/duty:01&gt;
+&lt;http://example.com/duty:01&gt;
 	a odrl:Duty ;
 	odrl:action odrl:pay ;
-	odrl:target &lt;/ubl:EU1000.00&gt; .
+	odrl:target &lt;http://example.com/ubl:EU1000.00&gt; .
 
-&lt;/duty:02&gt;
+&lt;http://example.com/duty:02&gt;
 	a odrl:Duty ;
 	odrl:action odrl:nextPolicy ;
-	odrl:target &lt;/policy:7777&gt; .
+	odrl:target &lt;http://example.com/policy:7777&gt; .
 
-&lt;/policy:7777&gt;
+&lt;http://example.com/policy:7777&gt;
 	a odrl:Set ;
 	odrl:permission [
 		a odrl:Permission ;
 		odrl:action odrl:display ;
-		odrl:target &lt;/wallpaper:2321&gt;
+		odrl:target &lt;http://example.com/wallpaper:2321&gt;
 	] .
 
-&lt;/sony:99&gt; a odrl:Party .
+&lt;http://example.com/sony:99&gt; a odrl:Party .
 </code></pre><p>Download this example as <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example6.ttl">Turtle</a>, <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example6.rdf">RDF/XML</a>, or <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example6.nt">N-Triples</a>.</p>
 <h3 id="sec-example-7">Privacy policy</h3>
 
@@ -345,19 +338,18 @@
 
 <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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 @prefix p3p: &lt;http://www.w3.org/2006/01/P3Pv11&gt; .
 @prefix xsd: &lt;http://www.w3.org/2001/XMLSchema#&gt; .
 
-&lt;/policy:1111&gt;
+&lt;http://example.com/policy:1111&gt;
 	a odrl:Privacy ;
 	odrl:permission [
 		a odrl:Permission ;
 		odrl:action odrl:distribute ;
-		odrl:target &lt;/billie:888:personal-data&gt; ;
-		odrl:assigner &lt;/billie:888&gt; ;
-		odrl:assignee &lt;/gov:health:au&gt; ;
+		odrl:target &lt;http://example.com/billie:888:personal-data&gt; ;
+		odrl:assigner &lt;http://example.com/billie:888&gt; ;
+		odrl:assignee &lt;http://example.com/gov:health:au&gt; ;
 		odrl:duty [
 			a odrl:Duty ;
 			odrl:action odrl:delete ;
@@ -374,8 +366,8 @@
 		]
 	] .
 
-&lt;/billie:888&gt; a odrl:Party .
-&lt;/gov:health:au&gt; a odrl:Party .
+&lt;http://example.com/billie:888&gt; a odrl:Party .
+&lt;http://example.com/gov:health:au&gt; a odrl:Party .
 </code></pre><p>Download this example as <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example7.ttl">Turtle</a>, <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example7.rdf">RDF/XML</a>, or <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example7.nt">N-Triples</a>.</p>
 <h3 id="sec-example-8">Permission and prohibition</h3>
 
@@ -383,30 +375,29 @@
 	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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 @prefix mobile: &lt;http://example.com/mobile#&gt; .
 
-&lt;/policy:3433&gt;
+&lt;http://example.com/policy:3433&gt;
 	a odrl:Agreement ;
 	odrl:conflict odrl:perm ;
 	odrl:permission [
 		a odrl:Permission ;
 		odrl:action odrl:play ;
-		odrl:assignee &lt;/billie:888&gt; ;
-		odrl:assigner &lt;/sony:10&gt; ;
-		odrl:target &lt;/music:1234908&gt;
+		odrl:assignee &lt;http://example.com/billie:888&gt; ;
+		odrl:assigner &lt;http://example.com/sony:10&gt; ;
+		odrl:target &lt;http://example.com/music:1234908&gt;
 	] ;
 	odrl:prohibition [
 		a odrl:Prohibition ; 
 		odrl:action mobile:ringtone ;
-		odrl:assignee &lt;/billie:888&gt; ;
-		odrl:assigner &lt;/sony:10&gt; ;
-		odrl:target &lt;/music:1234908&gt;
+		odrl:assignee &lt;/http://example.combillie:888&gt; ;
+		odrl:assigner &lt;http://example.com/sony:10&gt; ;
+		odrl:target &lt;http://example.com/music:1234908&gt;
 	] .
 
-&lt;/billie:888&gt; a odrl:Party .
-&lt;/sony:10&gt; a odrl:Party .
+&lt;http://example.com/billie:888&gt; a odrl:Party .
+&lt;http://example.com/sony:10&gt; a odrl:Party .
 </code></pre><p>Download this example as <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example8.ttl">Turtle</a>, <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example8.rdf">RDF/XML</a>, or <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example8.nt">N-Triples</a>.</p>
 <h3 id="sec-example-9">Inheritance</h3>
 
@@ -417,33 +408,32 @@
 <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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 
-&lt;/policy:5531&gt;
+&lt;http://example.com/policy:5531&gt;
 	a odrl:Agreement ;
 	odrl:permission [
 		a odrl:Permission ;
 		odrl:action odrl:print ;
-		odrl:target &lt;/report:2321&gt; ;
-		odrl:assigner &lt;/pub:88&gt; ;
-		odrl:assignee &lt;/billie:888&gt; ;		
+		odrl:target &lt;http://example.com/report:2321&gt; ;
+		odrl:assigner &lt;http://example.com/pub:88&gt; ;
+		odrl:assignee &lt;http://example.com/billie:888&gt; ;		
 	] .
 	
-&lt;/policy:9999&gt;
+&lt;http://example.com/policy:9999&gt;
 	a odrl:Agreement ;
-	odrl:inheritFrom &lt;/policy:5531&gt; ;
+	odrl:inheritFrom &lt;http://example.com/policy:5531&gt; ;
 	odrl:permission [
 		a odrl:Permission ;
 		odrl:action odrl:display ;
-		odrl:target &lt;/report:2333&gt; ;
-		odrl:assigner &lt;/pub:88&gt; ;
-		odrl:assignee &lt;/class:IT01&gt;
+		odrl:target &lt;http://example.com/report:2333&gt; ;
+		odrl:assigner &lt;http://example.com/pub:88&gt; ;
+		odrl:assignee &lt;http://example.com/class:IT01&gt;
 	] .
 
-&lt;/pub:88&gt; a odrl:Party .
-&lt;/billie:888&gt; a odrl:Party .
-&lt;/class:IT01&gt; a odrl:Group .
+&lt;http://example.com/pub:88&gt; a odrl:Party .
+&lt;http://example.com/billie:888&gt; a odrl:Party .
+&lt;http://example.com/class:IT01&gt; a odrl:Group .
 </code></pre><p>Download this example as <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example9.ttl">Turtle</a>, <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example9.rdf">RDF/XML</a>, or <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example9.nt">N-Triples</a>.</p>
 <h3 id="sec-example-10">Social network</h3>
 
@@ -453,21 +443,20 @@
 	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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 
-&lt;/policy:5109&gt;
+&lt;http://example.com/policy:5109&gt;
 	a odrl:Agreement ;
 	odrl:permission [
 		a odrl:Permission ;
 		odrl:action odrl:display ;
-		odrl:target &lt;/myPlace:billie:photos:football2010&gt; ;
-		odrl:assigner &lt;/myPlace:billie&gt; ;
-		odrl:assignee &lt;/myPlace:network:football&gt;
+		odrl:target &lt;http://example.com/myPlace:billie:photos:football2010&gt; ;
+		odrl:assigner &lt;http://example.com/myPlace:billie&gt; ;
+		odrl:assignee &lt;http://example.com/myPlace:network:football&gt;
 	] .
 
-&lt;/myPlace:billie&gt; a odrl:Party .
-&lt;/myPlace:network:football&gt; a odrl:Group .
+&lt;http://example.com/myPlace:billie&gt; a odrl:Party .
+&lt;http://example.com/myPlace:network:football&gt; a odrl:Group .
 </code></pre><p>Download this example as <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example10.ttl">Turtle</a>, <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example10.rdf">RDF/XML</a>, or <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example10.nt">N-Triples</a>.</p>
 <h3 id="sec-example-11">Multiple assets</h3>
 
@@ -475,17 +464,16 @@
 
 <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>@base &lt;http://example.com/&gt; .
-@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
+<pre><code>@prefix odrl: &lt;http://w3.org/ns/odrl/2/&gt; .
 @prefix x: &lt;http://example.com/x#&gt; .
 
-&lt;/policy:881212&gt;
+&lt;http://example.com/policy:881212&gt;
 	a odrl:Set ;
 	odrl:permission [
 		a odrl:Permission ;
 		odrl:action odrl:index ;
-		odrl:target &lt;/archive/2010&gt; ;
-		x:collection &lt;/x/database&gt;
+		odrl:target &lt;http://example.com/archive/2010&gt; ;
+		x:collection &lt;http://example.com/x/database&gt;
 	] .
 </code></pre><p>Download this example as <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example11.ttl">Turtle</a>, <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example11.rdf">RDF/XML</a>, or <a href="https://dvcs.w3.org/hg/odrl/raw-file/tip/examples/example11.nt">N-Triples</a>.</p>
 <h2 id="sec-classes">Classes</h2>
@@ -1055,15 +1043,6 @@
 <tr><th>Range:</th> <td><a href="http://www.w3.org/2001/XMLSchema#string">xsd:string</a></td></tr>
 </table>
 </div>
-<h3 id="term-proximity">proximity</h3
-<p>An value indicating the closeness or nearness.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/proximity">http://www.w3.org/ns/odrl/2/proximity</a></td></tr>
-<tr><th>Label:</th> <td>proximity</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Parent property:</th> <td><a href="#term-rightOperand">rightOperand</a></td></tr>
-</table>
-</div>
 <h3 id="term-purpose">purpose</h3
 <p>Specification of a defined purpose applicable to the asset usage.</p>
 <table>
@@ -1127,16 +1106,6 @@
 <tr><th>Parent property:</th> <td><a href="#term-rightOperand">rightOperand</a></td></tr>
 </table>
 </div>
-<h3 id="term-timedCount">timedCount</h3
-<p>The number of seconds after which timed metering use of the asset begins.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/timedCount">http://www.w3.org/ns/odrl/2/timedCount</a></td></tr>
-<tr><th>Label:</th> <td>timed count</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Parent property:</th> <td><a href="#term-rightOperand">rightOperand</a></td></tr>
-<tr><th>Range:</th> <td><a href="http://www.w3.org/2000/01/rdf-schema#Literal">rdfs:Literal</a></td></tr>
-</table>
-</div>
 <h3 id="term-timeInterval">timeInterval</h3
 <p>Recurring period of time in which the usage may be exercised.</p>
 <table>
@@ -1230,6 +1199,27 @@
 <tr><th>Parent property:</th> <td><a href="#term-function">function</a></td></tr>
 </table>
 </div>
+<h3 id="term-proximity">proximity</h3
+<p>An value indicating the closeness or nearness.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/proximity">http://www.w3.org/ns/odrl/2/proximity</a></td></tr>
+<tr><th>Label:</th> <td>proximity</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://www.openmobilealliance.com/oma-dd/proximity">oma:proximity</a></td></tr>
+<tr><th>Parent property:</th> <td><a href="#term-rightOperand">rightOperand</a></td></tr>
+</table>
+</div>
+<h3 id="term-timedCount">timedCount</h3
+<p>The number of seconds after which timed metering use of the asset begins.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/timedCount">http://www.w3.org/ns/odrl/2/timedCount</a></td></tr>
+<tr><th>Label:</th> <td>timed count</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://www.openmobilealliance.com/oma-dd/timed-count">oma:timed-count</a></td></tr>
+<tr><th>Parent property:</th> <td><a href="#term-rightOperand">rightOperand</a></td></tr>
+<tr><th>Range:</th> <td><a href="http://www.w3.org/2000/01/rdf-schema#Literal">rdfs:Literal</a></td></tr>
+</table>
+</div>
 <h2 id="sec-concept-schemes">Concept schemes</h2>
 <h3 id="term-actions">actions</h3
 <p></p>
@@ -1250,16 +1240,6 @@
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
 </div>
-<h3 id="term-adHocShare">adHocShare</h3
-<p>The act of sharing the asset to parties in close proximity to the owner. This action may be used to express [OMA] Sharing semantics.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/adHocShare">http://www.w3.org/ns/odrl/2/adHocShare</a></td></tr>
-<tr><th>Label:</th> <td>Ad-hoc sharing</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
-<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
-</table>
-</div>
 <h3 id="term-aggregate">aggregate</h3
 <p>The act of using the asset (or parts of it) as part of a composite collection.</p>
 <table>
@@ -1310,26 +1290,6 @@
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
 </div>
-<h3 id="term-attachPolicy">attachPolicy</h3
-<p>The act of keeping the policy notice with the asset.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/attachPolicy">http://www.w3.org/ns/odrl/2/attachPolicy</a></td></tr>
-<tr><th>Label:</th> <td>Attach policy</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
-<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
-</table>
-</div>
-<h3 id="term-attachSource">attachSource</h3
-<p>The act of attaching the source of the asset and its derivatives.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/attachSource">http://www.w3.org/ns/odrl/2/attachSource</a></td></tr>
-<tr><th>Label:</th> <td>Attach source</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
-<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
-</table>
-</div>
 <h3 id="term-attribute">attribute</h3
 <p>The act of attributing the asset to a party.</p>
 <table>
@@ -1340,16 +1300,6 @@
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
 </div>
-<h3 id="term-commercialize">commercialize</h3
-<p>The act of using the asset in a business environment.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/commercialize">http://www.w3.org/ns/odrl/2/commercialize</a></td></tr>
-<tr><th>Label:</th> <td>Commercialize</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
-<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
-</table>
-</div>
 <h3 id="term-concurrentUse">concurrentUse</h3
 <p>The act of multiple concurrent use of the asset.</p>
 <table>
@@ -1366,6 +1316,7 @@
   <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/copy">http://www.w3.org/ns/odrl/2/copy</a></td></tr>
 <tr><th>Label:</th> <td>Copy</td></tr>
 <tr><th>Status:</th> <td>testing</td></tr>
+<tr><th>Equivalent to:</th> <td><a href="#term-reproduce">reproduce</a></td></tr>
 <tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
@@ -1386,6 +1337,7 @@
   <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/derive">http://www.w3.org/ns/odrl/2/derive</a></td></tr>
 <tr><th>Label:</th> <td>Derive</td></tr>
 <tr><th>Status:</th> <td>testing</td></tr>
+<tr><th>Equivalent to:</th> <td><a href="#term-modify">modify</a></td></tr>
 <tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
@@ -1396,6 +1348,7 @@
   <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/display">http://www.w3.org/ns/odrl/2/display</a></td></tr>
 <tr><th>Label:</th> <td>Display</td></tr>
 <tr><th>Status:</th> <td>testing</td></tr>
+<tr><th>Equivalent to:</th> <td><a href="#term-execute">execute</a></td></tr>
 <tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
@@ -1426,6 +1379,7 @@
   <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/execute">http://www.w3.org/ns/odrl/2/execute</a></td></tr>
 <tr><th>Label:</th> <td>Execute</td></tr>
 <tr><th>Status:</th> <td>testing</td></tr>
+<tr><th>Equivalent to:</th> <td><a href="#term-display">display</a></td></tr>
 <tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
@@ -1436,6 +1390,7 @@
   <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/export">http://www.w3.org/ns/odrl/2/export</a></td></tr>
 <tr><th>Label:</th> <td>Export</td></tr>
 <tr><th>Status:</th> <td>testing</td></tr>
+<tr><th>Equivalent to:</th> <td><a href="#term-transform">transform</a></td></tr>
 <tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
@@ -1450,33 +1405,6 @@
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
 </div>
-<h3 id="term-extractChar">extractChar</h3
-<p>The act of extracting (replicating) unchanged character(s) from the asset.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/extractChar">http://www.w3.org/ns/odrl/2/extractChar</a></td></tr>
-<tr><th>Label:</th> <td>Extract character</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
-</table>
-</div>
-<h3 id="term-extractPage">extractPage</h3
-<p>The act of extracting (replicating) unchanged page(s) from the asset.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/extractPage">http://www.w3.org/ns/odrl/2/extractPage</a></td></tr>
-<tr><th>Label:</th> <td>Extract page</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
-</table>
-</div>
-<h3 id="term-extractWord">extractWord</h3
-<p>The act of extracting (replicating) unchanged word(s) from the asset.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/extractWord">http://www.w3.org/ns/odrl/2/extractWord</a></td></tr>
-<tr><th>Label:</th> <td>Extract word</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
-</table>
-</div>
 <h3 id="term-give">give</h3
 <p>The act of giving away the asset in perpetuity without exchange of value.</p>
 <table>
@@ -1563,6 +1491,7 @@
   <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/modify">http://www.w3.org/ns/odrl/2/modify</a></td></tr>
 <tr><th>Label:</th> <td>Modify</td></tr>
 <tr><th>Status:</th> <td>testing</td></tr>
+<tr><th>Equivalent to:</th> <td><a href="#term-derive">derive</a></td></tr>
 <tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
@@ -1613,6 +1542,7 @@
   <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/play">http://www.w3.org/ns/odrl/2/play</a></td></tr>
 <tr><th>Label:</th> <td>Play</td></tr>
 <tr><th>Status:</th> <td>testing</td></tr>
+<tr><th>Equivalent to:</th> <td><a href="#term-present">present</a></td></tr>
 <tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
@@ -1623,6 +1553,7 @@
   <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/present">http://www.w3.org/ns/odrl/2/present</a></td></tr>
 <tr><th>Label:</th> <td>Present</td></tr>
 <tr><th>Status:</th> <td>testing</td></tr>
+<tr><th>Equivalent to:</th> <td><a href="#term-play">play</a></td></tr>
 <tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
@@ -1663,6 +1594,7 @@
   <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/reproduce">http://www.w3.org/ns/odrl/2/reproduce</a></td></tr>
 <tr><th>Label:</th> <td>Reproduce</td></tr>
 <tr><th>Status:</th> <td>testing</td></tr>
+<tr><th>Equivalent to:</th> <td><a href="#term-copy">copy</a></td></tr>
 <tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
@@ -1697,26 +1629,6 @@
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
 </div>
-<h3 id="term-share">share</h3
-<p>The act of the non-commercial reproduction and distribution of the asset to third-parties.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/share">http://www.w3.org/ns/odrl/2/share</a></td></tr>
-<tr><th>Label:</th> <td>Share</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
-<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
-</table>
-</div>
-<h3 id="term-shareAlike">shareAlike</h3
-<p>The act of distributing any derivative asset under the same terms as the original asset.</p>
-<table>
-  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/shareAlike">http://www.w3.org/ns/odrl/2/shareAlike</a></td></tr>
-<tr><th>Label:</th> <td>Share-alike</td></tr>
-<tr><th>Status:</th> <td>testing</td></tr>
-<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
-<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
-</table>
-</div>
 <h3 id="term-textToSpeech">textToSpeech</h3
 <p>The act of a system reading the text of the asset out loud.</p>
 <table>
@@ -1733,6 +1645,7 @@
   <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/transform">http://www.w3.org/ns/odrl/2/transform</a></td></tr>
 <tr><th>Label:</th> <td>Transform</td></tr>
 <tr><th>Status:</th> <td>testing</td></tr>
+<tr><th>Equivalent to:</th> <td><a href="#term-export">export</a></td></tr>
 <tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
@@ -1777,6 +1690,102 @@
 <tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
 </table>
 </div>
+<h3 id="term-adHocShare">adHocShare</h3
+<p>The act of sharing the asset to parties in close proximity to the owner. This action may be used to express [OMA] Sharing semantics.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/adHocShare">http://www.w3.org/ns/odrl/2/adHocShare</a></td></tr>
+<tr><th>Label:</th> <td>Ad-hoc sharing</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://www.openmobilealliance.com/oma-dd/adhoc-share">oma:adhoc-share</a></td></tr>
+<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
+<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
+</table>
+</div>
+<h3 id="term-extractChar">extractChar</h3
+<p>The act of extracting (replicating) unchanged character(s) from the asset.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/extractChar">http://www.w3.org/ns/odrl/2/extractChar</a></td></tr>
+<tr><th>Label:</th> <td>Extract character</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://www.editeur.org/onix-pl/extract-char">onix:extract-char</a></td></tr>
+<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
+</table>
+</div>
+<h3 id="term-extractPage">extractPage</h3
+<p>The act of extracting (replicating) unchanged page(s) from the asset.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/extractPage">http://www.w3.org/ns/odrl/2/extractPage</a></td></tr>
+<tr><th>Label:</th> <td>Extract page</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://www.editeur.org/onix-pl/extract-word">onix:extract-word</a></td></tr>
+<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
+</table>
+</div>
+<h3 id="term-extractWord">extractWord</h3
+<p>The act of extracting (replicating) unchanged word(s) from the asset.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/extractWord">http://www.w3.org/ns/odrl/2/extractWord</a></td></tr>
+<tr><th>Label:</th> <td>Extract word</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://www.editeur.org/onix-pl/extract-page">onix:extract-page</a></td></tr>
+<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
+</table>
+</div>
+<h3 id="term-attachPolicy">attachPolicy</h3
+<p>The act of keeping the policy notice with the asset.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/attachPolicy">http://www.w3.org/ns/odrl/2/attachPolicy</a></td></tr>
+<tr><th>Label:</th> <td>Attach policy</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://creativecommons.org/ns#Notice">cc:Notice</a></td></tr>
+<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
+<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
+</table>
+</div>
+<h3 id="term-attachSource">attachSource</h3
+<p>The act of attaching the source of the asset and its derivatives.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/attachSource">http://www.w3.org/ns/odrl/2/attachSource</a></td></tr>
+<tr><th>Label:</th> <td>Attach source</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://creativecommons.org/ns#SourceCode">cc:SourceCode</a></td></tr>
+<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
+<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
+</table>
+</div>
+<h3 id="term-shareAlike">shareAlike</h3
+<p>The act of distributing any derivative asset under the same terms as the original asset.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/shareAlike">http://www.w3.org/ns/odrl/2/shareAlike</a></td></tr>
+<tr><th>Label:</th> <td>Share-alike</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://creativecommons.org/ns#ShareAlike">cc:ShareAlike</a></td></tr>
+<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
+<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
+</table>
+</div>
+<h3 id="term-commercialize">commercialize</h3
+<p>The act of using the asset in a business environment.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/commercialize">http://www.w3.org/ns/odrl/2/commercialize</a></td></tr>
+<tr><th>Label:</th> <td>Commercialize</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://creativecommons.org/ns#CommercialUse">cc:CommercialUse</a></td></tr>
+<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
+<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
+</table>
+</div>
+<h3 id="term-share">share</h3
+<p>The act of the non-commercial reproduction and distribution of the asset to third-parties.</p>
+<table>
+  <tr><th>URI:</th> <td><a href="http://www.w3.org/ns/odrl/2/share">http://www.w3.org/ns/odrl/2/share</a></td></tr>
+<tr><th>Label:</th> <td>Share</td></tr>
+<tr><th>Status:</th> <td>deprecated</td></tr>
+<tr><th>Deprecated by:</th> <td><a href="http://creativecommons.org/ns#Distribution">cc:Distribution</a></td></tr>
+<tr><th>Class:</th> <td><a href="#term-Action">Action</a></td></tr>
+<tr><th>Concept scheme:</th> <td><a href="#term-actions">actions</a></td></tr>
+</table>
+</div>
 <h2 id="sec-named-individuals">Named individuals</h2>
 <h3 id="term-perm">perm</h3
 <p>Permissions take precedence over prohibitions.</p>
--- a/2/ODRL20.nt	Mon May 12 10:45:08 2014 +0100
+++ b/2/ODRL20.nt	Mon May 12 10:45:51 2014 +0100
@@ -6,7 +6,7 @@
 <http://www.w3.org/ns/odrl/2/> <http://purl.org/vocab/vann/preferredNamespacePrefix> "odrl" .
 <http://www.w3.org/ns/odrl/2/> <http://purl.org/vocab/vann/example> <http://www.w3.org/ns/odrl/2/Asset> .
 <http://www.w3.org/ns/odrl/2/> <http://purl.org/dc/terms/creator> "Mo McRoberts (BBC)" .
-<http://www.w3.org/ns/odrl/2/> <http://purl.org/dc/terms/creator> "V\u00EDctor Rodr\u00EDguez Doncel" .
+<http://www.w3.org/ns/odrl/2/> <http://purl.org/dc/terms/creator> "V\u00EDctor Rodr\u00EDguez Doncel (OEG-UPM)" .
 <http://www.w3.org/ns/odrl/2/> <http://purl.org/dc/terms/contributor> "ODRL Community Group" .
 <http://www.w3.org/ns/odrl/2/> <http://purl.org/dc/terms/description> "The Open Digital Rights Language (ODRL) provides flexible and interoperable mechanisms to support transparent and innovative use of digital content in publishing, distribution, and consumption of of digital media across all sectors and communities. The ODRL Policy model is broad enough to support traditional rights expressions for commercial transaction, open access expressions for publicly distributed content, and privacy expressions for social media."@en .
 <http://www.w3.org/ns/odrl/2/odrl.ttl> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.org/dc/dcmitype/Text> .
@@ -412,12 +412,6 @@
 <http://www.w3.org/ns/odrl/2/acceptTracking> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
 <http://www.w3.org/ns/odrl/2/acceptTracking> <http://www.w3.org/2000/01/rdf-schema#label> "Accept tracking"@en .
 <http://www.w3.org/ns/odrl/2/acceptTracking> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of accepting that the use of the asset may be recorded. The collected information may be tracked by the assigner, or may link to a Party with role function 'trackingParty'."@en .
-<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
-<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
-<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/2000/01/rdf-schema#label> "Ad-hoc sharing"@en .
-<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of sharing the asset to parties in close proximity to the owner. This action may be used to express [OMA] Sharing semantics."@en .
 <http://www.w3.org/ns/odrl/2/aggregate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
 <http://www.w3.org/ns/odrl/2/aggregate> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
 <http://www.w3.org/ns/odrl/2/aggregate> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
@@ -448,30 +442,12 @@
 <http://www.w3.org/ns/odrl/2/archive> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
 <http://www.w3.org/ns/odrl/2/archive> <http://www.w3.org/2000/01/rdf-schema#label> "Archive"@en .
 <http://www.w3.org/ns/odrl/2/archive> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of persistently storing the asset."@en .
-<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
-<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
-<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/2000/01/rdf-schema#label> "Attach policy"@en .
-<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of keeping the policy notice with the asset."@en .
-<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
-<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
-<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/2000/01/rdf-schema#label> "Attach source"@en .
-<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of attaching the source of the asset and its derivatives."@en .
 <http://www.w3.org/ns/odrl/2/attribute> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
 <http://www.w3.org/ns/odrl/2/attribute> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
 <http://www.w3.org/ns/odrl/2/attribute> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
 <http://www.w3.org/ns/odrl/2/attribute> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
 <http://www.w3.org/ns/odrl/2/attribute> <http://www.w3.org/2000/01/rdf-schema#label> "Attribute"@en .
 <http://www.w3.org/ns/odrl/2/attribute> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of attributing the asset to a party."@en .
-<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
-<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
-<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/2000/01/rdf-schema#label> "Commercialize"@en .
-<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of using the asset in a business environment."@en .
 <http://www.w3.org/ns/odrl/2/concurrentUse> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
 <http://www.w3.org/ns/odrl/2/concurrentUse> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
 <http://www.w3.org/ns/odrl/2/concurrentUse> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
@@ -537,27 +513,6 @@
 <http://www.w3.org/ns/odrl/2/extract> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
 <http://www.w3.org/ns/odrl/2/extract> <http://www.w3.org/2000/01/rdf-schema#label> "Extract"@en .
 <http://www.w3.org/ns/odrl/2/extract> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of extracting (replicating) unchanged parts of the asset."@en .
-<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
-<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
-<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/2004/02/skos/core#broader> <http://www.w3.org/ns/odrl/2/extract> .
-<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/2000/01/rdf-schema#label> "Extract character"@en .
-<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of extracting (replicating) unchanged character(s) from the asset."@en .
-<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
-<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
-<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/2004/02/skos/core#broader> <http://www.w3.org/ns/odrl/2/extract> .
-<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/2000/01/rdf-schema#label> "Extract page"@en .
-<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of extracting (replicating) unchanged page(s) from the asset."@en .
-<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
-<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
-<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/2004/02/skos/core#broader> <http://www.w3.org/ns/odrl/2/extract> .
-<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/2000/01/rdf-schema#label> "Extract word"@en .
-<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of extracting (replicating) unchanged word(s) from the asset."@en .
 <http://www.w3.org/ns/odrl/2/give> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
 <http://www.w3.org/ns/odrl/2/give> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
 <http://www.w3.org/ns/odrl/2/give> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
@@ -694,18 +649,6 @@
 <http://www.w3.org/ns/odrl/2/sell> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
 <http://www.w3.org/ns/odrl/2/sell> <http://www.w3.org/2000/01/rdf-schema#label> "Sell"@en .
 <http://www.w3.org/ns/odrl/2/sell> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of trading the asset in exchange of value."@en .
-<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
-<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
-<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/2000/01/rdf-schema#label> "Share"@en .
-<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of the non-commercial reproduction and distribution of the asset to third-parties."@en .
-<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
-<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
-<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/2000/01/rdf-schema#label> "Share-alike"@en .
-<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of distributing any derivative asset under the same terms as the original asset."@en .
 <http://www.w3.org/ns/odrl/2/textToSpeech> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
 <http://www.w3.org/ns/odrl/2/textToSpeech> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
 <http://www.w3.org/ns/odrl/2/textToSpeech> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
@@ -868,13 +811,6 @@
 <http://www.w3.org/ns/odrl/2/product> <http://www.w3.org/2000/01/rdf-schema#label> "product"@en .
 <http://www.w3.org/ns/odrl/2/product> <http://www.w3.org/2000/01/rdf-schema#comment> "The specified Product or Service name."@en .
 <http://www.w3.org/ns/odrl/2/product> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> .
-<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
-<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
-<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/odrl/2/rightOperand> .
-<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/2000/01/rdf-schema#label> "proximity"@en .
-<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/2000/01/rdf-schema#comment> "An value indicating the closeness or nearness."@en .
 <http://www.w3.org/ns/odrl/2/purpose> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
 <http://www.w3.org/ns/odrl/2/purpose> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> .
 <http://www.w3.org/ns/odrl/2/purpose> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
@@ -922,14 +858,6 @@
 <http://www.w3.org/ns/odrl/2/system> <http://www.w3.org/2002/07/owl#equivalentProperty> <http://www.w3.org/ns/odrl/2/device> .
 <http://www.w3.org/ns/odrl/2/system> <http://www.w3.org/2000/01/rdf-schema#label> "system"@en .
 <http://www.w3.org/ns/odrl/2/system> <http://www.w3.org/2000/01/rdf-schema#comment> "An identifiable computing system."@en .
-<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
-<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
-<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
-<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/odrl/2/rightOperand> .
-<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
-<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2000/01/rdf-schema#label> "timed count"@en .
-<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2000/01/rdf-schema#comment> "The number of seconds after which timed metering use of the asset begins."@en .
-<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
 <http://www.w3.org/ns/odrl/2/timeInterval> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
 <http://www.w3.org/ns/odrl/2/timeInterval> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
 <http://www.w3.org/ns/odrl/2/timeInterval> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
@@ -1087,3 +1015,86 @@
 <http://www.w3.org/ns/odrl/2/Individual> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "testing" .
 <http://www.w3.org/ns/odrl/2/Individual> <http://www.w3.org/2000/01/rdf-schema#label> "Individual"@en .
 <http://www.w3.org/ns/odrl/2/Individual> <http://www.w3.org/2000/01/rdf-schema#comment> "Specifies that the scope of the relationship is the single Party individual."@en .
+<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
+<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
+<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/adHocShare> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://www.openmobilealliance.com/oma-dd/adhoc-share> .
+<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/2000/01/rdf-schema#label> "Ad-hoc sharing"@en .
+<http://www.w3.org/ns/odrl/2/adHocShare> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of sharing the asset to parties in close proximity to the owner. This action may be used to express [OMA] Sharing semantics."@en .
+<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
+<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
+<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/2004/02/skos/core#broader> <http://www.w3.org/ns/odrl/2/extract> .
+<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/extractChar> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://www.editeur.org/onix-pl/extract-char> .
+<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/2000/01/rdf-schema#label> "Extract character"@en .
+<http://www.w3.org/ns/odrl/2/extractChar> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of extracting (replicating) unchanged character(s) from the asset."@en .
+<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
+<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
+<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/2004/02/skos/core#broader> <http://www.w3.org/ns/odrl/2/extract> .
+<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/extractPage> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://www.editeur.org/onix-pl/extract-word> .
+<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/2000/01/rdf-schema#label> "Extract page"@en .
+<http://www.w3.org/ns/odrl/2/extractPage> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of extracting (replicating) unchanged page(s) from the asset."@en .
+<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
+<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
+<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/2004/02/skos/core#broader> <http://www.w3.org/ns/odrl/2/extract> .
+<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/extractWord> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://www.editeur.org/onix-pl/extract-page> .
+<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/2000/01/rdf-schema#label> "Extract word"@en .
+<http://www.w3.org/ns/odrl/2/extractWord> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of extracting (replicating) unchanged word(s) from the asset."@en .
+<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
+<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
+<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/attachPolicy> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://creativecommons.org/ns#Notice> .
+<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/2000/01/rdf-schema#label> "Attach policy"@en .
+<http://www.w3.org/ns/odrl/2/attachPolicy> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of keeping the policy notice with the asset."@en .
+<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
+<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
+<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/attachSource> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://creativecommons.org/ns#SourceCode> .
+<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/2000/01/rdf-schema#label> "Attach source"@en .
+<http://www.w3.org/ns/odrl/2/attachSource> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of attaching the source of the asset and its derivatives."@en .
+<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
+<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
+<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/shareAlike> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://creativecommons.org/ns#ShareAlike> .
+<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/2000/01/rdf-schema#label> "Share-alike"@en .
+<http://www.w3.org/ns/odrl/2/shareAlike> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of distributing any derivative asset under the same terms as the original asset."@en .
+<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
+<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
+<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/commercialize> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://creativecommons.org/ns#CommercialUse> .
+<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/2000/01/rdf-schema#label> "Commercialize"@en .
+<http://www.w3.org/ns/odrl/2/commercialize> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of using the asset in a business environment."@en .
+<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Action> .
+<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2004/02/skos/core#Concept> .
+<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/share> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://creativecommons.org/ns#Distribution> .
+<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/2000/01/rdf-schema#label> "Share"@en .
+<http://www.w3.org/ns/odrl/2/share> <http://www.w3.org/2000/01/rdf-schema#comment> "The act of the non-commercial reproduction and distribution of the asset to third-parties."@en .
+<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/odrl/2/rightOperand> .
+<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/proximity> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://www.openmobilealliance.com/oma-dd/proximity> .
+<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/2000/01/rdf-schema#label> "proximity"@en .
+<http://www.w3.org/ns/odrl/2/proximity> <http://www.w3.org/2000/01/rdf-schema#comment> "An value indicating the closeness or nearness."@en .
+<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/1999/02/22-rdf-syntax-ns#Property> .
+<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> .
+<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/odrl/2/rightOperand> .
+<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2000/01/rdf-schema#isDefinedBy> <http://www.w3.org/ns/odrl/2/> .
+<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2003/06/sw-vocab-status/ns#term_status> "deprecated" .
+<http://www.w3.org/ns/odrl/2/timedCount> <http://purl.org/net/ns/ontology-annot#deprecatedBy> <http://www.openmobilealliance.com/oma-dd/timed-count> .
+<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2000/01/rdf-schema#label> "timed count"@en .
+<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2000/01/rdf-schema#comment> "The number of seconds after which timed metering use of the asset begins."@en .
+<http://www.w3.org/ns/odrl/2/timedCount> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> .
--- a/2/ODRL20.rdf	Mon May 12 10:45:08 2014 +0100
+++ b/2/ODRL20.rdf	Mon May 12 10:45:51 2014 +0100
@@ -3,6 +3,7 @@
    xmlns:dcmit="http://purl.org/dc/dcmitype/"
    xmlns:dct="http://purl.org/dc/terms/"
    xmlns:foaf="http://xmlns.com/foaf/0.1/"
+   xmlns:ont="http://purl.org/net/ns/ontology-annot#"
    xmlns:owl="http://www.w3.org/2002/07/owl#"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
@@ -15,7 +16,7 @@
   <owl:Ontology rdf:about="http://www.w3.org/ns/odrl/2/">
     <dct:contributor>ODRL Community Group</dct:contributor>
     <dct:creator>Mo McRoberts (BBC)</dct:creator>
-    <dct:creator>Víctor Rodríguez Doncel</dct:creator>
+    <dct:creator>Víctor Rodríguez Doncel (OEG-UPM)</dct:creator>
     <dct:description xml:lang="en">The Open Digital Rights Language (ODRL) provides flexible and interoperable mechanisms to support transparent and innovative use of digital content in publishing, distribution, and consumption of of digital media across all sectors and communities. The ODRL Policy model is broad enough to support traditional rights expressions for commercial transaction, open access expressions for publicly distributed content, and privacy expressions for social media.</dct:description>
     <vann:example rdf:resource="http://www.w3.org/ns/odrl/2/Asset"/>
     <vann:preferredNamespacePrefix>odrl</vann:preferredNamespacePrefix>
@@ -301,11 +302,12 @@
     <skos:hasTopConcept rdf:resource="http://www.w3.org/ns/odrl/2/write"/>
   </skos:ConceptScheme>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/adHocShare">
+    <ont:deprecatedBy rdf:resource="http://www.openmobilealliance.com/oma-dd/adhoc-share"/>
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
     <rdfs:comment xml:lang="en">The act of sharing the asset to parties in close proximity to the owner. This action may be used to express [OMA] Sharing semantics.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">Ad-hoc sharing</rdfs:label>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
   </Action>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/aggregate">
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
@@ -361,18 +363,20 @@
     <vs:term_status>testing</vs:term_status>
   </rdf:Property>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/attachPolicy">
+    <ont:deprecatedBy rdf:resource="http://creativecommons.org/ns#Notice"/>
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
     <rdfs:comment xml:lang="en">The act of keeping the policy notice with the asset.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">Attach policy</rdfs:label>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
   </Action>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/attachSource">
+    <ont:deprecatedBy rdf:resource="http://creativecommons.org/ns#SourceCode"/>
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
     <rdfs:comment xml:lang="en">The act of attaching the source of the asset and its derivatives.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">Attach source</rdfs:label>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
   </Action>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/attribute">
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
@@ -390,11 +394,12 @@
     <vs:term_status>testing</vs:term_status>
   </rdf:Property>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/commercialize">
+    <ont:deprecatedBy rdf:resource="http://creativecommons.org/ns#CommercialUse"/>
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
     <rdfs:comment xml:lang="en">The act of using the asset in a business environment.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">Commercialize</rdfs:label>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
   </Action>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/concurrentUse">
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
@@ -594,27 +599,30 @@
     <vs:term_status>testing</vs:term_status>
   </Action>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/extractChar">
+    <ont:deprecatedBy rdf:resource="http://www.editeur.org/onix-pl/extract-char"/>
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
     <rdfs:comment xml:lang="en">The act of extracting (replicating) unchanged character(s) from the asset.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">Extract character</rdfs:label>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
     <skos:broader rdf:resource="http://www.w3.org/ns/odrl/2/extract"/>
   </Action>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/extractPage">
+    <ont:deprecatedBy rdf:resource="http://www.editeur.org/onix-pl/extract-word"/>
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
     <rdfs:comment xml:lang="en">The act of extracting (replicating) unchanged page(s) from the asset.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">Extract page</rdfs:label>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
     <skos:broader rdf:resource="http://www.w3.org/ns/odrl/2/extract"/>
   </Action>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/extractWord">
+    <ont:deprecatedBy rdf:resource="http://www.editeur.org/onix-pl/extract-page"/>
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
     <rdfs:comment xml:lang="en">The act of extracting (replicating) unchanged word(s) from the asset.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">Extract word</rdfs:label>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
     <skos:broader rdf:resource="http://www.w3.org/ns/odrl/2/extract"/>
   </Action>
   <rdf:Property rdf:about="http://www.w3.org/ns/odrl/2/fileFormat">
@@ -1033,12 +1041,13 @@
     <vs:term_status>testing</vs:term_status>
   </rdf:Property>
   <rdf:Property rdf:about="http://www.w3.org/ns/odrl/2/proximity">
+    <ont:deprecatedBy rdf:resource="http://www.openmobilealliance.com/oma-dd/proximity"/>
     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
     <rdfs:comment xml:lang="en">An value indicating the closeness or nearness.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">proximity</rdfs:label>
     <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/rightOperand"/>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
   </rdf:Property>
   <rdf:Property rdf:about="http://www.w3.org/ns/odrl/2/purpose">
     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
@@ -1132,18 +1141,20 @@
     <vs:term_status>testing</vs:term_status>
   </Action>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/share">
+    <ont:deprecatedBy rdf:resource="http://creativecommons.org/ns#Distribution"/>
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
     <rdfs:comment xml:lang="en">The act of the non-commercial reproduction and distribution of the asset to third-parties.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">Share</rdfs:label>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
   </Action>
   <Action rdf:about="http://www.w3.org/ns/odrl/2/shareAlike">
+    <ont:deprecatedBy rdf:resource="http://creativecommons.org/ns#ShareAlike"/>
     <rdf:type rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
     <rdfs:comment xml:lang="en">The act of distributing any derivative asset under the same terms as the original asset.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">Share-alike</rdfs:label>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
   </Action>
   <rdf:Property rdf:about="http://www.w3.org/ns/odrl/2/spatial">
     <rdfs:comment xml:lang="en">A code representing a geospatial area.</rdfs:comment>
@@ -1201,13 +1212,14 @@
     <vs:term_status>testing</vs:term_status>
   </rdf:Property>
   <rdf:Property rdf:about="http://www.w3.org/ns/odrl/2/timedCount">
+    <ont:deprecatedBy rdf:resource="http://www.openmobilealliance.com/oma-dd/timed-count"/>
     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
     <rdfs:comment xml:lang="en">The number of seconds after which timed metering use of the asset begins.</rdfs:comment>
     <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/odrl/2/"/>
     <rdfs:label xml:lang="en">timed count</rdfs:label>
     <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
     <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/odrl/2/rightOperand"/>
-    <vs:term_status>testing</vs:term_status>
+    <vs:term_status>deprecated</vs:term_status>
   </rdf:Property>
   <rdf:Property rdf:about="http://www.w3.org/ns/odrl/2/trackingParty">
     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
--- a/2/ODRL20.ttl	Mon May 12 10:45:08 2014 +0100
+++ b/2/ODRL20.ttl	Mon May 12 10:45:51 2014 +0100
@@ -12,6 +12,7 @@
 @prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .
 @prefix voaf: <http://purl.org/vocommons/voaf#> .
 @prefix vann: <http://purl.org/vocab/vann/> .
+@prefix ont: <http://purl.org/net/ns/ontology-annot#> .
 
 odrl:
 	a owl:Ontology , voaf:Vocabulary ;
@@ -20,7 +21,7 @@
 	vann:preferredNamespaceUri <http://w3.org/ns/odrl/2/> ;
 	vann:preferredNamespacePrefix "odrl" ;
 	vann:example :Asset ;
-	dct:creator "Mo McRoberts (BBC)", "Víctor Rodríguez Doncel" ;
+	dct:creator "Mo McRoberts (BBC)", "Víctor Rodríguez Doncel (OEG-UPM)" ;
 	dct:contributor "ODRL Community Group" ;
 	dct:description "The Open Digital Rights Language (ODRL) provides flexible and interoperable mechanisms to support transparent and innovative use of digital content in publishing, distribution, and consumption of of digital media across all sectors and communities. The ODRL Policy model is broad enough to support traditional rights expressions for commercial transaction, open access expressions for publicly distributed content, and privacy expressions for social media."@en .
 
@@ -448,12 +449,6 @@
 	rdfs:label "Accept tracking"@en ;
 	rdfs:comment "The act of accepting that the use of the asset may be recorded. The collected information may be tracked by the assigner, or may link to a Party with role function 'trackingParty'."@en .
 
-:adHocShare
-	a :Action, skos:Concept ;
-	rdfs:isDefinedBy odrl: ;
-	vs:term_status "testing" ;
-	rdfs:label "Ad-hoc sharing"@en ;
-	rdfs:comment "The act of sharing the asset to parties in close proximity to the owner. This action may be used to express [OMA] Sharing semantics."@en .
 
 :aggregate
 	a :Action, skos:Concept ;
@@ -490,20 +485,6 @@
 	rdfs:label "Archive"@en ;
 	rdfs:comment "The act of persistently storing the asset."@en .
 
-:attachPolicy
-	a :Action, skos:Concept ;
-	rdfs:isDefinedBy odrl: ;
-	vs:term_status "testing" ;
-	rdfs:label "Attach policy"@en ;
-	rdfs:comment "The act of keeping the policy notice with the asset."@en .
-
-:attachSource
-	a :Action, skos:Concept ;
-	rdfs:isDefinedBy odrl: ;
-	vs:term_status "testing" ;
-	rdfs:label "Attach source"@en ;
-	rdfs:comment "The act of attaching the source of the asset and its derivatives."@en .
-
 :attribute
 	a :Action, skos:Concept ;
 	rdfs:isDefinedBy odrl: ;
@@ -511,13 +492,6 @@
 	rdfs:label "Attribute"@en ;
 	rdfs:comment "The act of attributing the asset to a party."@en .
 
-:commercialize
-	a :Action, skos:Concept ;
-	rdfs:isDefinedBy odrl: ;
-	vs:term_status "testing" ;
-	rdfs:label "Commercialize"@en ;
-	rdfs:comment "The act of using the asset in a business environment."@en .
-
 :concurrentUse
 	a :Action, skos:Concept ;
 	rdfs:isDefinedBy odrl: ;
@@ -593,30 +567,6 @@
 	rdfs:label "Extract"@en ;
 	rdfs:comment "The act of extracting (replicating) unchanged parts of the asset."@en .
 
-:extractChar
-	a :Action, skos:Concept ;
-	rdfs:isDefinedBy odrl: ;
-	skos:broader :extract ;
-	vs:term_status "testing" ;
-	rdfs:label "Extract character"@en ;
-	rdfs:comment "The act of extracting (replicating) unchanged character(s) from the asset."@en .
-
-:extractPage
-	a :Action, skos:Concept ;
-	rdfs:isDefinedBy odrl: ;
-	skos:broader :extract ;
-	vs:term_status "testing" ;
-	rdfs:label "Extract page"@en ;
-	rdfs:comment "The act of extracting (replicating) unchanged page(s) from the asset."@en .
-
-:extractWord
-	a :Action, skos:Concept ;
-	rdfs:isDefinedBy odrl: ;
-	skos:broader :extract ;
-	vs:term_status "testing" ;
-	rdfs:label "Extract word"@en ;
-	rdfs:comment "The act of extracting (replicating) unchanged word(s) from the asset."@en .
-
 :give
 	a :Action, skos:Concept ;
 	rdfs:isDefinedBy odrl: ;
@@ -775,20 +725,6 @@
 	rdfs:label "Sell"@en ;
 	rdfs:comment "The act of trading the asset in exchange of value."@en .
 
-:share
-	a :Action, skos:Concept ;
-	rdfs:isDefinedBy odrl: ;
-	vs:term_status "testing" ;
-	rdfs:label "Share"@en ;
-	rdfs:comment "The act of the non-commercial reproduction and distribution of the asset to third-parties."@en .
-
-:shareAlike
-	a :Action, skos:Concept ;
-	rdfs:isDefinedBy odrl: ;
-	vs:term_status "testing" ;
-	rdfs:label "Share-alike"@en ;
-	rdfs:comment "The act of distributing any derivative asset under the same terms as the original asset."@en .
-
 :textToSpeech
 	a :Action, skos:Concept ;
 	rdfs:isDefinedBy odrl: ;
@@ -973,14 +909,6 @@
 	rdfs:comment "The specified Product or Service name."@en ;
 	rdfs:range xsd:string .
 
-:proximity
-    a rdf:Property , owl:DatatypeProperty ;
-	rdfs:isDefinedBy odrl: ;
-	rdfs:subPropertyOf :rightOperand ;
-	vs:term_status "testing" ;
-	rdfs:label "proximity"@en ;
-	rdfs:comment "An value indicating the closeness or nearness."@en .
-
 :purpose
     a rdf:Property , owl:ObjectProperty ;
 	rdfs:isDefinedBy odrl: ;
@@ -1038,15 +966,6 @@
 	rdfs:label "system"@en ;
 	rdfs:comment "An identifiable computing system."@en .
 
-:timedCount
-    a rdf:Property , owl:DatatypeProperty ;
-	rdfs:isDefinedBy odrl: ;
-	rdfs:subPropertyOf :rightOperand ;
-	vs:term_status "testing" ;
-	rdfs:label "timed count"@en ;
-	rdfs:comment "The number of seconds after which timed metering use of the asset begins."@en ;
-	rdfs:range rdfs:Literal .	
-
 :timeInterval
     a rdf:Property , owl:DatatypeProperty ;
 	rdfs:isDefinedBy odrl: ;
@@ -1231,3 +1150,99 @@
 	vs:term_status "testing" ;
 	rdfs:label "Individual"@en ;
 	rdfs:comment "Specifies that the scope of the relationship is the single Party individual."@en .
+
+## Deprecated terms
+
+:adHocShare
+	a :Action, skos:Concept ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://www.openmobilealliance.com/oma-dd/adhoc-share> ;
+	rdfs:label "Ad-hoc sharing"@en ;
+	rdfs:comment "The act of sharing the asset to parties in close proximity to the owner. This action may be used to express [OMA] Sharing semantics."@en .
+
+:extractChar
+	a :Action, skos:Concept ;
+	skos:broader :extract ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://www.editeur.org/onix-pl/extract-char> ;
+	rdfs:label "Extract character"@en ;
+	rdfs:comment "The act of extracting (replicating) unchanged character(s) from the asset."@en .
+
+:extractPage
+	a :Action, skos:Concept ;
+	skos:broader :extract ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://www.editeur.org/onix-pl/extract-word> ;
+	rdfs:label "Extract page"@en ;
+	rdfs:comment "The act of extracting (replicating) unchanged page(s) from the asset."@en .
+
+:extractWord
+	a :Action, skos:Concept ;
+	skos:broader :extract ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://www.editeur.org/onix-pl/extract-page> ;
+	rdfs:label "Extract word"@en ;
+	rdfs:comment "The act of extracting (replicating) unchanged word(s) from the asset."@en .
+
+:attachPolicy
+	a :Action, skos:Concept ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://creativecommons.org/ns#Notice> ;
+	rdfs:label "Attach policy"@en ;
+	rdfs:comment "The act of keeping the policy notice with the asset."@en .
+
+:attachSource
+	a :Action, skos:Concept ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://creativecommons.org/ns#SourceCode> ;
+	rdfs:label "Attach source"@en ;
+	rdfs:comment "The act of attaching the source of the asset and its derivatives."@en .
+
+:shareAlike
+	a :Action, skos:Concept ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://creativecommons.org/ns#ShareAlike> ;
+	rdfs:label "Share-alike"@en ;
+	rdfs:comment "The act of distributing any derivative asset under the same terms as the original asset."@en .
+
+:commercialize
+	a :Action, skos:Concept ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://creativecommons.org/ns#CommercialUse> ;
+	rdfs:label "Commercialize"@en ;
+	rdfs:comment "The act of using the asset in a business environment."@en .
+
+:share
+	a :Action, skos:Concept ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://creativecommons.org/ns#Distribution> ;
+	rdfs:label "Share"@en ;
+	rdfs:comment "The act of the non-commercial reproduction and distribution of the asset to third-parties."@en .
+
+:proximity
+    a rdf:Property , owl:DatatypeProperty ;
+	rdfs:subPropertyOf :rightOperand ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://www.openmobilealliance.com/oma-dd/proximity> ;
+	rdfs:label "proximity"@en ;
+	rdfs:comment "An value indicating the closeness or nearness."@en .
+
+:timedCount
+    a rdf:Property , owl:DatatypeProperty ;
+	rdfs:subPropertyOf :rightOperand ;
+	rdfs:isDefinedBy odrl: ;
+	vs:term_status "deprecated" ;
+	ont:deprecatedBy <http://www.openmobilealliance.com/oma-dd/timed-count> ;
+	rdfs:label "timed count"@en ;
+	rdfs:comment "The number of seconds after which timed metering use of the asset begins."@en ;
+	rdfs:range rdfs:Literal .