{ "$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-describe-anomaly-detection-executions-request-schema.json", "title": "DescribeAnomalyDetectionExecutionsRequest", "description": "DescribeAnomalyDetectionExecutionsRequest 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." } ] }, "Timestamp": { "allOf": [ { "$ref": "#/components/schemas/TimestampString" }, { "description": "The timestamp of the anomaly detection job." } ] }, "MaxResults": { "allOf": [ { "$ref": "#/components/schemas/MaxResults" }, { "description": "The number of items to return in the response." } ] }, "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" ] }