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