{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginationMeta", "title": "PaginationMeta", "type": "object", "properties": { "totalCount": { "type": "integer", "description": "Total number of matching records" }, "pageLimit": { "type": "integer", "description": "Current page size limit" }, "pageOffset": { "type": "integer", "description": "Current offset" } } }