3212 subject

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

JSON

Inbox

Definition

On a Relationship object, the subject property identifies one of the connected individuals. For instance, for a Relationship object describing "John is related to Sally", subject would refer to John.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-subject

Scope Note

: Property

Example

Example 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"
  }
}