Mews · Schema

LoyaltyTierWriteResult

HospitalityHotelsPMSProperty Management

Properties

Name Type Description
LoyaltyTiers array The loyalty tiers of the loyalty program within the chain.
View JSON Schema on GitHub

JSON Schema

mews-loyaltytierwriteresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LoyaltyTierWriteResult",
  "title": "LoyaltyTierWriteResult",
  "required": [
    "LoyaltyTiers"
  ],
  "type": "object",
  "properties": {
    "LoyaltyTiers": {
      "maxItems": 1000,
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LoyaltyTier"
      },
      "description": "The loyalty tiers of the loyalty program within the chain."
    }
  },
  "additionalProperties": false,
  "x-schema-id": "LoyaltyTierWriteResult"
}