Created
August 18, 2024 17:04
-
-
Save evanp/86f81773d2a06eac91f67574f004500b to your computer and use it in GitHub Desktop.
Paged collection
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"@context": "https://www.w3.org/ns/activitystreams", | |
"id": "https://example.org/collection1", | |
"type": "Collection", | |
"first": { | |
"type": "CollectionPage", | |
"id": "https://example.org/collection1/page1", | |
"items": [ | |
{ | |
"type": "Note", | |
"id": "https://example.org/note1", | |
"content": "This is a simple note" | |
} | |
] | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<https://example.org/collection1/page1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://www.w3.org/ns/activitystreams#CollectionPage> . | |
<https://example.org/collection1/page1> <https://www.w3.org/ns/activitystreams#items> <https://example.org/note1> . | |
<https://example.org/collection1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://www.w3.org/ns/activitystreams#Collection> . | |
<https://example.org/collection1> <https://www.w3.org/ns/activitystreams#first> <https://example.org/collection1/page1> . | |
<https://example.org/note1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://www.w3.org/ns/activitystreams#Note> . | |
<https://example.org/note1> <https://www.w3.org/ns/activitystreams#content> "This is a simple note" . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment