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 @@
endTime
|
generator
|
icon
|
- image
|
+ image
|
inReplyTo
|
location
|
preview
|
@@ -386,7 +386,7 @@
actor
|
- object
|
+ object
|
target
|
result
|
origin
|
@@ -430,7 +430,7 @@
IntransitiveActivity
are a subtype of
Activity
representing intransitive actions. The
- object
property is
+ object
property is
therefore inappropriate for these activities.
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 @@
subject
|
- object
|
- relationship
object
|
+ relationship
Inherits all properties from Object
.
closed
|
origin
|
next
|
- object
|
+ object
|
prev
|
preview
|
result
|
@@ -2870,7 +2870,7 @@ updated
|
width
|
subject
|
- relationship
|
+ relationship
|
describes
|
formerType
|
deleted
@@ -3556,7 +3556,7 @@ https://www.w3.org/ns/activitystreams#image
https://www.w3.org/ns/activitystreams#object
https://www.w3.org/ns/activitystreams#relationship
@@ -5621,7 +5621,7 @@ relationship
property identifies the kind of
relationship that exists between
subject
and
- object
.
+ object
.
- 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.
relationship
values for
+ Removed the four normative relationship
values for
lack of implementation. Changed examples to use terms from the
Relationship vocabulary.