Skip to content

Commit e707026

Browse files
committed
Update ERRATA.md
1 parent 4b8b1c8 commit e707026

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

ERRATA.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,3 +80,24 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a
8080
- Unlike `latitude` and `longitude`, the domain of the `altitude` term is the `Object` type. The `altitude` term should be included in the list of properties of an `Object`. Because `altitude` is primarily documented as a property of a `Place`, publishers should not include `altitude` on objects that are not of type `Place`, and consumers should accept objects with this property that aren't of type `Place`.
8181

8282
- The domain of the `attributedTo` property is both `Link` and `Object`. `attributedTo` should be included in the list of properties of a `Link`.
83+
84+
- Example 102 is missing a `type` property on the `Link` value of the `url` property. For clarity, the example should read:
85+
86+
```json
87+
{
88+
"@context": "https://www.w3.org/ns/activitystreams",
89+
"type": "Video",
90+
"name": "Cool New Movie",
91+
"duration": "PT2H30M",
92+
"preview": {
93+
"type": "Video",
94+
"name": "Trailer",
95+
"duration": "PT1M",
96+
"url": {
97+
"type": "Link",
98+
"href": "http://example.org/trailer.mkv",
99+
"mediaType": "video/mkv"
100+
}
101+
}
102+
}
103+
```

0 commit comments

Comments
 (0)