Atlassian · Schema

deployment_state_completed_status_stopped

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-deployment-state-completed-status-stopped-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/deployment_state_completed_status_stopped",
  "title": "deployment_state_completed_status_stopped",
  "allOf": [
    {
      "$ref": "#/components/schemas/deployment_state_completed_status"
    },
    {
      "additionalProperties": true,
      "type": "object",
      "description": "A STOPPED completed deployment status.",
      "properties": {
        "name": {
          "enum": [
            "STOPPED"
          ],
          "type": "string",
          "description": "The name of the completed deployment status (STOPPED)."
        }
      }
    }
  ]
}