Adyen · JSON Structure

Management Pagination Links Structure

PaginationLinks schema from Adyen API

Type: object Properties: 5 Required: 3
PaymentsFinancial ServicesFintech

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

Properties

first last next prev self

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/management-pagination-links-structure.json",
  "description": "PaginationLinks schema from Adyen API",
  "type": "object",
  "properties": {
    "first": {
      "description": "The first page.",
      "$ref": "#/components/schemas/LinksElement"
    },
    "last": {
      "description": "The last page.",
      "$ref": "#/components/schemas/LinksElement"
    },
    "next": {
      "description": "The next page. Only present if there is a next page.",
      "$ref": "#/components/schemas/LinksElement"
    },
    "prev": {
      "description": "The previous page. Only present if there is a previous page.",
      "$ref": "#/components/schemas/LinksElement"
    },
    "self": {
      "description": "The current page.",
      "$ref": "#/components/schemas/LinksElement"
    }
  },
  "required": [
    "self",
    "first",
    "last"
  ],
  "name": "PaginationLinks"
}