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