{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://velox.dev/schema/methods/schedule.get.schema.json", "title": "schedule.get", "description": "The schedule for one queue, or every schedule when queueId is null. Backs the Scheduler window.", "x-privileged": true, "x-transports": [ "uds" ], "x-deadlineMs": 2000, "x-errors": [ -32003 ], "type": "object", "properties": { "params": { "type": "object", "additionalProperties": false, "properties": { "queueId": { "type": [ "string", "null" ] } } }, "result": { "type": "object", "additionalProperties": false, "required": [ "items" ], "properties": { "items": { "type": "array", "items": { "type": "object", "additionalProperties": false, "required": [ "queueId", "schedule" ], "properties": { "queueId": { "type": "string" }, "schedule": { "oneOf": [ { "$ref": "https://velox.dev/schema/types/Schedule.schema.json" }, { "type": "null" } ] } } } } } } } }