Adyen · Schema

ListStoresResponse

ListStoresResponse schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
_links object Pagination references.
data array List of stores
itemsTotal integer Total number of items.
pagesTotal integer Total number of pages.
View JSON Schema on GitHub

JSON Schema

management-list-stores-response-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-list-stores-response-schema.json",
  "title": "ListStoresResponse",
  "description": "ListStoresResponse schema from Adyen API",
  "type": "object",
  "properties": {
    "_links": {
      "description": "Pagination references.",
      "$ref": "#/components/schemas/PaginationLinks"
    },
    "data": {
      "description": "List of stores",
      "items": {
        "$ref": "#/components/schemas/Store"
      },
      "type": "array"
    },
    "itemsTotal": {
      "description": "Total number of items.",
      "format": "int32",
      "type": "integer"
    },
    "pagesTotal": {
      "description": "Total number of pages.",
      "format": "int32",
      "type": "integer"
    }
  },
  "required": [
    "itemsTotal",
    "pagesTotal"
  ]
}