- From: simon via GitHub <sysbot+gh@w3.org>
- Date: Fri, 12 May 2017 09:38:22 +0000
- To: public-poe-archives@w3.org
simonstey has just labeled an issue for https://github.com/w3c/poe as "bug": == invalid examples == **Example 9:** ```json { "@context": "http://www.w3.org/ns/odrl.jsonld", "@type": "Offer", "uid": "http://example.com/policy:1012", "permission": [{ "target": "http://example.com/music:1012", "action": "play" }] } ``` offer without assigner -------------------- **Example 13:** ```json { "@context": "http://www.w3.org/ns/odrl.jsonld", "@type": "Privacy", "uid": "http://example.com/policy:7777", ... } ``` unsupported policy type -------------------- **Example 23:** ```json { "@context": [ "http://www.w3.org/ns/odrl.jsonld", { "dc": "http://purl.org/dc/terms/" } ], "@type": "Policy", "uid": "http://example.com/policy:8888", "dc:creator": "billie@example.com", "dc:issued": "2017-01-01:12:00", "dc:coverage": "https://www.iso.org/obp/ui/#iso:code:3166:AU-QLD", "dc:replaces": "http://example.com/policy:8887", "permission": [{ }] } ``` what's `"permission": [{ }]` supposed to mean? -------------------- **Example 28:** ```json { "@context": "http://www.w3.org/ns/odrl.jsonld", "@type": "Agreement", "uid": "http://example.com/policy:4444", "inheritFrom": "http://example.com/policy:default", "permission": [{ "target": "http://example.com/asset:5555", "action": [ "archive", "annotate", "display", "print" ], "assignee": "http://example.com/user:0001", "assigner": "http://example.com/org-01" }], "prohibition": [{ "action": "aggregate" }] } ``` missing assigner&assignee for prohibition See https://github.com/w3c/poe/issues/176
Received on Friday, 12 May 2017 09:38:28 UTC