{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Pagination", "type": "object", "properties": { "prevUrl": { "description": "URL for the previous page", "type": "string", "format": "uri", "examples": [ "https://api.affinity.co/v2/foo?cursor=ICAgICAgYmVmb3JlOjo6Nw" ], "nullable": true }, "nextUrl": { "description": "URL for the next page", "type": "string", "format": "uri", "examples": [ "https://api.affinity.co/v2/foo?cursor=ICAgICAgIGFmdGVyOjo6NA" ], "nullable": true } }, "examples": [ { "prevUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgYmVmb3JlOjo6Nw", "nextUrl": "https://api.affinity.co/v2/foo?cursor=ICAgICAgIGFmdGVyOjo6NA" } ] }