8 Ordered Collection

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

JSON

Inbox

Definition

A subtype of Collection in which members of the logical collection are assumed to always be strictly ordered.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollection

Scope Note

: Object

Example

Example 6

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally's notes",
  "type": "OrderedCollection",
  "totalItems": 2,
  "orderedItems": [
    {
      "type": "Note",
      "name": "A Simple Note"
    },
    {
      "type": "Note",
      "name": "Another Simple Note"
    }
  ]
}