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