{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PaymentResult", "title": "PaymentResult", "required": [ "Payments" ], "type": "object", "properties": { "Payments": { "maxItems": 1000, "type": "array", "items": { "$ref": "#/components/schemas/Payment" }, "description": "The list of filtered payments." }, "Cursor": { "type": "string", "description": "Unique identifier of the last and hence oldest payment returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subsequent request to fetch the next batch of payments.", "format": "uuid", "nullable": true } }, "additionalProperties": false, "x-schema-id": "PaymentResult" }