9 Geordnete-Sammlung-Seite

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

JSON

Inbox

Definition

Wird verwendet, um geordnete Teilmengen von Elementen aus einer OrderedCollection darzustellen. Eine vollständige Beschreibung des OrderedCollectionPage-Objekts finden Sie im Activity Streams 2.0-Kern.
siehe https://www.w3.org/TR/activitystreams-vocabulary/#dfn-orderedcollectionpage

Scope Note

: Object

Example

Beispiel 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"
    }
  ]
}