Atlassian · Schema

pipeline_step_state_in_progress

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-pipeline-step-state-in-progress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pipeline_step_state_in_progress",
  "title": "pipeline_step_state_in_progress",
  "allOf": [
    {
      "$ref": "#/components/schemas/pipeline_step_state"
    },
    {
      "additionalProperties": true,
      "type": "object",
      "description": "A Bitbucket Pipelines IN_PROGRESS pipeline step state.",
      "properties": {
        "name": {
          "enum": [
            "IN_PROGRESS"
          ],
          "type": "string",
          "description": "The name of pipeline step state (IN_PROGRESS)."
        }
      }
    }
  ]
}