Mews · Schema

Tax breakdown item

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
TaxRateCode string Tax rate code for the item. `null` for untaxed amounts.
NetValue number The net value that the tax is calculated from.
TaxValue number The value of the tax.
View JSON Schema on GitHub

JSON Schema

mews-taxbreakdownitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaxBreakdownItem",
  "title": "Tax breakdown item",
  "required": [
    "NetValue",
    "TaxValue"
  ],
  "type": "object",
  "properties": {
    "TaxRateCode": {
      "type": "string",
      "description": "Tax rate code for the item. `null` for untaxed amounts.",
      "nullable": true
    },
    "NetValue": {
      "type": "number",
      "description": "The net value that the tax is calculated from.",
      "format": "double"
    },
    "TaxValue": {
      "type": "number",
      "description": "The value of the tax.",
      "format": "double"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "TaxBreakdownItem"
}