Re: [poe] ODRL Validation/Validation issues

@riannella The problem is that technically, rightOperand has only one value. The example is better seen as N-TRIPLES.
```
@prefix odrl: <http://www.w3.org/ns/odrl/2/> .
@prefix ex: <http://www.example.com> .

ex:A odrl:rightOperand ("a" "b") .
```
is translated as:
```
_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "a" .
_:genid1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:genid2 .
_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> "b" .
_:genid2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> .
<http://www.example.comA> <http://www.w3.org/ns/odrl/2/rightOperand> _:genid1 
```

There is only one triple using rightOperand

-- 
GitHub Notification of comment by vroddon
Please view or discuss this issue at https://github.com/w3c/poe/issues/261#issuecomment-330850437 using your GitHub account

Received on Wednesday, 20 September 2017 13:25:50 UTC