Atlassian · Schema

pipeline_step_state_completed_error

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

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