Adyen · JSON Structure

Configuration Paginated Account Holders Response Structure

PaginatedAccountHoldersResponse schema from Adyen API

Type: object Properties: 3 Required: 3
PaymentsFinancial ServicesFintech

PaginatedAccountHoldersResponse is a JSON Structure definition published by Adyen, describing 3 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

accountHolders hasNext hasPrevious

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/configuration-paginated-account-holders-response-structure.json",
  "description": "PaginatedAccountHoldersResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "accountHolders": {
      "description": "List of account holders.",
      "items": {
        "$ref": "#/components/schemas/AccountHolder"
      },
      "type": "array"
    },
    "hasNext": {
      "description": "Indicates whether there are more items on the next page.",
      "type": "boolean"
    },
    "hasPrevious": {
      "description": "Indicates whether there are more items on the previous page.",
      "type": "boolean"
    }
  },
  "required": [
    "accountHolders",
    "hasPrevious",
    "hasNext"
  ],
  "name": "PaginatedAccountHoldersResponse"
}