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