Mindbody · JSON Structure

Public Api V6 Pagination Response Structure

Implementation of the 'PaginationResponse' model. Contains information about the pagination to use.

Type: object Properties: 4
FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

PaginationResponse 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

RequestedLimit RequestedOffset PageSize TotalResults

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-response-structure.json",
  "name": "PaginationResponse",
  "description": "Implementation of the 'PaginationResponse' model. Contains information about the pagination to use.",
  "type": "object",
  "properties": {
    "RequestedLimit": {
      "type": "int32",
      "description": "Limit from pagination request",
      "example": 10
    },
    "RequestedOffset": {
      "type": "int32",
      "description": "Offset from pagination request",
      "example": 10
    },
    "PageSize": {
      "type": "int32",
      "description": "Number of results returned in this response",
      "example": 1
    },
    "TotalResults": {
      "type": "int32",
      "description": "Total number of results in dataset",
      "example": 1
    }
  }
}