{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/methods/download.get.schema.json", "title": "download.get", "description": "Full detail for one task, including per-segment state. Backs the progress dialog. Poll it no faster than the progress dialog repaints; the table must use events instead.", "x-privileged": false, "x-transports": ["uds", "ws"], "x-deadlineMs": 5000, "x-errors": [-32010], "type": "object", "properties": { "params": { "type": "object", "additionalProperties": false, "required": ["taskId"], "properties": { "taskId": { "type": "string", "format": "uuid" } } }, "result": { "$ref": "https://velox.dev/schema/types/TaskDetail.schema.json" } } }