Mews · Schema

ExchangeRateResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
ExchangeRates array The available exchange rates.
View JSON Schema on GitHub

JSON Schema

mews-exchangerateresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExchangeRateResult",
  "title": "ExchangeRateResult",
  "required": [
    "ExchangeRates"
  ],
  "type": "object",
  "properties": {
    "ExchangeRates": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ExchangeRate"
      },
      "description": "The available exchange rates."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "ExchangeRateResult"
}