{ "$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-list-anomaly-group-time-series-request-schema.json", "title": "ListAnomalyGroupTimeSeriesRequest", "description": "ListAnomalyGroupTimeSeriesRequest schema from Amazon Lookout for Metrics API", "type": "object", "properties": { "AnomalyDetectorArn": { "allOf": [ { "$ref": "#/components/schemas/Arn" }, { "description": "The Amazon Resource Name (ARN) of the anomaly detector." } ] }, "AnomalyGroupId": { "allOf": [ { "$ref": "#/components/schemas/UUID" }, { "description": "The ID of the anomaly group." } ] }, "MetricName": { "allOf": [ { "$ref": "#/components/schemas/MetricName" }, { "description": "The name of the measure field." } ] }, "MaxResults": { "allOf": [ { "$ref": "#/components/schemas/MaxResults" }, { "description": "The maximum number of results to return." } ] }, "NextToken": { "allOf": [ { "$ref": "#/components/schemas/NextToken" }, { "description": "Specify the pagination token that's returned by a previous request to retrieve the next page of results." } ] } }, "required": [ "AnomalyDetectorArn", "AnomalyGroupId", "MetricName" ] }