{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeploymentExtended", "title": "DeploymentExtended", "type": "object", "description": "Deployment information.", "properties": { "id": { "type": "string", "readOnly": true, "description": "The ID of the deployment.", "example": "abc123" }, "name": { "type": "string", "readOnly": true, "description": "The name of the deployment.", "example": "Example Title" }, "type": { "type": "string", "readOnly": true, "description": "The type of the deployment.", "example": "example_value" }, "location": { "type": "string", "description": "The location of the deployment.", "example": "example_value" }, "properties": { "$ref": "#/components/schemas/DeploymentPropertiesExtended" }, "tags": { "type": "object", "additionalProperties": { "type": "string" }, "description": "Deployment tags.", "example": "example_value" } } }