Amazon Lookout for Metrics · JSON Structure

Amazon Lookout For Metrics Dimension Name Value Structure

A dimension name and value.

Type: object Properties: 2 Required: 2
Anomaly DetectionBusiness IntelligenceMachine LearningMetricsMonitoring

DimensionNameValue is a JSON Structure definition published by Amazon Lookout for Metrics, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

DimensionName DimensionValue

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-lookout-for-metrics/refs/heads/main/json-structure/amazon-lookout-for-metrics-dimension-name-value-structure.json",
  "name": "DimensionNameValue",
  "description": "A dimension name and value.",
  "type": "object",
  "properties": {
    "DimensionName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ColumnName"
        },
        {
          "description": "The name of the dimension."
        }
      ]
    },
    "DimensionValue": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DimensionValue"
        },
        {
          "description": "The value of the dimension."
        }
      ]
    }
  },
  "required": [
    "DimensionName",
    "DimensionValue"
  ]
}