[poe] Issue: CR IM: JSON of example 20 wrong marked as Model

nitmws has just labeled an issue for https://github.com/w3c/poe as "Model":

== CR IM: JSON of example 20 wrong ==
The JSON of example 20 in the IM CR version has an error, the array of the obligation property is not closed and the final } is missing, should be

```
{
  "@context": "http://www.w3.org/ns/odrl.jsonld",
  "@type": "Agreement",
  "uid": "http://example.com/policy:42",
  "profile": "http://example.com/odrl:profile:09",
  "obligation": [{
      "assigner": "http://example.com/org:43",
      "assignee": "http://example.com/person:44",
      "action": [{
          "rdf:value": {
            "@id": "odrl:compensate"
          },
          "refinement": [
            {
              "leftOperand": "payAmount",
              "operator": "eq",
              "rightOperand": "500.00",
              "unit": "http://dbpedia.org/resource/Euro"
            }]
        }]
    }]
}

```

See https://github.com/w3c/poe/issues/264

Received on Wednesday, 20 September 2017 20:05:42 UTC