Mews · Schema

ReservationItemResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Reservations array The reservations with their items.
View JSON Schema on GitHub

JSON Schema

mews-reservationitemresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReservationItemResult",
  "title": "ReservationItemResult",
  "required": [
    "Reservations"
  ],
  "type": "object",
  "properties": {
    "Reservations": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ReservationItems"
      },
      "description": "The reservations with their items."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "ReservationItemResult"
}