Seismic Configuration Update for trigger data point (#3382)

This commit is contained in:
Amit Chaudhari 2024-04-17 19:43:42 +05:30 коммит произвёл GitHub
Родитель 5e1e8892ee
Коммит 56aab62c8f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 56 добавлений и 2 удалений

Просмотреть файл

@ -409,7 +409,10 @@
},
"/webhooks/v1/subscriptions": {
"x-ms-notification-content": {
"description": "Schema of the notification content"
"description": "Schema of the notification content",
"schema": {
"$ref": "#/definitions/NotificationContent"
}
},
"post": {
"summary": "Create a webhook subscription",
@ -482,6 +485,57 @@
}
},
"definitions": {
"NotificationContent": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "A unique identifier for the event.",
"format": "uuid"
},
"version": {
"type": "string",
"description": "The version of the event, e.g., \"ContentManagerCreateFileV1\"."
},
"occuredAt": {
"type": "string",
"description": "ISO 8601 timestamp when the event occurred in UTC.",
"format": "date-time"
},
"tenantId": {
"type": "string",
"description": "Unique identifier for the tenant.",
"format": "uuid"
},
"tenantName": {
"type": "string",
"description": "Name of the tenant."
},
"data": {
"type": "object",
"additionalProperties": true,
"description": "Specific event details (varies by event type)."
},
"application": {
"type": "string",
"description": "The application where the event originated."
},
"productArea": {
"description": "The product area related to the event.",
"type": "string"
}
},
"required": [
"id",
"version",
"occuredAt",
"tenantId",
"tenantName",
"data",
"application",
"productArea"
]
},
"Error": {
"type": "object",
"properties": {
@ -956,4 +1010,4 @@
"propertyValue": "Marketing;Sales and CRM"
}
]
}
}