{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/pipeline_state_in_progress", "title": "pipeline_state_in_progress", "allOf": [ { "$ref": "#/components/schemas/pipeline_state" }, { "additionalProperties": true, "type": "object", "title": "Pipeline In-Progress State", "description": "A Bitbucket Pipelines IN_PROGRESS pipeline state.", "properties": { "name": { "enum": [ "IN_PROGRESS" ], "type": "string", "description": "The name of pipeline state (IN_PROGRESS)." }, "stage": { "$ref": "#/components/schemas/pipeline_state_in_progress_stage" } } } ] }