Mindbody · Schema

Pagination

Implementation of the 'Pagination' model. Contains information about the pagination used.

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
PageNumber integer Page number of results in dataset.
PageSize integer Number of results returned in this response.
TotalResultCount integer Total number of results in dataset.
TotalPageCount integer Total number of page in dataset.
View JSON Schema on GitHub

JSON Schema

public-api-v6-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/mindbody/refs/heads/main/json-schema/public-api-v6-pagination-schema.json",
  "title": "Pagination",
  "description": "Implementation of the 'Pagination' model. Contains information about the pagination used.",
  "type": "object",
  "properties": {
    "PageNumber": {
      "type": "integer",
      "format": "int32",
      "description": "Page number of results in dataset.",
      "example": 1
    },
    "PageSize": {
      "type": "integer",
      "format": "int32",
      "description": "Number of results returned in this response.",
      "example": 1
    },
    "TotalResultCount": {
      "type": "integer",
      "format": "int32",
      "description": "Total number of results in dataset.",
      "example": 10
    },
    "TotalPageCount": {
      "type": "integer",
      "format": "int32",
      "description": "Total number of page in dataset.",
      "example": 10
    }
  }
}