3212 Subjekt

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

JSON

Inbox

Definition

Bei einem Beziehungsobjekt identifiziert die Eigenschaft subject eine der verbundenen Personen. Bei einem Relationship-Objekt mit der Beschreibung "John is related to Sally" würde sich subject beispielsweise auf John beziehen.
siehe https://www.w3.org/TR/activitystreams-vocabulary/#dfn-subject

Scope Note

: Property

Example

Beispiel 139

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally is an acquaintance of John's",
  "type": "Relationship",
  "subject": {
    "type": "Person",
    "name": "Sally"
  },
  "relationship": "http://purl.org/vocab/relationship/acquaintanceOf",
  "object": {
    "type": "Person",
    "name": "John"
  }
}