Azure Monitor · Schema

QueryResults

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
tables array The list of tables, columns and rows.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-queryresults-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/QueryResults",
  "title": "QueryResults",
  "type": "object",
  "required": [
    "tables"
  ],
  "properties": {
    "tables": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Table"
      },
      "description": "The list of tables, columns and rows."
    }
  }
}