{ "$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 } } }