{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Pagination", "title": "Pagination", "type": "object", "description": "Pagination metadata", "properties": { "total": { "type": "integer", "description": "Total number of items" }, "limit": { "type": "integer", "description": "Maximum items per page" }, "offset": { "type": "integer", "description": "Current offset" } } }