Adyen · Schema

NotificationRequest

NotificationRequest schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
live string Informs about the origin of the notification. The value is **true** when originating from the live environment, **false** for the test environment.
notificationItems array A container object for the details included in the notification.
View JSON Schema on GitHub

JSON Schema

webhooks-notification-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/webhooks-notification-request-schema.json",
  "title": "NotificationRequest",
  "description": "NotificationRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "live": {
      "description": "Informs about the origin of the notification. The value is **true** when originating from the live environment, **false** for the test environment.",
      "type": "string"
    },
    "notificationItems": {
      "description": "A container object for the details included in the notification.",
      "items": {
        "$ref": "#/components/schemas/NotificationRequestItemWrapper"
      },
      "type": "array"
    }
  }
}