Azure Monitor · Schema

MetadataResults

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
tables array The list of tables in the workspace.
functions array The list of saved functions in the workspace.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-metadataresults-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/MetadataResults",
  "title": "MetadataResults",
  "type": "object",
  "properties": {
    "tables": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MetadataTable"
      },
      "description": "The list of tables in the workspace."
    },
    "functions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/MetadataFunction"
      },
      "description": "The list of saved functions in the workspace."
    }
  }
}