25 lines
547 B
JSON
25 lines
547 B
JSON
{
|
|
"type": "object",
|
|
"properties": {
|
|
"task_id": {
|
|
"type": "string",
|
|
"description": "The task ID to get output from"
|
|
},
|
|
"block": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "Whether to wait for completion"
|
|
},
|
|
"timeout": {
|
|
"type": "number",
|
|
"default": 30000,
|
|
"minimum": 0,
|
|
"maximum": 600000,
|
|
"description": "Max wait time in ms"
|
|
}
|
|
},
|
|
"required": ["task_id"],
|
|
"additionalProperties": false,
|
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
}
|