{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaginationLinks", "title": "PaginationLinks", "properties": { "first": { "description": "The first page.", "$ref": "#/components/schemas/LinksElement" }, "last": { "description": "The last page.", "$ref": "#/components/schemas/LinksElement" }, "next": { "description": "The next page. Only present if there is a next page.", "$ref": "#/components/schemas/LinksElement" }, "prev": { "description": "The previous page. Only present if there is a previous page.", "$ref": "#/components/schemas/LinksElement" }, "self": { "description": "The current page.", "$ref": "#/components/schemas/LinksElement" } }, "required": [ "self", "first", "last" ], "type": "object" }