activitystreams
activitystreams copied to clipboard
Example 60 Missing `@context` Property
Please Indicate One:
- [ ] Editorial
- [ ] Question
- [X] Feedback
- [ ] Blocking Issue
- [X] Non-Blocking Issue
Please Describe the Issue:
(I am splitting my email to the public-socialweb mailing list into separate issues, for background please see those emails).
This is ActivityStream vocabulary specific: https://www.w3.org/TR/activitystreams-vocabulary
Example 60 is missing its @context property with value "https://www.w3.org/ns/activitystreams":
{
"type": "OrderedCollection",
"totalItems": 3,
"name": "Vacation photos 2016",
"orderedItems": [
{
"type": "Image",
"id": "http://image.example/1"
},
{
"type": "Tombstone",
"formerType": "Image",
"id": "http://image.example/2",
"deleted": "2016-03-17T00:00:00Z"
},
{
"type": "Image",
"id": "http://image.example/3"
}
]
}
This is an editorial error in the vocabulary document. The best next step is to add a note in the ERRATA about the error.