Adyen · Schema

ScheduledRefundsNotificationContent

ScheduledRefundsNotificationContent schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
accountCode string The code of the account.
accountHolderCode string The code of the Account Holder.
invalidFields array Invalid fields list.
lastPayout object The most recent payout (after which all transactions were scheduled to be refunded).
refundResults array A list of the refunds that have been scheduled and their results.
View JSON Schema on GitHub

JSON Schema

notifications-scheduled-refunds-notification-content-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/notifications-scheduled-refunds-notification-content-schema.json",
  "title": "ScheduledRefundsNotificationContent",
  "description": "ScheduledRefundsNotificationContent schema from Adyen API",
  "type": "object",
  "properties": {
    "accountCode": {
      "description": "The code of the account.",
      "type": "string"
    },
    "accountHolderCode": {
      "description": "The code of the Account Holder.",
      "type": "string"
    },
    "invalidFields": {
      "x-addedInVersion": "5",
      "description": "Invalid fields list.",
      "items": {
        "$ref": "#/components/schemas/ErrorFieldType"
      },
      "type": "array"
    },
    "lastPayout": {
      "description": "The most recent payout (after which all transactions were scheduled to be refunded).",
      "$ref": "#/components/schemas/Transaction"
    },
    "refundResults": {
      "description": "A list of the refunds that have been scheduled and their results.",
      "items": {
        "$ref": "#/components/schemas/RefundResult"
      },
      "type": "array"
    }
  }
}