{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/methods/download.pause.schema.json", "title": "download.pause", "description": "Suspend transfers and flush every segment's progress to the .veloxpart.meta file, so a pause is indistinguishable from a crash as far as resume is concerned. Never loses bytes already written.", "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" } } }