Re: [poe] EXAMPLE 19 makes no sense

>For the second example above, the single atomic constraint could suffice too:
>```
> odrl:constraint [ 
>            odrl:leftOperand  odrl:media ;
>            odrl:operator odrl:isAnyOf; 
>            odrl:rightOperand "print, online" ;   
>```

true.. I wouldn't use a single string as `odrl:rightOperand` to represent a collection though..

[better](https://www.w3.org/TR/turtle/#collections) -> 
```
 odrl:constraint [ 
            odrl:leftOperand  odrl:media ;
            odrl:operator odrl:isAnyOf ; 
            odrl:rightOperand ( "print" "online" ) ; 
]   
```

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

Received on Friday, 30 June 2017 05:13:13 UTC