{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/DeleteDeploymentResponse", "title": "DeleteDeploymentResponse", "properties": { "deleted_blocks": { "items": { "type": "string" }, "type": "array", "title": "Deleted Blocks", "default": [] }, "deleted_agents": { "items": { "type": "string" }, "type": "array", "title": "Deleted Agents", "default": [] }, "deleted_groups": { "items": { "type": "string" }, "type": "array", "title": "Deleted Groups", "default": [] }, "message": { "type": "string", "title": "Message" } }, "type": "object", "required": [ "message" ], "description": "Response model for delete deployment operation." }