9 Ordered Collection Page

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

JSON

Inbox

Definition

Used to represent ordered subsets of items from an OrderedCollection. Refer to the Activity Streams 2.0 Core for a complete description of the OrderedCollectionPage object.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage

Scope Note

: Object

Example

Example 8

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