Azure Monitor · Schema

MetadataTable

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
id string The ID of the table.
name string The name of the table.
description string The description of the table.
columns array The columns in the table.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-metadatatable-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetadataTable",
  "title": "MetadataTable",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the table."
    },
    "name": {
      "type": "string",
      "description": "The name of the table."
    },
    "description": {
      "type": "string",
      "description": "The description of the table."
    },
    "columns": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Column"
      },
      "description": "The columns in the table."
    }
  }
}