{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/pipeline_state_in_progress_paused", "title": "pipeline_state_in_progress_paused", "allOf": [ { "$ref": "#/components/schemas/pipeline_state_in_progress_stage" }, { "additionalProperties": true, "type": "object", "description": "A Bitbucket Pipelines PAUSED stage of a pipeline that is in progress.", "properties": { "name": { "enum": [ "PAUSED" ], "type": "string", "description": "The name of the stage (PAUSED)" } } } ] }