128 Kontext

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

JSON

Inbox

Definition

Bezeichnet den Kontext, in dem das Objekt existiert oder eine Aktivität ausgeführt wurde. Der verwendete Begriff "Kontext" ist absichtlich vage gehalten. Die beabsichtigte Funktion besteht darin, als Mittel zur Gruppierung von Objekten und Aktivitäten zu dienen, die einen gemeinsamen Ursprungskontext oder Zweck haben. Ein Beispiel könnten alle Aktivitäten sein, die sich auf ein gemeinsames Projekt oder Ereignis beziehen.
siehe https://www.w3.org/TR/activitystreams-vocabulary/#dfn-context

Scope Note

: Property

Example

Beispiel 73

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Activities in context 1",
  "type": "Collection",
  "items": [
    {
      "type": "Offer",
      "actor": "http://sally.example.org",
      "object": "http://example.org/posts/1",
      "target": "http://john.example.org",
      "context": "http://example.org/contexts/1"
    },
    {
      "type": "Like",
      "actor": "http://joe.example.org",
      "object": "http://example.org/posts/2",
      "context": "http://example.org/contexts/1"
    }
  ]
}