MemoryMesh

add_transportation

Represents a transportation owned or used by a character or entity.

Input Schema

NameRequiredDescriptionDefault
transportationYes

Input Schema (JSON Schema)

{ "properties": { "transportation": { "additionalProperties": { "description": "Additional property value", "type": "string" }, "properties": { "description": { "description": "A brief description of the vehicle.", "type": "string" }, "name": { "description": "The name of the vehicle.", "type": "string" }, "owner": { "description": "The relationship between the vehicle and its owner.", "items": { "description": "Item in owner array", "type": "string" }, "type": "array" }, "type": { "description": "The type or class of the vehicle (e.g., car, spaceship, boat, horse).", "type": "string" } }, "required": [ "name", "description", "owner", "type" ], "type": "object" } }, "required": [ "transportation" ], "type": "object" }