{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/hubspot/refs/heads/main/json-schema/commerce-payments-api-paging-schema.json", "title": "Paging", "description": "Pagination information", "type": "object", "properties": { "next": { "type": "object", "properties": { "after": { "type": "string", "description": "Cursor for the next page" }, "link": { "type": "string", "description": "Link to the next page" } }, "example": { "after": "example-value", "link": "https://app.hubspot.com/contacts/12345" } }, "prev": { "type": "object", "properties": { "before": { "type": "string", "description": "Cursor for the previous page" }, "link": { "type": "string", "description": "Link to the previous page" } }, "example": { "before": "example-value", "link": "https://app.hubspot.com/contacts/12345" } } } }