- From: simon via GitHub <sysbot+gh@w3.org>
- Date: Fri, 30 Jun 2017 05:13:06 +0000
- To: public-poe-archives@w3.org
>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