Properties
| Name | Type | Description |
|---|---|---|
| CancellationPolicies | array | The filtered cancellation policies. |
| Cursor | string | Unique identifier of the last and hence oldest cancellation policy returned. This can be used in [Limitation](https://mews-systems.gitbook.io/connector-api/guidelines/pagination/#limitation) in a subs |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CancellationPolicyResult",
"title": "CancellationPolicyResult",
"required": [
"CancellationPolicies"
],
"type": "object",
"properties": {
"CancellationPolicies": {
"maxItems": 1000,
"type": "array",
"items": {
"$ref": "#/components/schemas/CancellationPolicy"
},
"description": "The filtered cancellation policies."
},
"Cursor": {
"type": "string",
"description": "Unique identifier of the last and hence oldest cancellation policy 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 older cancellation policies.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "CancellationPolicyResult"
}