Mews · Schema

Company update classifications

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Corporate object Corporate (or `null` if the value should not be updated).
Internal object Internal (or `null` if the value should not be updated).
Private object Private (or `null` if the value should not be updated).
OnlineTravelAgency object Online travel agency (or `null` if the value should not be updated).
GlobalDistributionSystem object Global distribution system (or `null` if the value should not be updated).
Marketing object Marketing (or `null` if the value should not be updated).
Inactive object Inactive (or `null` if the value should not be updated).
GovernmentEntity object Government Entity (or `null` if the value should not be updated).
View JSON Schema on GitHub

JSON Schema

mews-companyclassificationupdateparameters-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CompanyClassificationUpdateParameters",
  "title": "Company update classifications",
  "type": "object",
  "properties": {
    "Corporate": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Corporate (or `null` if the value should not be updated).",
      "nullable": true
    },
    "Internal": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Internal (or `null` if the value should not be updated).",
      "nullable": true
    },
    "Private": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Private (or `null` if the value should not be updated).",
      "nullable": true
    },
    "OnlineTravelAgency": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Online travel agency (or `null` if the value should not be updated).",
      "nullable": true
    },
    "GlobalDistributionSystem": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Global distribution system (or `null` if the value should not be updated).",
      "nullable": true
    },
    "Marketing": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Marketing (or `null` if the value should not be updated).",
      "nullable": true
    },
    "Inactive": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Inactive (or `null` if the value should not be updated).",
      "nullable": true
    },
    "GovernmentEntity": {
      "title": "Boolean update value",
      "allOf": [
        {
          "$ref": "#/components/schemas/BooleanUpdateValue"
        }
      ],
      "description": "Government Entity (or `null` if the value should not be updated).",
      "nullable": true
    }
  },
  "additionalProperties": false,
  "x-schema-id": "CompanyClassificationUpdateParameters"
}