Mews · Schema

Dependent tax rate strategy data

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Value number Tax rate, e.g. `0.1` in case of 10% tax rate.
BaseTaxationCodes array Codes of the taxations that are included in the base of calculation.
View JSON Schema on GitHub

JSON Schema

mews-dependenttaxratestrategy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DependentTaxRateStrategy",
  "title": "Dependent tax rate strategy data",
  "required": [
    "BaseTaxationCodes",
    "Value"
  ],
  "type": "object",
  "properties": {
    "Value": {
      "type": "number",
      "description": "Tax rate, e.g. `0.1` in case of 10% tax rate.",
      "format": "double"
    },
    "BaseTaxationCodes": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Codes of the taxations that are included in the base of calculation."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "DependentTaxRateStrategy"
}