Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions ERRATA.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,30 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a

- The domain of the `attributedTo` property is both `Link` and `Object`. `attributedTo` should be included in the list of properties of a `Link`.

- Example 79 has an `Image` object with `width` and `height` properties, which
only indicate `Link` in their Domain. One alternative is to use a `Link` object
with the correct `height` and `width` as the `url` property for each `Image`
object.

```json
{
"@context": "https://www.w3.org/ns/activitystreams",
"summary": "A simple note",
"type": "Note",
"content": "This is all there is.",
"icon": {
"type": "Image",
"name": "Note icon",
"url": {
"href": "http://example.org/note.png",
"type": "Link",
"width": 16,
"height": 16
}
}
}
```

- The Notes for the `to` property do not correctly identify the functionality (one or more) of the values of the property. The notes should read: "Identifies one or more entities that are part of the public primary audience of this Object."

- The Notes for the `bto` property do not correctly identify the functionality (one or more) of the values of the property. The notes should read: "Identifies one or more entities that are part of the private primary audience of this Object."
Expand Down