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