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