Files
marka/registry/schema-org/MoveAction.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

30 lines
1.4 KiB
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:MoveAction",
"title": "MoveAction",
"description": "The act of an agent relocating to a place.\\n\\nRelated actions:\\n\\n* [[TransferAction]]: Unlike TransferAction, the subject of the move is a living Person or Organization rather than an inanimate object.",
"type": "object",
"allOf": [
{
"description": "An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.\\n\\nSee also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html).",
"$ref": "schema:Action"
}
],
"properties": {
"fromLocation": {
"description": "A sub property of location. The original location of the object or the agent before the action.",
"oneOf": [
{ "$ref": "schema:Place" },
{ "type": "array", "items": { "$ref": "schema:Place" } }
]
},
"toLocation": {
"description": "A sub property of location. The final location of the object or the agent after the action.",
"oneOf": [
{ "$ref": "schema:Place" },
{ "type": "array", "items": { "$ref": "schema:Place" } }
]
}
}
}