Mews · Schema

Added reservation

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Identifier string Identifier of the reservation within the transaction.
Reservation object The added reservation.
View JSON Schema on GitHub

JSON Schema

mews-addedreservation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddedReservation",
  "title": "Added reservation",
  "required": [
    "Reservation"
  ],
  "type": "object",
  "properties": {
    "Identifier": {
      "type": "string",
      "description": "Identifier of the reservation within the transaction.",
      "nullable": true
    },
    "Reservation": {
      "title": "Reservation (ver 2017-04-12)",
      "allOf": [
        {
          "$ref": "#/components/schemas/ReservationOld"
        }
      ],
      "description": "The added reservation."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "AddedReservation"
}