diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/federation/federating_with_gotosocial.md | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/federation/federating_with_gotosocial.md b/docs/federation/federating_with_gotosocial.md index 0bc85251e..fe570d670 100644 --- a/docs/federation/federating_with_gotosocial.md +++ b/docs/federation/federating_with_gotosocial.md @@ -236,13 +236,15 @@ Example of a featured collection of a user who has pinned multiple `Note`s: } ``` -Example of a user who has pinned one `Note` (`orderedItems` is just a URL string now!): +Example of a user who has pinned one `Note`: ```json { "@context": "https://www.w3.org/ns/activitystreams", "id": "https://example.org/users/some_user/collections/featured", - "orderedItems": "https://example.org/users/some_user/statuses/01GS7VTYH0S77NNXTP6W4G9EAG", + "orderedItems": [ + "https://example.org/users/some_user/statuses/01GS7VTYH0S77NNXTP6W4G9EAG" + ], "totalItems": 1, "type": "OrderedCollection" } |