Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the webhook receiver. |
| serviceUri | string | The URI where webhooks should be sent. |
| useCommonAlertSchema | boolean | Indicates whether to use common alert schema. |
| useAadAuth | boolean | Indicates whether to use AAD authentication. |
| objectId | string | The object ID for AAD auth. |
| identifierUri | string | The identifier URI for AAD auth. |
| tenantId | string | The tenant ID for AAD auth. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WebhookReceiver",
"title": "WebhookReceiver",
"type": "object",
"required": [
"name",
"serviceUri"
],
"properties": {
"name": {
"type": "string",
"description": "The name of the webhook receiver."
},
"serviceUri": {
"type": "string",
"format": "uri",
"description": "The URI where webhooks should be sent."
},
"useCommonAlertSchema": {
"type": "boolean",
"default": false,
"description": "Indicates whether to use common alert schema."
},
"useAadAuth": {
"type": "boolean",
"default": false,
"description": "Indicates whether to use AAD authentication."
},
"objectId": {
"type": "string",
"description": "The object ID for AAD auth."
},
"identifierUri": {
"type": "string",
"description": "The identifier URI for AAD auth."
},
"tenantId": {
"type": "string",
"description": "The tenant ID for AAD auth."
}
}
}