{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Links", "title": "Links", "description": "Pagination links for the previous and next parts of the whole collection.", "type": "object", "properties": { "previous": { "description": "Link to the previous page returned in the response.", "type": "string" }, "current": { "description": "Link to the current page returned in the response.", "type": "string" }, "next": { "description": "Link to the next page returned in the response.", "type": "string" } } }