Mews · Schema

Restriction type

Stay (Guests can't stay within specified dates.) Start (Guests can't check in within specified dates.) End (Guests can't check out within specified dates.)

HospitalityHotelsPMSProperty Management
View JSON Schema on GitHub

JSON Schema

mews-restrictiontypeenum-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RestrictionTypeEnum",
  "title": "Restriction type",
  "enum": [
    "Stay",
    "Start",
    "End"
  ],
  "type": "string",
  "description": "\n\nStay (Guests can't stay within specified dates.)\n\nStart (Guests can't check in within specified dates.)\n\nEnd (Guests can't check out within specified dates.)",
  "x-enumNames": [
    "Stay",
    "Start",
    "End"
  ],
  "x-enumDescriptions": [
    "Guests can't stay within specified dates.",
    "Guests can't check in within specified dates.",
    "Guests can't check out within specified dates."
  ]
}