{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/acronis/refs/heads/main/json-structure/agent-management-agent-update-settings-structure.json", "description": "Configuration for automatic agent updates", "type": "object", "properties": { "update_channel": { "type": "string", "enum": [ "CURRENT", "STABLE" ], "description": "Update channel to use", "example": "STABLE" }, "automatic": { "type": "boolean", "description": "Whether updates should be applied automatically", "example": true }, "maintenance_window": { "$ref": "#/components/schemas/MaintenanceWindow" } }, "name": "AgentUpdateSettings" }