SAP Commerce Cloud · Schema

Pagination

B2BB2CCommerceCustomer ExperienceEcommerceOmnichannelRetail

Properties

Name Type Description
currentPage integer Current page number
pageSize integer Number of results per page
totalPages integer Total number of pages
totalResults integer Total number of results
View JSON Schema on GitHub

JSON Schema

sap-commerce-cloud-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Pagination",
  "title": "Pagination",
  "type": "object",
  "properties": {
    "currentPage": {
      "type": "integer",
      "description": "Current page number"
    },
    "pageSize": {
      "type": "integer",
      "description": "Number of results per page"
    },
    "totalPages": {
      "type": "integer",
      "description": "Total number of pages"
    },
    "totalResults": {
      "type": "integer",
      "description": "Total number of results"
    }
  }
}