Atlassian · Schema

pipeline_state_pending

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-pipeline-state-pending-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/pipeline_state_pending",
  "title": "pipeline_state_pending",
  "allOf": [
    {
      "$ref": "#/components/schemas/pipeline_state"
    },
    {
      "additionalProperties": true,
      "type": "object",
      "title": "Pipeline Pending State",
      "description": "A Bitbucket Pipelines PENDING pipeline state.",
      "properties": {
        "name": {
          "enum": [
            "PENDING"
          ],
          "type": "string",
          "description": "The name of pipeline state (PENDING)."
        }
      }
    }
  ]
}