{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/methods/download.start.schema.json", "title": "download.start", "description": "Begin or restart the given tasks. A task in 'queued' jumps its queue; a task already downloading is a no-op reported as changed false.", "x-privileged": false, "x-transports": [ "uds", "ws" ], "x-deadlineMs": 5000, "x-errors": [ -32010 ], "type": "object", "properties": { "params": { "type": "object", "additionalProperties": false, "required": [ "taskIds" ], "properties": { "taskIds": { "type": "array", "minItems": 1, "maxItems": 5000, "items": { "type": "string", "format": "uuid" } } } }, "result": { "$ref": "https://velox.dev/schema/types/BulkTaskResult.schema.json" } } }