Mews · Schema

SourceAssignmentResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
SourceAssignments array Assignments between reservation group and sources.
Cursor string Unique identifier of the last and hence oldest source assignment returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older source assignments.
View JSON Schema on GitHub

JSON Schema

mews-sourceassignmentresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SourceAssignmentResult",
  "title": "SourceAssignmentResult",
  "required": [
    "Cursor",
    "SourceAssignments"
  ],
  "type": "object",
  "properties": {
    "SourceAssignments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SourceAssignment"
      },
      "description": "Assignments between reservation group and sources."
    },
    "Cursor": {
      "type": "string",
      "description": "Unique identifier of the last and hence oldest source assignment returned. This can be used in `Limitation` in a subsequent request to fetch the next batch of older source assignments.",
      "format": "uuid"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "SourceAssignmentResult"
}