Request body for updating alert rules.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateAlertRulesRequest", "title": "UpdateAlertRulesRequest", "type": "object", "description": "Request body for updating alert rules.", "properties": { "rules": { "type": "array", "description": "The list of alert rule updates to apply.", "items": { "type": "object", "properties": { "ruleId": { "type": "string", "description": "The identifier of the rule to update." }, "enabled": { "type": "boolean", "description": "Whether to enable or disable the rule." }, "thresholdValue": { "type": "number", "format": "double", "description": "The updated threshold value." }, "severity": { "type": "string", "description": "The updated severity level.", "enum": [ "High", "Medium", "Low", "Information" ] } } }, "example": [] } } }