Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add erratum for issue 631, changing rel=thumbnail to rel=preview #632

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
22 changes: 21 additions & 1 deletion ERRATA.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,27 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a

## Activity Streams

- None yet reported.
- Section 4.2 "Link" should read, in part, "The link relation of the first is unspecified,
while the link relation of the second is 'preview'." The following example, Example 14,
should be:

```json
{
"@context": "https://www.w3.org/ns/activitystreams",
"type": "Application",
"id": "http://example.org/application/123",
"name": "Exampletron 3000",
"image": [
"http://example.org/application/abc.gif",
{
"type": "Link",
"href": "http://example.org/application/123.png",
"mediaType": "image/png",
"rel": "thumbnail"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

preview here also, surely?

}
]
}
```

## Activity Vocabulary

Expand Down