Azure Databricks · Schema
WebhookNotifications
AnalyticsApache SparkBig DataData EngineeringMachine Learning
Properties
| Name | Type | Description |
|---|---|---|
| on_start | array | |
| on_success | array | |
| on_failure | array | |
| on_duration_warning_threshold_exceeded | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WebhookNotifications",
"title": "WebhookNotifications",
"type": "object",
"properties": {
"on_start": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the system notification destination"
}
}
},
"example": []
},
"on_success": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
}
},
"example": []
},
"on_failure": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
}
},
"example": []
},
"on_duration_warning_threshold_exceeded": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string"
}
}
},
"example": []
}
}
}