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