Mews · Schema

Taxation

Taxation represents set of `TaxRate` within `TaxEnvironment`.

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Code string Code of the taxation.
Name string Name of the taxation.
LocalName string Local name of the taxation.
View JSON Schema on GitHub

JSON Schema

mews-taxation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Taxation",
  "title": "Taxation",
  "required": [
    "Code",
    "LocalName",
    "Name"
  ],
  "type": "object",
  "properties": {
    "Code": {
      "minLength": 1,
      "type": "string",
      "description": "Code of the taxation."
    },
    "Name": {
      "minLength": 1,
      "type": "string",
      "description": "Name of the taxation."
    },
    "LocalName": {
      "minLength": 1,
      "type": "string",
      "description": "Local name of the taxation."
    }
  },
  "additionalProperties": false,
  "description": "Taxation represents set of `TaxRate` within `TaxEnvironment`.",
  "x-schema-id": "Taxation"
}