7 Collection Page

https://w3id.org/class/redaktor/CollectionPage

JSON

Inbox

Definition

Used to represent distinct subsets of items from a Collection. Refer to the Activity Streams 2.0 Core for a complete description of the CollectionPage object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collectionpage

Scope Note

: Object

Example

Example 7

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Page 1 of Sally's notes",
  "type": "CollectionPage",
  "id": "http://example.org/foo?page=1",
  "partOf": "http://example.org/foo",
  "items": [
    {
      "type": "Note",
      "name": "A Simple Note"
    },
    {
      "type": "Note",
      "name": "Another Simple Note"
    }
  ]
}