Mindbody · JSON Structure

Public Api V6 Pagination Structure

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

Type: object Properties: 4
FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Pagination is a JSON Structure definition published by Mindbody, describing 4 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

PageNumber PageSize TotalResultCount TotalPageCount

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/mindbody/refs/heads/main/json-structure/public-api-v6-pagination-structure.json",
  "name": "Pagination",
  "description": "Implementation of the 'Pagination' model. Contains information about the pagination used.",
  "type": "object",
  "properties": {
    "PageNumber": {
      "type": "int32",
      "description": "Page number of results in dataset.",
      "example": 1
    },
    "PageSize": {
      "type": "int32",
      "description": "Number of results returned in this response.",
      "example": 1
    },
    "TotalResultCount": {
      "type": "int32",
      "description": "Total number of results in dataset.",
      "example": 10
    },
    "TotalPageCount": {
      "type": "int32",
      "description": "Total number of page in dataset.",
      "example": 10
    }
  }
}