From 635ab24faadbcdeb5a91faaf014350f9109efd04 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Wed, 1 Nov 2023 12:42:42 -0400 Subject: [PATCH 1/4] Update ERRATA.md Add an erratum for the core document that gives a full list of the properties of a link, except `href`, to correct section 4.2. --- ERRATA.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ERRATA.md b/ERRATA.md index 24ed307..357efce 100644 --- a/ERRATA.md +++ b/ERRATA.md @@ -4,7 +4,8 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a ## Activity Streams - - None yet reported. + - Section 4.2 lists the possible properties of a `Link` object. This list omits `nameMap`, `preview`, `attributedTo` + The full list should be: id | name | nameMap | hreflang | mediaType | rel | height | width | preview | attributedTo. ## Activity Vocabulary From 4ee097713f7c1fd82719c2be79cd1a2397a946d2 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 26 Sep 2025 12:34:04 -0400 Subject: [PATCH 2/4] Update ERRATA.md Better list format for Link properties erratum Co-authored-by: Ted Thibodeau Jr --- ERRATA.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ERRATA.md b/ERRATA.md index 357efce..91f4f09 100644 --- a/ERRATA.md +++ b/ERRATA.md @@ -4,7 +4,7 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a ## Activity Streams - - Section 4.2 lists the possible properties of a `Link` object. This list omits `nameMap`, `preview`, `attributedTo` + - Section 4.2 lists the possible properties of a `Link` object. This list omits `nameMap`, `preview`, and `attributedTo`. The full list should be: id | name | nameMap | hreflang | mediaType | rel | height | width | preview | attributedTo. ## Activity Vocabulary From c9f727619e5baed3be649d5944577fbd36dd722e Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 26 Sep 2025 12:34:43 -0400 Subject: [PATCH 3/4] Update ERRATA.md Add code formatting for properties Co-authored-by: Ted Thibodeau Jr --- ERRATA.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ERRATA.md b/ERRATA.md index 91f4f09..0a696dd 100644 --- a/ERRATA.md +++ b/ERRATA.md @@ -5,7 +5,7 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a ## Activity Streams - Section 4.2 lists the possible properties of a `Link` object. This list omits `nameMap`, `preview`, and `attributedTo`. - The full list should be: id | name | nameMap | hreflang | mediaType | rel | height | width | preview | attributedTo. + The full list should be: `id | name | nameMap | hreflang | mediaType | rel | height | width | preview | attributedTo`. ## Activity Vocabulary From 822fa6ec115d7c5e7f29d64bc322e440277ab0bb Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 26 Sep 2025 12:37:04 -0400 Subject: [PATCH 4/4] fix: backticks around properties in Link props erratum --- ERRATA.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ERRATA.md b/ERRATA.md index 0a696dd..17b7ea2 100644 --- a/ERRATA.md +++ b/ERRATA.md @@ -5,7 +5,7 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a ## Activity Streams - Section 4.2 lists the possible properties of a `Link` object. This list omits `nameMap`, `preview`, and `attributedTo`. - The full list should be: `id | name | nameMap | hreflang | mediaType | rel | height | width | preview | attributedTo`. + The full list should be: `id` | `name` | `nameMap` | `hreflang` | `mediaType` | `rel` | `height` | `width` | `preview` | `attributedTo`. ## Activity Vocabulary @@ -26,7 +26,7 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a are only allowed on `Link` objects. One alternative is to use `Link` objects with the correct `height` and `width` as the `url` property for each `Image` object. - + ```json { "@context": "https://www.w3.org/ns/activitystreams", @@ -61,14 +61,14 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a - The range of the `units` property is given as an enumerated set of values. Due to a formatting error, some of these values are shown with an incorrect leading space character. The correct range is: - + ```text "cm" | "feet" | "inches" | "km" | "m" | "miles" | xsd:anyURI ``` - Example 58 includes a `summary` property on a `Mention` object, which is not allowed. A corrected example: - + ```json { "@context": "https://www.w3.org/ns/activitystreams",