Seismic Configuration Update for trigger data point (#3382)
This commit is contained in:
Родитель
5e1e8892ee
Коммит
56aab62c8f
|
@ -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"
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
Загрузка…
Ссылка в новой задаче