Adyen · Schema

PaginationLinks

PaginationLinks schema from Adyen API

PaymentsFinancial-ServicesFintech

Properties

Name Type Description
first object The first page.
last object The last page.
next object The next page. Only present if there is a next page.
prev object The previous page. Only present if there is a previous page.
self object The current page.
View JSON Schema on GitHub

JSON Schema

management-pagination-links-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/management-pagination-links-schema.json",
  "title": "PaginationLinks",
  "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"
  ]
}