Azure Monitor · Schema

Column

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
name string The name of this column.
type string The data type of this column.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-column-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Column",
  "title": "Column",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of this column."
    },
    "type": {
      "type": "string",
      "enum": [
        "bool",
        "datetime",
        "dynamic",
        "int",
        "long",
        "real",
        "string",
        "guid",
        "decimal",
        "timespan"
      ],
      "description": "The data type of this column."
    }
  }
}