Skip to content

Commit 3a5b7fc

Browse files
committed
Merge remote-tracking branch 'origin/correct-vocab-in-core-example-2'
2 parents 8708b75 + 5559b6b commit 3a5b7fc

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

ERRATA.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,23 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a
3030

3131
- Section 5.1 incorrectly refers to the `id` alias for the `@id` property, and the `type` alias of the `@type` property. Paragraph 4 should read, in part, ''In JSON-LD, Compact URI expansion of values applies to properties explicitly defined as "@type": "@id" in the @context definition.''
3232

33+
- Example 2 has an incorrect value for the `@vocab` property. The correct example should be:
34+
35+
```json
36+
{
37+
"@context": {
38+
"@vocab": "https://www.w3.org/ns/activitystreams#",
39+
"ext": "https://canine-extension.example/terms/",
40+
"@language": "en"
41+
},
42+
"summary": "A note",
43+
"type": "Note",
44+
"content": "My dog has fleas.",
45+
"ext:nose": 0,
46+
"ext:smell": "terrible"
47+
}
48+
```
49+
3350
## Activity Vocabulary
3451

3552
- Example 150 has `latitude` and `longitude` properties with string values.

0 commit comments

Comments
 (0)