Skip to content

Commit

Permalink
Fixed the compensate examples #38
Browse files Browse the repository at this point in the history
Added comment to odrl:datatype to use rdf;datatype if appropriate
  • Loading branch information
riannella committed Nov 10, 2016
1 parent 8b22323 commit b81d4fa
Show file tree
Hide file tree
Showing 16 changed files with 30 additions and 28 deletions.
3 changes: 2 additions & 1 deletion vocab/ODRL22.ttl
Expand Up @@ -626,7 +626,8 @@ odrl:
rdfs:domain :Constraint ;
rdfs:range rdfs:Resource ;
rdfs:label "Datatype"@en ;
skos:definition "The datatype used for the constraint value."@en .
skos:definition "The datatype used for the constraint value."@en ;
rdfs:comment "In RDF encodings, use of the rdf:datatype MAY be used".

:operator
a rdf:Property , owl:ObjectProperty ;
Expand Down
2 changes: 1 addition & 1 deletion vocab/config.js
@@ -1,7 +1,7 @@
var respecConfig = {
specStatus: "ED",
shortName: "vocab-odrl",
publishDate: "2016-11-08",
publishDate: "2016-11-10",
edDraftURI: "https://w3c.github.io/poe/vocab/",
editors: [
{ name: "Renato Iannella",
Expand Down
2 changes: 1 addition & 1 deletion vocab/examples/example2.html
@@ -1 +1 @@
<p>The following shows the instance of an <code>offer</code> <code>Policy</code>. The <code>offer</code> contains the music file <code>http//example.com/music:4545</code> that is offered by the <code>Party</code> <code>http//example.com/sony:10</code> with the <code>Permission</code>s to <code>play</code> and <code>copy</code> the file. The <code>Permission</code> <code>copy</code> is only granted once. The two <code>Permission</code>s are offered for a payment of AUD$0.50.</p>
<p>The following shows the instance of an <code>offer</code> <code>Policy</code>. The <code>offer</code> contains the music file <code>http//example.com/music:4545</code> that is offered by the <code>Party</code> <code>http//example.com/sony:10</code> with the <code>Permission</code>s to <code>play</code> and <code>copy</code> the file. The <code>Permission</code> <code>copy</code> is only granted once. The two <code>Permission</code>s are offered for a compensation of AUD$0.50.</p>
2 changes: 1 addition & 1 deletion vocab/examples/example2.nt
Expand Up @@ -20,6 +20,6 @@ _:genid4 <http://www.w3.org/ns/odrl/2/payAmount> "50.00"^^<http://www.w3.org/200
_:genid4 <http://www.w3.org/ns/odrl/2/operator> <http://www.w3.org/ns/odrl/2/eq> .
_:genid4 <http://www.w3.org/ns/odrl/2/unit> <http://cvx.iptc.org/iso4217a:AUD> .
_: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/action> <http://www.w3.org/ns/odrl/2/compensate> .
_:requirements <http://www.w3.org/ns/odrl/2/constraint> _:genid4 .
<http://example.com/sony:10> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/ns/odrl/2/Party> .
2 changes: 1 addition & 1 deletion vocab/examples/example2.rdf
Expand Up @@ -28,7 +28,7 @@
</odrl:Offer>
<odrl:Party rdf:about="http://example.com/sony:10"/>
<odrl:Duty rdf:nodeID="requirements">
<odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/pay"/>
<odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/compensate"/>
<odrl:constraint>
<odrl:Constraint>
<odrl:operator rdf:resource="http://www.w3.org/ns/odrl/2/eq"/>
Expand Down
2 changes: 1 addition & 1 deletion vocab/examples/example2.ttl
Expand Up @@ -24,7 +24,7 @@

_:requirements
a odrl:Duty ;
odrl:action odrl:pay ;
odrl:action odrl:compensate ;
odrl:constraint [
a odrl:Constraint ;
odrl:payAmount 50.00 ;
Expand Down
2 changes: 1 addition & 1 deletion vocab/examples/example2.xml
Expand Up @@ -8,7 +8,7 @@
<o:party uid="http://example.com/sony:10"
function="http://www.w3.org/ns/odrl/2/assigner"/>
<o:duty uid="d1">
<o:action name="http://www.w3.org/ns/odrl/2/pay"/>
<o:action name="http://www.w3.org/ns/odrl/2/compensate"/>
<o:constraint name="http://www.w3.org/ns/odrl/2/payAmount"
operator="http://www.w3.org/ns/odrl/2/eq"
rightOperand="0.50" dataType="http://www.w3.org/2001/XMLSchema:decimal"
Expand Down
2 changes: 1 addition & 1 deletion vocab/examples/example3.nt
Expand Up @@ -21,7 +21,7 @@ _:genid4 <http://www.w3.org/ns/odrl/2/payAmount> "50.00"^^<http://www.w3.org/200
_:genid4 <http://www.w3.org/ns/odrl/2/operator> <http://www.w3.org/ns/odrl/2/eq> .
_:genid4 <http://www.w3.org/ns/odrl/2/unit> <http://cvx.iptc.org/iso4217a:AUD> .
_: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/action> <http://www.w3.org/ns/odrl/2/compensate> .
_:requirements <http://www.w3.org/ns/odrl/2/constraint> _:genid4 .
<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> .
2 changes: 1 addition & 1 deletion vocab/examples/example3.rdf
Expand Up @@ -31,7 +31,7 @@
</odrl:Agreement>
<odrl:Party rdf:about="http://example.com/sony:10"/>
<odrl:Duty rdf:nodeID="requirements">
<odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/pay"/>
<odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/compensate"/>
<odrl:constraint>
<odrl:Constraint>
<odrl:operator rdf:resource="http://www.w3.org/ns/odrl/2/eq"/>
Expand Down
2 changes: 1 addition & 1 deletion vocab/examples/example3.ttl
Expand Up @@ -25,7 +25,7 @@

_:requirements
a odrl:Duty ;
odrl:action odrl:pay ;
odrl:action odrl:compensate ;
odrl:constraint [
a odrl:Constraint ;
odrl:payAmount 50.00 ;
Expand Down
2 changes: 1 addition & 1 deletion vocab/examples/example3.xml
Expand Up @@ -10,7 +10,7 @@
<o:party uid="http://example.com/billie:888"
function="http://www.w3.org/ns/odrl/2/assignee"/>
<o:duty uid="d1">
<o:action name="http://www.w3.org/ns/odrl/2/pay"/>
<o:action name="http://www.w3.org/ns/odrl/2/compensate"/>
<o:constraint name="http://www.w3.org/ns/odrl/2/payAmount"
operator="http://www.w3.org/ns/odrl/2/eq" rightOperand="0.50"
dataType="http://www.w3.org/2001/XMLSchema:decimal"
Expand Down
2 changes: 1 addition & 1 deletion vocab/examples/example6.nt
Expand Up @@ -15,7 +15,7 @@ _:genid3 <http://www.w3.org/ns/odrl/2/payAmount> "1000.00"^^<http://www.w3.org/2
_: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/unit> <http://cvx.iptc.org/iso4217a:EUR> .
<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/action> <http://www.w3.org/ns/odrl/2/compensate> .
<http://example.com/duty:01> <http://www.w3.org/ns/odrl/2/constraint> _:genid3 .
<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> .
Expand Down
2 changes: 1 addition & 1 deletion vocab/examples/example6.rdf
Expand Up @@ -3,7 +3,7 @@
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://www.w3.org/ns/odrl/2/pay"/>
<odrl:action rdf:resource="http://www.w3.org/ns/odrl/2/compensate"/>
<odrl:constraint>
<odrl:Constraint>
<odrl:operator rdf:resource="http://www.w3.org/ns/odrl/2/eq"/>
Expand Down
2 changes: 1 addition & 1 deletion vocab/examples/example6.ttl
Expand Up @@ -17,7 +17,7 @@

<http://example.com/duty:01>
a odrl:Duty ;
odrl:action odrl:pay ;
odrl:action odrl:compensate ;
odrl:constraint [
a odrl:Constraint ;
odrl:payAmount 1000.00 ;
Expand Down
2 changes: 1 addition & 1 deletion vocab/examples/example6.xml
Expand Up @@ -11,7 +11,7 @@
<o:party uid="http://example.com/sony:99"
function="http://www.w3.org/ns/odrl/2/assigner"/>
<o:duty uid="d1">
<o:action name="http://www.w3.org/ns/odrl/2/pay"/>
<o:action name="http://www.w3.org/ns/odrl/2/compensate"/>
<o:constraint name="http://www.w3.org/ns/odrl/2/payAmount"
operator="http://www.w3.org/ns/odrl/2/eq" rightOperand="1000.00"
dataType="http://www.w3.org/2001/XMLSchema:decimal"
Expand Down
27 changes: 14 additions & 13 deletions vocab/index.html
Expand Up @@ -639,6 +639,7 @@ <h2>Vocabulary</h2>
<tr><th>Definition:</th> <td>The datatype used for the constraint value.</td></tr>
<tr><th>Label:</th> <td>Datatype</td></tr>
<tr><th>Identifier:</th> <td><a href="http://www.w3.org/ns/odrl/2/dataType">http://www.w3.org/ns/odrl/2/dataType</a></td></tr>
<tr><th>Comment:</th> <td>In RDF encodings, use of the rdf:datatype MAY be used</td></tr>
<tr><th>Range:</th> <td><a href="http://www.w3.org/2000/01/rdf-schema#Resource">rdfs:Resource</a></td></tr>
<tr><th>Domain:</th> <td><a href="#term-Constraint">Constraint</a></td></tr>
</table>
Expand Down Expand Up @@ -1341,7 +1342,7 @@ <h2>Scenarios - Encoding Examples</h2>
&lt;http://example.com/policy:0099&gt; &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;http://www.w3.org/ns/odrl/2/Set&gt; .
&lt;http://example.com/policy:0099&gt; &lt;http://www.w3.org/ns/odrl/2/permission&gt; _:genid1 .
&lt;http://example.com/policy:0099&gt; &lt;http://www.w3.org/ns/odrl/2/prohibition&gt; _:genid2 .
</pre></div></section><section id="sc-example2"><h3>Offer</h3><p>The following shows the instance of an <code>offer</code> <code>Policy</code>. The <code>offer</code> contains the music file <code>http//example.com/music:4545</code> that is offered by the <code>Party</code> <code>http//example.com/sony:10</code> with the <code>Permission</code>s to <code>play</code> and <code>copy</code> the file. The <code>Permission</code> <code>copy</code> is only granted once. The two <code>Permission</code>s are offered for a payment of AUD$0.50.</p><div class="nanotabs"><ul><li><a href="#sc-example2-ttl" class="selected">Turtle</a></li><li><a href="#sc-example2-xml" class="selected">XML</a></li><li><a href="#sc-example2-rdf" class="selected">RDF/XML</a></li><li><a href="#sc-example2-nt" class="selected">N-Triples</a></li></ul></div><div id="sc-example2-ttl" style="display: block;"><pre class="example highlight ttl">@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
</pre></div></section><section id="sc-example2"><h3>Offer</h3><p>The following shows the instance of an <code>offer</code> <code>Policy</code>. The <code>offer</code> contains the music file <code>http//example.com/music:4545</code> that is offered by the <code>Party</code> <code>http//example.com/sony:10</code> with the <code>Permission</code>s to <code>play</code> and <code>copy</code> the file. The <code>Permission</code> <code>copy</code> is only granted once. The two <code>Permission</code>s are offered for a compensation of AUD$0.50.</p><div class="nanotabs"><ul><li><a href="#sc-example2-ttl" class="selected">Turtle</a></li><li><a href="#sc-example2-xml" class="selected">XML</a></li><li><a href="#sc-example2-rdf" class="selected">RDF/XML</a></li><li><a href="#sc-example2-nt" class="selected">N-Triples</a></li></ul></div><div id="sc-example2-ttl" style="display: block;"><pre class="example highlight ttl">@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .

&lt;http://example.com/policy:0231&gt;
a odrl:Offer ;
Expand All @@ -1367,7 +1368,7 @@ <h2>Scenarios - Encoding Examples</h2>

_:requirements
a odrl:Duty ;
odrl:action odrl:pay ;
odrl:action odrl:compensate ;
odrl:constraint [
a odrl:Constraint ;
odrl:payAmount 50.00 ;
Expand All @@ -1386,7 +1387,7 @@ <h2>Scenarios - Encoding Examples</h2>
&lt;o:party uid=&quot;http://example.com/sony:10&quot;
function=&quot;http://www.w3.org/ns/odrl/2/assigner&quot;/&gt;
&lt;o:duty uid=&quot;d1&quot;&gt;
&lt;o:action name=&quot;http://www.w3.org/ns/odrl/2/pay&quot;/&gt;
&lt;o:action name=&quot;http://www.w3.org/ns/odrl/2/compensate&quot;/&gt;
&lt;o:constraint name=&quot;http://www.w3.org/ns/odrl/2/payAmount&quot;
operator=&quot;http://www.w3.org/ns/odrl/2/eq&quot;
rightOperand=&quot;0.50&quot; dataType=&quot;http://www.w3.org/2001/XMLSchema:decimal&quot;
Expand Down Expand Up @@ -1434,7 +1435,7 @@ <h2>Scenarios - Encoding Examples</h2>
&lt;/odrl:Offer&gt;
&lt;odrl:Party rdf:about=&quot;http://example.com/sony:10&quot;/&gt;
&lt;odrl:Duty rdf:nodeID=&quot;requirements&quot;&gt;
&lt;odrl:action rdf:resource=&quot;http://www.w3.org/ns/odrl/2/pay&quot;/&gt;
&lt;odrl:action rdf:resource=&quot;http://www.w3.org/ns/odrl/2/compensate&quot;/&gt;
&lt;odrl:constraint&gt;
&lt;odrl:Constraint&gt;
&lt;odrl:operator rdf:resource=&quot;http://www.w3.org/ns/odrl/2/eq&quot;/&gt;
Expand Down Expand Up @@ -1466,7 +1467,7 @@ <h2>Scenarios - Encoding Examples</h2>
_:genid4 &lt;http://www.w3.org/ns/odrl/2/operator&gt; &lt;http://www.w3.org/ns/odrl/2/eq&gt; .
_:genid4 &lt;http://www.w3.org/ns/odrl/2/unit&gt; &lt;http://cvx.iptc.org/iso4217a:AUD&gt; .
_:requirements &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;http://www.w3.org/ns/odrl/2/Duty&gt; .
_:requirements &lt;http://www.w3.org/ns/odrl/2/action&gt; &lt;http://www.w3.org/ns/odrl/2/pay&gt; .
_:requirements &lt;http://www.w3.org/ns/odrl/2/action&gt; &lt;http://www.w3.org/ns/odrl/2/compensate&gt; .
_:requirements &lt;http://www.w3.org/ns/odrl/2/constraint&gt; _:genid4 .
&lt;http://example.com/sony:10&gt; &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;http://www.w3.org/ns/odrl/2/Party&gt; .
</pre></div></section><section id="sc-example3"><h3>Agreement</h3><p>The following shows the instance of an <code>agreement</code> <code>Policy</code>. The <code>agreement</code> contains all entities shown in the <code>offer</code> scenario above. A new <code>Party</code> element <code>http//example.com/billie:888</code> has been added. This <code>Party</code> accepted the previous <code>offer</code> and thus is now the buyer of the <code>Permission</code> <code>play</code> and <code>copy</code>, i.e. is now linked as <code>assignee</code> of the <code>Permission</code>s and <code>Duty</code> entities.</p><div class="nanotabs"><ul><li><a href="#sc-example3-ttl" class="selected">Turtle</a></li><li><a href="#sc-example3-xml" class="selected">XML</a></li><li><a href="#sc-example3-rdf" class="selected">RDF/XML</a></li><li><a href="#sc-example3-nt" class="selected">N-Triples</a></li></ul></div><div id="sc-example3-ttl" style="display: block;"><pre class="example highlight ttl">@prefix odrl: &lt;http://www.w3.org/ns/odrl/2/&gt; .
Expand Down Expand Up @@ -1496,7 +1497,7 @@ <h2>Scenarios - Encoding Examples</h2>

_:requirements
a odrl:Duty ;
odrl:action odrl:pay ;
odrl:action odrl:compensate ;
odrl:constraint [
a odrl:Constraint ;
odrl:payAmount 50.00 ;
Expand All @@ -1518,7 +1519,7 @@ <h2>Scenarios - Encoding Examples</h2>
&lt;o:party uid=&quot;http://example.com/billie:888&quot;
function=&quot;http://www.w3.org/ns/odrl/2/assignee&quot;/&gt;
&lt;o:duty uid=&quot;d1&quot;&gt;
&lt;o:action name=&quot;http://www.w3.org/ns/odrl/2/pay&quot;/&gt;
&lt;o:action name=&quot;http://www.w3.org/ns/odrl/2/compensate&quot;/&gt;
&lt;o:constraint name=&quot;http://www.w3.org/ns/odrl/2/payAmount&quot;
operator=&quot;http://www.w3.org/ns/odrl/2/eq&quot; rightOperand=&quot;0.50&quot;
dataType=&quot;http://www.w3.org/2001/XMLSchema:decimal&quot;
Expand Down Expand Up @@ -1571,7 +1572,7 @@ <h2>Scenarios - Encoding Examples</h2>
&lt;/odrl:Agreement&gt;
&lt;odrl:Party rdf:about=&quot;http://example.com/sony:10&quot;/&gt;
&lt;odrl:Duty rdf:nodeID=&quot;requirements&quot;&gt;
&lt;odrl:action rdf:resource=&quot;http://www.w3.org/ns/odrl/2/pay&quot;/&gt;
&lt;odrl:action rdf:resource=&quot;http://www.w3.org/ns/odrl/2/compensate&quot;/&gt;
&lt;odrl:constraint&gt;
&lt;odrl:Constraint&gt;
&lt;odrl:operator rdf:resource=&quot;http://www.w3.org/ns/odrl/2/eq&quot;/&gt;
Expand Down Expand Up @@ -1604,7 +1605,7 @@ <h2>Scenarios - Encoding Examples</h2>
_:genid4 &lt;http://www.w3.org/ns/odrl/2/operator&gt; &lt;http://www.w3.org/ns/odrl/2/eq&gt; .
_:genid4 &lt;http://www.w3.org/ns/odrl/2/unit&gt; &lt;http://cvx.iptc.org/iso4217a:AUD&gt; .
_:requirements &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;http://www.w3.org/ns/odrl/2/Duty&gt; .
_:requirements &lt;http://www.w3.org/ns/odrl/2/action&gt; &lt;http://www.w3.org/ns/odrl/2/pay&gt; .
_:requirements &lt;http://www.w3.org/ns/odrl/2/action&gt; &lt;http://www.w3.org/ns/odrl/2/compensate&gt; .
_:requirements &lt;http://www.w3.org/ns/odrl/2/constraint&gt; _:genid4 .
&lt;http://example.com/sony:10&gt; &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;http://www.w3.org/ns/odrl/2/Party&gt; .
&lt;http://example.com/billie:888&gt; &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;http://www.w3.org/ns/odrl/2/Party&gt; .
Expand Down Expand Up @@ -1723,7 +1724,7 @@ <h2>Scenarios - Encoding Examples</h2>

&lt;http://example.com/duty:01&gt;
a odrl:Duty ;
odrl:action odrl:pay ;
odrl:action odrl:compensate ;
odrl:constraint [
a odrl:Constraint ;
odrl:payAmount 1000.00 ;
Expand Down Expand Up @@ -1758,7 +1759,7 @@ <h2>Scenarios - Encoding Examples</h2>
&lt;o:party uid=&quot;http://example.com/sony:99&quot;
function=&quot;http://www.w3.org/ns/odrl/2/assigner&quot;/&gt;
&lt;o:duty uid=&quot;d1&quot;&gt;
&lt;o:action name=&quot;http://www.w3.org/ns/odrl/2/pay&quot;/&gt;
&lt;o:action name=&quot;http://www.w3.org/ns/odrl/2/compensate&quot;/&gt;
&lt;o:constraint name=&quot;http://www.w3.org/ns/odrl/2/payAmount&quot;
operator=&quot;http://www.w3.org/ns/odrl/2/eq&quot; rightOperand=&quot;1000.00&quot;
dataType=&quot;http://www.w3.org/2001/XMLSchema:decimal&quot;
Expand All @@ -1785,7 +1786,7 @@ <h2>Scenarios - Encoding Examples</h2>
xmlns:odrl=&quot;http://www.w3.org/ns/odrl/2/&quot;
xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
&lt;odrl:Duty rdf:about=&quot;http://example.com/duty:01&quot;&gt;
&lt;odrl:action rdf:resource=&quot;http://www.w3.org/ns/odrl/2/pay&quot;/&gt;
&lt;odrl:action rdf:resource=&quot;http://www.w3.org/ns/odrl/2/compensate&quot;/&gt;
&lt;odrl:constraint&gt;
&lt;odrl:Constraint&gt;
&lt;odrl:operator rdf:resource=&quot;http://www.w3.org/ns/odrl/2/eq&quot;/&gt;
Expand Down Expand Up @@ -1842,7 +1843,7 @@ <h2>Scenarios - Encoding Examples</h2>
_:genid3 &lt;http://www.w3.org/ns/odrl/2/operator&gt; &lt;http://www.w3.org/ns/odrl/2/eq&gt; .
_:genid3 &lt;http://www.w3.org/ns/odrl/2/unit&gt; &lt;http://cvx.iptc.org/iso4217a:EUR&gt; .
&lt;http://example.com/duty:01&gt; &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;http://www.w3.org/ns/odrl/2/Duty&gt; .
&lt;http://example.com/duty:01&gt; &lt;http://www.w3.org/ns/odrl/2/action&gt; &lt;http://www.w3.org/ns/odrl/2/pay&gt; .
&lt;http://example.com/duty:01&gt; &lt;http://www.w3.org/ns/odrl/2/action&gt; &lt;http://www.w3.org/ns/odrl/2/compensate&gt; .
&lt;http://example.com/duty:01&gt; &lt;http://www.w3.org/ns/odrl/2/constraint&gt; _:genid3 .
&lt;http://example.com/duty:02&gt; &lt;http://www.w3.org/1999/02/22-rdf-syntax-ns#type&gt; &lt;http://www.w3.org/ns/odrl/2/Duty&gt; .
&lt;http://example.com/duty:02&gt; &lt;http://www.w3.org/ns/odrl/2/action&gt; &lt;http://www.w3.org/ns/odrl/2/nextPolicy&gt; .
Expand Down

0 comments on commit b81d4fa

Please sign in to comment.