{
"$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-anomaly-detector-data-quality-metric-schema.json",
"title": "AnomalyDetectorDataQualityMetric",
"description": "Aggregated details about the data quality metrics collected for the AnomalyDetectorArn provided in the GetDataQualityMetrics object.",
"type": "object",
"properties": {
"StartTimestamp": {
"allOf": [
{
"$ref": "#/components/schemas/Timestamp"
},
{
"description": "The start time for the data quality metrics collection."
}
]
},
"MetricSetDataQualityMetricList": {
"allOf": [
{
"$ref": "#/components/schemas/MetricSetDataQualityMetricList"
},
{
"description": "An array of DataQualityMetricList objects. Each object in the array contains information about a data quality metric."
}
]
}
}
}