Mews · Schema

Selected stay items parameters

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Nights boolean Whether the routing rule applies to nights.
CityTax boolean Whether the routing rule applies to city tax.
ProductCategoryIds array Product categories to which the routing rule applies to.
View JSON Schema on GitHub

JSON Schema

mews-routingrulestayitemsaddparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RoutingRuleStayItemsAddParameters",
  "title": "Selected stay items parameters",
  "type": "object",
  "properties": {
    "Nights": {
      "type": "boolean",
      "description": "Whether the routing rule applies to nights."
    },
    "CityTax": {
      "type": "boolean",
      "description": "Whether the routing rule applies to city tax."
    },
    "ProductCategoryIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      },
      "description": "Product categories to which the routing rule applies to.",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "description": "",
  "x-schema-id": "RoutingRuleStayItemsAddParameters"
}