Mews · Schema

Voucher assignment

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
VoucherId string Unique identifier of [Voucher](https://mews-systems.gitbook.io/connector-api/operations/#voucher).
RateId string Unique identifier of [Rate](https://mews-systems.gitbook.io/connector-api/operations/rates/#rate) the voucher is assigned with.
View JSON Schema on GitHub

JSON Schema

mews-voucherassignment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VoucherAssignment",
  "title": "Voucher assignment",
  "type": "object",
  "properties": {
    "VoucherId": {
      "type": "string",
      "description": "Unique identifier of [Voucher](https://mews-systems.gitbook.io/connector-api/operations/#voucher).",
      "format": "uuid"
    },
    "RateId": {
      "type": "string",
      "description": "Unique identifier of [Rate](https://mews-systems.gitbook.io/connector-api/operations/rates/#rate) the voucher is assigned with.",
      "format": "uuid"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "VoucherAssignment"
}