Mindbody · Schema

PaginationResponse

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

FitnessWellnessBeautySchedulingBookingPoint of SaleStudiosSalonsSpasWebhooks

Properties

Name Type Description
RequestedLimit integer Limit from pagination request
RequestedOffset integer Offset from pagination request
PageSize integer Number of results returned in this response
TotalResults integer Total number of results in dataset
View JSON Schema on GitHub

JSON Schema

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