Atlassian · Schema

deployment_state_in_progress

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-deployment-state-in-progress-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/deployment_state_in_progress",
  "title": "deployment_state_in_progress",
  "allOf": [
    {
      "$ref": "#/components/schemas/deployment_state"
    },
    {
      "additionalProperties": true,
      "type": "object",
      "description": "A Bitbucket Deployment IN_PROGRESS deployment state.",
      "properties": {
        "name": {
          "enum": [
            "IN_PROGRESS"
          ],
          "type": "string",
          "description": "The name of deployment state (IN_PROGRESS)."
        },
        "url": {
          "type": "string",
          "format": "uri",
          "description": "Link to the deployment result."
        },
        "deployer": {
          "$ref": "#/components/schemas/account"
        },
        "start_date": {
          "type": "string",
          "format": "date-time",
          "description": "The timestamp when the deployment was started."
        }
      }
    }
  ]
}