Atlassian · Schema

deployment_state_completed

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

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