From 5559b6b4c9e04929c89e9f654bfa230bccbba3a8 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 30 Aug 2023 11:41:37 -0400 Subject: [PATCH] Update ERRATA.md Per https://github.com/w3c/activitystreams/issues/510 , the `@vocab` value in example 2 is lacking a terminal #. This addition to the ERRATA.md specifies the correct value. --- ERRATA.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/ERRATA.md b/ERRATA.md index 24ed307..9ae889f 100644 --- a/ERRATA.md +++ b/ERRATA.md @@ -4,7 +4,22 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a ## Activity Streams - - None yet reported. + - Example 2 has an incorrect value for the `@vocab` property. The correct example should be: + + ```json + { + "@context": { + "@vocab": "https://www.w3.org/ns/activitystreams#", + "ext": "https://canine-extension.example/terms/", + "@language": "en" + }, + "summary": "A note", + "type": "Note", + "content": "My dog has fleas.", + "ext:nose": 0, + "ext:smell": "terrible" + } + ``` ## Activity Vocabulary