add_transportation
Define and link transportation types, such as cars, spaceships, or boats, to entities or characters in the MemoryMesh Knowledge Graph, ensuring structured data for ownership and attributes.
Instructions
Represents a transportation owned or used by a character or entity.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
transportation | Yes |
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"
}