Atlassian · Schema

pipeline_step_state_completed_not_run

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-pipeline-step-state-completed-not-run-schema.json Raw ↑
{
  "$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)"
        }
      }
    }
  ]
}