201 Accept

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

JSON

Inbox

Definition

Indicates that the actor accepts the object. The target property can be used in certain circumstances to indicate the context into which the object has been accepted.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-accept

Scope Note

: Activity

Example

Example 9

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally accepted an invitation to a party",
  "type": "Accept",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "object": {
    "type": "Invite",
    "actor": "http://john.example.org",
    "object": {
      "type": "Event",
      "name": "Going-Away Party for Jim"
    }
  }
}