{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PauseStateResponse", "title": "PauseStateResponse", "type": "object", "properties": { "paused_until": { "type": "string", "format": "date-time", "nullable": true, "description": "The timestamp the pipeline is paused until, or null if not paused/not running." } }, "required": [ "paused_until" ] }