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