Configuration for automatic agent updates
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/acronis/refs/heads/main/json-schema/agent-management-agent-update-settings-schema.json", "title": "AgentUpdateSettings", "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" } } }