Adyen · JSON Structure

Configuration Paginated Get Card Order Response Structure

PaginatedGetCardOrderResponse schema from Adyen API

Type: object Properties: 3 Required: 2
PaymentsFinancial ServicesFintech

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

Properties

cardOrders 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-get-card-order-response-structure.json",
  "description": "PaginatedGetCardOrderResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "cardOrders": {
      "description": "Contains objects with information about card orders.",
      "items": {
        "$ref": "#/components/schemas/CardOrder"
      },
      "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": [
    "hasPrevious",
    "hasNext"
  ],
  "name": "PaginatedGetCardOrderResponse"
}