- From: simon via GitHub <sysbot+gh@w3.org>
- Date: Wed, 03 May 2017 10:42:52 +0000
- To: public-poe-archives@w3.org
@aisaac
> It seems that because of the latest changes on POE constraint language, especially the operands (http://w3c.github.io/poe/model/#constraint ), the example we've written is now wrong. Can you confirm this?
yes, as of now it should look like this ->
```turtle
:policy1 a odrl:Offer, dqv:QualityPolicy ;
odrl:permission [
a odrl:Permission ;
odrl:target :myDataset ;
odrl:action odrl:read ;
odrl:assigner :serviceProvider;
odrl:duty [
a odrl:Duty;
odrl:assignee :serviceProvider;
odrl:target :myDatasetSparqlDistribution ;
odrl:constraint [
a odrl:Constraint ;
prov:wasDerivedFrom :sparqlEndpointUptime;
odrl:leftOperand odrl:percentage ;
odrl:operator odrl:gteq ;
odrl:rightOperand "99"^^xsd:double ;
]
]
]
```
.
--
GitHub Notification of comment by simonstey
Please view or discuss this issue at https://github.com/w3c/poe/issues/159#issuecomment-298877521 using your GitHub account
Received on Wednesday, 3 May 2017 10:42:58 UTC