{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/methods/queue.list.schema.json", "title": "queue.list", "description": "Every queue with its run state and ordering. Not privileged: the extension's 'Add to Queue' picker needs it.", "x-privileged": false, "x-transports": [ "uds", "ws" ], "x-deadlineMs": 2000, "type": "object", "properties": { "params": { "type": "object", "additionalProperties": false, "properties": {} }, "result": { "type": "object", "additionalProperties": false, "required": [ "items" ], "properties": { "items": { "type": "array", "items": { "$ref": "https://velox.dev/schema/types/Queue.schema.json" } } } } } }