Mews · Schema

Currency value (ver 2018-06-07)

Total price of the reservation.

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Currency string
Value number
Net number
Tax number
TaxRate number
View JSON Schema on GitHub

JSON Schema

mews-currencyvalueold-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurrencyValueOld",
  "title": "Currency value (ver 2018-06-07)",
  "required": [
    "Currency"
  ],
  "type": "object",
  "properties": {
    "Currency": {
      "minLength": 1,
      "type": "string",
      "format": "currency"
    },
    "Value": {
      "type": "number",
      "format": "double",
      "nullable": true
    },
    "Net": {
      "type": "number",
      "format": "double",
      "nullable": true,
      "deprecated": true
    },
    "Tax": {
      "type": "number",
      "format": "double",
      "nullable": true,
      "deprecated": true
    },
    "TaxRate": {
      "type": "number",
      "format": "double",
      "nullable": true,
      "deprecated": true
    }
  },
  "additionalProperties": false,
  "description": "Total price of the reservation.",
  "x-schema-id": "CurrencyValueOld"
}