{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/pipeline_state_completed_error", "title": "pipeline_state_completed_error", "allOf": [ { "$ref": "#/components/schemas/pipeline_state_completed_result" }, { "additionalProperties": true, "type": "object", "title": "Pipeline Completed Error", "description": "A Bitbucket Pipelines ERROR pipeline result.", "properties": { "name": { "enum": [ "ERROR" ], "type": "string", "description": "The name of the result (ERROR)" }, "error": { "$ref": "#/components/schemas/pipeline_error" } } } ] }