Properties
| Name | Type | Description |
|---|---|---|
| content | object | The details of the upcoming event. |
| error | object | Error information of failed request. No value provided here if no error occurred on processing. |
| eventDate | string | The date and time when an event has been completed. |
| eventType | string | The event type of the notification. |
| executingUserKey | string | The user or process that has triggered the notification. |
| live | boolean | Indicates whether the notification originated from the live environment or the test environment. If true, the notification originated from the live environment. If false, the notification originated f |
| pspReference | string | The PSP reference of the request from which the notification originates. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountHolderUpcomingDeadlineNotification",
"title": "AccountHolderUpcomingDeadlineNotification",
"properties": {
"content": {
"description": "The details of the upcoming event.",
"$ref": "#/components/schemas/AccountHolderUpcomingDeadlineNotificationContent"
},
"error": {
"x-addedInVersion": "5",
"description": "Error information of failed request. No value provided here if no error occurred on processing.",
"$ref": "#/components/schemas/NotificationErrorContainer"
},
"eventDate": {
"x-addedInVersion": "4",
"description": "The date and time when an event has been completed.",
"format": "date-time",
"type": "string"
},
"eventType": {
"description": "The event type of the notification.",
"type": "string"
},
"executingUserKey": {
"description": "The user or process that has triggered the notification.",
"type": "string"
},
"live": {
"description": "Indicates whether the notification originated from the live environment or the test environment. If true, the notification originated from the live environment. If false, the notification originated from the test environment.",
"type": "boolean"
},
"pspReference": {
"description": "The PSP reference of the request from which the notification originates.",
"type": "string"
}
},
"required": [
"executingUserKey",
"pspReference",
"eventType",
"live",
"eventDate"
],
"type": "object"
}