{ "$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-mute-settings-schema.json", "title": "MonitorMuteSettings", "description": "Settings for muting a monitor including scope and expiration", "type": "object", "properties": { "scope": { "type": "string", "description": "The scope expression specifying which monitor groups to mute (e.g., env:prod, host:web-01)", "example": "example_value" }, "end": { "type": "integer", "format": "int64", "description": "Unix timestamp in seconds when the mute expires; omit for indefinite mute", "example": 42 } } }