{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginationResponse", "title": "PaginationResponse", "type": "object", "description": "Pagination metadata included in list responses.", "properties": { "next": { "type": "string", "description": "Token or cursor for retrieving the next page of results." }, "last": { "type": "string", "description": "Token or cursor for the last page of results." }, "time": { "type": "string", "format": "date-time", "description": "Server time at which the paginated query was executed." } } }