Mews · Schema

Tax value

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Code string Code corresponding to tax type.
Value number Amount of tax applied.
View JSON Schema on GitHub

JSON Schema

mews-taxvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TaxValue",
  "title": "Tax value",
  "required": [
    "Value"
  ],
  "type": "object",
  "properties": {
    "Code": {
      "type": "string",
      "description": "Code corresponding to tax type.",
      "nullable": true
    },
    "Value": {
      "type": "number",
      "description": "Amount of tax applied.",
      "format": "double"
    }
  },
  "additionalProperties": false,
  "x-schema-id": "TaxValue"
}