{ "$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-related-metrics-request-schema.json", "title": "ListAnomalyGroupRelatedMetricsRequest", "description": "ListAnomalyGroupRelatedMetricsRequest 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." } ] }, "RelationshipTypeFilter": { "allOf": [ { "$ref": "#/components/schemas/RelationshipType" }, { "description": "Filter for potential causes (CAUSE_OF_INPUT_ANOMALY_GROUP) or downstream effects (EFFECT_OF_INPUT_ANOMALY_GROUP) of the anomaly group." } ] }, "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" ] }