Azure Monitor · Schema

LogicAppReceiver

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
name string The name of the Logic App receiver.
resourceId string The Azure resource ID of the Logic App.
callbackUrl string The callback URL.
useCommonAlertSchema boolean Indicates whether to use common alert schema.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-logicappreceiver-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LogicAppReceiver",
  "title": "LogicAppReceiver",
  "type": "object",
  "required": [
    "name",
    "resourceId",
    "callbackUrl"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the Logic App receiver."
    },
    "resourceId": {
      "type": "string",
      "description": "The Azure resource ID of the Logic App."
    },
    "callbackUrl": {
      "type": "string",
      "format": "uri",
      "description": "The callback URL."
    },
    "useCommonAlertSchema": {
      "type": "boolean",
      "default": false,
      "description": "Indicates whether to use common alert schema."
    }
  }
}