Atlassian · Schema

pipeline_state_completed_failed

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

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