Mews · Schema

CurrencyResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
Currencies array The supported currencies.
View JSON Schema on GitHub

JSON Schema

mews-currencyresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CurrencyResult",
  "title": "CurrencyResult",
  "required": [
    "Currencies"
  ],
  "type": "object",
  "properties": {
    "Currencies": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Currency"
      },
      "description": "The supported currencies."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "CurrencyResult"
}