Mews · Schema

Relative tax rate strategy data

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Value number Tax rate, e.g. `0.21` in case of 21% tax rate.
View JSON Schema on GitHub

JSON Schema

mews-relativetaxratestrategy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RelativeTaxRateStrategy",
  "title": "Relative tax rate strategy data",
  "required": [
    "Value"
  ],
  "type": "object",
  "properties": {
    "Value": {
      "type": "number",
      "description": "Tax rate, e.g. `0.21` in case of 21% tax rate.",
      "format": "double"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "RelativeTaxRateStrategy"
}