6 Sammlung

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

JSON

Inbox

Definition

Eine Collection ist ein Subtyp von Object, der geordnete oder ungeordnete Mengen von Object- oder Link-Instanzen darstellt. Eine vollständige Beschreibung des Typs 'Collection' finden Sie in der Spezifikation von Activity Streams 2.0 Core.
siehe https://www.w3.org/TR/activitystreams-vocabulary/#dfn-collection

Scope Note

: Object

Example

Beispiel 5

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