{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AnomalyDetectorConfiguration", "title": "AnomalyDetectorConfiguration", "type": "object", "description": "The configuration specifies details about how the anomaly detection model is to be trained.", "properties": { "ExcludedTimeRanges": { "type": "array", "items": { "$ref": "#/components/schemas/Range" }, "description": "An array of time ranges to exclude from use when the anomaly detection model is trained.", "example": [] }, "MetricTimezone": { "type": "string", "maxLength": 50, "description": "The time zone to use for the metric.", "example": "example_value" } } }