{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CursorMetaWithSizeAndTotal", "title": "CursorMetaWithSizeAndTotal", "type": "object", "properties": { "next": { "description": "URI to the next page", "type": "string", "format": "path", "nullable": true }, "size": { "description": "Requested page size", "type": "number", "example": 10 }, "total": { "description": "Total number of objects in the collection; will only be present on the first page", "type": "number", "example": 974 } }, "required": [ "size", "next" ] }