{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CursorMetaPage", "title": "CursorMetaPage", "type": "object", "properties": { "first": { "description": "URI to the first page", "type": "string", "format": "path" }, "last": { "description": "URI to the last page", "type": "string", "format": "path" }, "next": { "description": "URI to the next page", "type": "string", "format": "path", "nullable": true }, "previous": { "description": "URI to the previous page", "type": "string", "format": "path", "nullable": true }, "size": { "description": "Requested page size", "type": "number", "example": 10 } }, "required": [ "size", "next", "previous" ] }