update_transportation
Modify transportation details in the MemoryMesh knowledge graph, including vehicle name, description, owner, type, and metadata, to ensure accurate and updated records.
Instructions
Update an existing transportation in the knowledge graph
Input Schema
Name | Required | Description | Default |
---|---|---|---|
update_transportation | Yes |
Input Schema (JSON Schema)
{
"properties": {
"update_transportation": {
"additionalProperties": {
"description": "Any additional properties",
"type": "string"
},
"properties": {
"description": {
"description": "A brief description of the vehicle.",
"type": "string"
},
"metadata": {
"description": "An array of metadata contents to replace the existing metadata",
"items": {
"description": "Item in metadata array",
"type": "string"
},
"type": "array"
},
"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": [],
"type": "object"
}
},
"required": [
"update_transportation"
],
"type": "object"
}