{ "$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" } } } ] }