{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CursorPageParameters", "title": "CursorPageParameters", "type": "object", "properties": { "size": { "description": "The number of items included per page.", "type": "integer", "example": 10 }, "after": { "description": "Cursor param specifying the page (i.e. the next page) of data returned.", "type": "string", "example": "ewogICJpZCI6ICJoZWxsbyB3b3JsZCIKfQ" }, "before": { "description": "Cursor param specifying the page (i.e. the previous page) of data returned.", "type": "string", "example": "ewogICJpZCI6ICJoZWxsbyB3b3JsZCIKfQ" } } }