{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-metrics/refs/heads/main/json-schema/amazon-lookout-for-metrics-time-series-feedback-schema.json", "title": "TimeSeriesFeedback", "description": "Details about feedback submitted for an anomalous metric.", "type": "object", "properties": { "TimeSeriesId": { "allOf": [ { "$ref": "#/components/schemas/TimeSeriesId" }, { "description": "The ID of the metric." } ] }, "IsAnomaly": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "Feedback on whether the metric is a legitimate anomaly." } ] } } }