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