Mews · Schema

Flat tax rate strategy data

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
CurrencyCode string Code of `Currency`.
Value number Absolute value of tax.
View JSON Schema on GitHub

JSON Schema

mews-flattaxratestrategy-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FlatTaxRateStrategy",
  "title": "Flat tax rate strategy data",
  "required": [
    "CurrencyCode",
    "Value"
  ],
  "type": "object",
  "properties": {
    "CurrencyCode": {
      "minLength": 1,
      "type": "string",
      "description": "Code of `Currency`."
    },
    "Value": {
      "type": "number",
      "description": "Absolute value of tax.",
      "format": "double"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "FlatTaxRateStrategy"
}