Mews · Schema

Reservation items

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
ReservationId string Unique identifier of the reservation.
Items array Accounting items associated with the reservation.
OrderItems array Order items associated with the reservation.
View JSON Schema on GitHub

JSON Schema

mews-reservationitems-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReservationItems",
  "title": "Reservation items",
  "required": [
    "Items",
    "OrderItems"
  ],
  "type": "object",
  "properties": {
    "ReservationId": {
      "type": "string",
      "description": "Unique identifier of the reservation.",
      "format": "uuid"
    },
    "Items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AccountingItem"
      },
      "description": "Accounting items associated with the reservation."
    },
    "OrderItems": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/OrderItemOld"
      },
      "description": "Order items associated with the reservation."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "ReservationItems"
}