66 Travel

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

JSON

Inbox

Definition

Indicates that the actor is traveling to target from origin. Travel is an IntransitiveObject whose actor specifies the direct object. If the target or origin are not specified, either can be determined by context.
see https://www.w3.org/TR/activitystreams-vocabulary/#dfn-travel

Scope Note

: Activity

Example

Example 35

{
  "@context": "https://www.w3.org/ns/activitystreams",
  "summary": "Sally went home from work",
  "type": "Travel",
  "actor": {
    "type": "Person",
    "name": "Sally"
  },
  "target": {
    "type": "Place",
    "name": "Home"
  },
  "origin": {
    "type": "Place",
    "name": "Work"
  }
}