Atlassian · Schema

deployment

CodeCollaborationPlatformProductivitySoftware Development
View JSON Schema on GitHub

JSON Schema

atlassian-deployment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/deployment",
  "title": "deployment",
  "allOf": [
    {
      "$ref": "#/components/schemas/object"
    },
    {
      "additionalProperties": true,
      "type": "object",
      "title": "Deployment",
      "description": "A Bitbucket Deployment.",
      "properties": {
        "uuid": {
          "type": "string",
          "description": "The UUID identifying the deployment."
        },
        "state": {
          "$ref": "#/components/schemas/deployment_state"
        },
        "environment": {
          "$ref": "#/components/schemas/deployment_environment"
        },
        "release": {
          "$ref": "#/components/schemas/deployment_release"
        }
      }
    }
  ]
}