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