{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-monitors-monitor-state-schema.json",
"title": "MonitorState",
"description": "The current evaluation state of the monitor across all groups",
"type": "object",
"properties": {
"groups": {
"type": "object",
"description": "Map of monitor group names to their current state information",
"additionalProperties": {
"$ref": "#/components/schemas/MonitorGroupState"
}
}
}
}