Links for cursor-based pagination.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginationLinks", "title": "PaginationLinks", "type": "object", "description": "Links for cursor-based pagination.", "properties": { "self": { "type": "string", "format": "uri", "description": "Link to the current page.", "example": "https://www.example.com" }, "next": { "type": "string", "format": "uri", "description": "Link to the next page of results.", "example": "https://www.example.com" }, "prev": { "type": "string", "format": "uri", "description": "Link to the previous page of results.", "example": "https://www.example.com" } } }