Mews · Schema

Product classifications

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Food boolean Product is classified as food.
Beverage boolean Product is classified as beverage.
Wellness boolean Product is classified as wellness.
CityTax boolean Product is classified as city tax.
Fee boolean Product is classified as fee.
View JSON Schema on GitHub

JSON Schema

mews-productclassifications-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProductClassifications",
  "title": "Product classifications",
  "type": "object",
  "properties": {
    "Food": {
      "type": "boolean",
      "description": "Product is classified as food."
    },
    "Beverage": {
      "type": "boolean",
      "description": "Product is classified as beverage."
    },
    "Wellness": {
      "type": "boolean",
      "description": "Product is classified as wellness."
    },
    "CityTax": {
      "type": "boolean",
      "description": "Product is classified as city tax."
    },
    "Fee": {
      "type": "boolean",
      "description": "Product is classified as fee."
    }
  },
  "additionalProperties": false,
  "description": "",
  "x-schema-id": "ProductClassifications"
}