Datadog · Schema

MonitorUnmuteSettings

Settings for unmuting a monitor including optional scope

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
scope string The scope expression specifying which monitor groups to unmute; omit to unmute all groups
all_scopes boolean When true, unmutes all scopes including those previously muted with different scope expressions
View JSON Schema on GitHub

JSON Schema

datadog-monitors-monitor-unmute-settings-schema.json Raw ↑
{
  "$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-unmute-settings-schema.json",
  "title": "MonitorUnmuteSettings",
  "description": "Settings for unmuting a monitor including optional scope",
  "type": "object",
  "properties": {
    "scope": {
      "type": "string",
      "description": "The scope expression specifying which monitor groups to unmute; omit to unmute all groups",
      "example": "example_value"
    },
    "all_scopes": {
      "type": "boolean",
      "description": "When true, unmutes all scopes including those previously muted with different scope expressions",
      "example": true
    }
  }
}