diff --git a/ERRATA.md b/ERRATA.md index dd8ce00..bcc9b32 100644 --- a/ERRATA.md +++ b/ERRATA.md @@ -138,6 +138,59 @@ This document includes errata for the [Activity Streams](https://www.w3.org/TR/a } ``` + - Example 75 erroneously includes a `summary` property on a `Link` object. The corrected example: + + ```json + { + "@context": "https://www.w3.org/ns/activitystreams", + "summary": "Sally's blog posts", + "type": "Collection", + "totalItems": 3, + "current": { + "type": "Link", + "name": "Most Recent Items", + "href": "http://example.org/collection" + }, + "items": [ + "http://example.org/posts/1", + "http://example.org/posts/2", + "http://example.org/posts/3" + ] + } + ``` + + - Example 77 erroneously includes a `summary` property on a `Link` object. The corrected example: + + ```json + { + "@context": "https://www.w3.org/ns/activitystreams", + "summary": "Sally's blog posts", + "type": "Collection", + "totalItems": 3, + "first": { + "type": "Link", + "name": "First Page", + "href": "http://example.org/collection?page=0" + } + } + ``` + + - Example 87 erroneously includes a `summary` property on a `Link` object. The corrected example: + + ```json + { + "@context": "https://www.w3.org/ns/activitystreams", + "summary": "A collection", + "type": "Collection", + "totalItems": 5, + "last": { + "type": "Link", + "name": "Last Page", + "href": "http://example.org/collection?page=1" + } + } + ``` + - Example 102 is missing a `type` property on the `Link` value of the `url` property. For clarity, the example should read: ```json diff --git a/vocabulary/index.html b/vocabulary/index.html index 51ee4a1..1110680 100644 --- a/vocabulary/index.html +++ b/vocabulary/index.html @@ -265,7 +265,7 @@

Core Types

endTime | generator | icon | - image | + image | inReplyTo | location | preview | @@ -386,7 +386,7 @@

Core Types

actor | - object | + object | target | result | origin | @@ -430,7 +430,7 @@

Core Types

Instances of IntransitiveActivity are a subtype of Activity representing intransitive actions. The - object property is + object property is therefore inappropriate for these activities. @@ -2322,7 +2322,7 @@

Object and Link Types

Describes a relationship between two individuals. The subject and - object properties are + object properties are used to identify the connected individuals.

@@ -2338,8 +2338,8 @@

Object and Link Types

Properties:

subject | - object | - relationship

+ object | + relationship

Inherits all properties from Object.

@@ -2836,7 +2836,7 @@

Properties

closed | origin | next | - object | + object | prev | preview | result | @@ -2870,7 +2870,7 @@

Properties

updated | width | subject | - relationship | + relationship | describes | formerType | deleted @@ -3556,7 +3556,7 @@

Properties

- image + image URI: https://www.w3.org/ns/activitystreams#image @@ -4092,7 +4092,7 @@

Properties

- object + object URI: https://www.w3.org/ns/activitystreams#object @@ -5590,7 +5590,7 @@

Properties

- relationship + relationship URI: https://www.w3.org/ns/activitystreams#relationship @@ -5621,7 +5621,7 @@

Properties

relationship property identifies the kind of relationship that exists between subject and - object. + object. @@ -5980,17 +5980,17 @@

Representing Relationships Between Entities

- The relationship + The relationship property specifies the kind of relationship that exists between the two individuals identified by the subject and - object properties. Used together, + object properties. Used together, these three properties form what is commonly known as a "reified statement" where subject identifies the - subject, relationship + subject, relationship identifies the predicate, and - object identifies the + object identifies the object.

@@ -6868,7 +6868,7 @@

Changelog