- From: Michael Steidl via GitHub <sysbot+gh@w3.org>
- Date: Fri, 07 Jul 2017 16:02:12 +0000
- To: public-poe-archives@w3.org
To sort out things:
* a rdf:list is an [RDF Collection](https://www.w3.org/TR/rdf-schema/#ch_collectionvocab): a closed set of items, like an enumaration as used by programming languages. An rdf:list has no order of its members.
* the operator andSequence needs a definition of the operand which must be processed first and only after it is satisfied the second operand may be processed.
* a sequence of members can be defined by RDF:
```
...
"constraint": [{
"operator": "odrl:andSequence" ;
"operand": [
rdf:first <http://example.com/policy:88/C1> ;
rdf:rest [
rdf:first <http://example.com/policy:88/C2>;
rdf:rest rdf:nil ].
] .
}],
....
```
... which is doable but not any easy syntax.
--
GitHub Notification of comment by nitmws
Please view or discuss this issue at https://github.com/w3c/poe/issues/206#issuecomment-313723189 using your GitHub account
Received on Friday, 7 July 2017 16:02:18 UTC