{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Pagination", "title": "Pagination", "type": "object", "properties": { "page": { "type": "integer", "description": "The current page number." }, "pages": { "type": "integer", "description": "The total number of pages." }, "results": { "type": "integer", "description": "The total number of results." } } }