{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/methods/download.resume.schema.json", "title": "download.resume", "description": "Continue paused tasks. Resumption is revalidated with If-Range against the stored ETag or Last-Modified; a 200 where 206 was expected means the file changed on the server, and the task moves to failed with a clear error rather than corrupting the part file.", "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" } } }