Azure Monitor · Schema

AzureAppPushReceiver

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
name string The name of the Azure App Push receiver.
emailAddress string The email address registered for the Azure mobile app.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-azureapppushreceiver-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AzureAppPushReceiver",
  "title": "AzureAppPushReceiver",
  "type": "object",
  "required": [
    "name",
    "emailAddress"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the Azure App Push receiver."
    },
    "emailAddress": {
      "type": "string",
      "format": "email",
      "description": "The email address registered for the Azure mobile app."
    }
  }
}