Skip to content

Instantly share code, notes, and snippets.

@evanp
Created August 18, 2024 17:04
Show Gist options
  • Save evanp/86f81773d2a06eac91f67574f004500b to your computer and use it in GitHub Desktop.
Save evanp/86f81773d2a06eac91f67574f004500b to your computer and use it in GitHub Desktop.
Paged collection
{
"@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"
}
]
}
}
<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