{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Paging", "title": "Paging", "type": "object", "required": [ "page", "perPage", "total", "pages" ], "properties": { "page": { "type": "integer", "description": "Page number of the gift card list.", "example": 0 }, "perPage": { "type": "integer", "description": "Quantity of gift cards per page.", "example": 10 }, "total": { "type": "integer", "description": "Total of gift cards in the store.", "example": 4 }, "pages": { "type": "integer", "description": "Total number of pages.", "example": 1 } } }