DimensionContribution

Details about a dimension that contributed to an anomaly.

Anomaly DetectionBusiness IntelligenceMachine LearningMetricsMonitoring

Properties

Name Type Description
DimensionName object
DimensionValueContributionList object
View JSON Schema on GitHub

JSON Schema

amazon-lookout-for-metrics-dimension-contribution-schema.json Raw ↑
{
  "$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-dimension-contribution-schema.json",
  "title": "DimensionContribution",
  "description": "Details about a dimension that contributed to an anomaly.",
  "type": "object",
  "properties": {
    "DimensionName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ColumnName"
        },
        {
          "description": "The name of the dimension."
        }
      ]
    },
    "DimensionValueContributionList": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DimensionValueContributionList"
        },
        {
          "description": "A list of dimension values that contributed to the anomaly."
        }
      ]
    }
  }
}