{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "CTP Tool Result",
"type": "object",
"required": ["success"],
"properties": {
"success": { "type": "boolean" },
"data": {},
"error": { "type": "string" },
"errorCode": {
"type": "string",
"enum": [
"INVALID_INPUT", "MISSING_REQUIRED", "TYPE_ERROR",
"CONSTRAINT_VIOLATION", "EXECUTION_ERROR", "TIMEOUT",
"RATE_LIMITED", "UNAUTHORIZED", "NOT_FOUND", "INTERNAL_ERROR"
]
},
"suggestion": { "type": "string" },
"metadata": {
"type": "object",
"properties": {
"executionTime": { "type": "number" },
"warnings": { "type": "array", "items": { "type": "string" } }
}
}
}
}