Azure Monitor · Schema

VoiceReceiver

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
name string The name of the voice receiver.
countryCode string The country code of the voice receiver.
phoneNumber string The phone number of the voice receiver.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-voicereceiver-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VoiceReceiver",
  "title": "VoiceReceiver",
  "type": "object",
  "required": [
    "name",
    "countryCode",
    "phoneNumber"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the voice receiver."
    },
    "countryCode": {
      "type": "string",
      "description": "The country code of the voice receiver."
    },
    "phoneNumber": {
      "type": "string",
      "description": "The phone number of the voice receiver."
    }
  }
}