{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/deployment_state_undeployed", "title": "deployment_state_undeployed", "allOf": [ { "$ref": "#/components/schemas/deployment_state" }, { "additionalProperties": true, "type": "object", "description": "A Bitbucket Deployment UNDEPLOYED deployment state.", "properties": { "name": { "enum": [ "UNDEPLOYED" ], "type": "string", "description": "The name of deployment state (UNDEPLOYED)." }, "trigger_url": { "type": "string", "format": "uri", "description": "Link to trigger the deployment." } } } ] }