Otter · Schema

LoyaltyInfo

The customer's loyalty information.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
hasMembershipPass boolean Indicates if the customer has a membership pass.
View JSON Schema on GitHub

JSON Schema

public-api-loyalty-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LoyaltyInfo",
  "description": "The customer's loyalty information.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-loyalty-info-schema.json",
  "type": "object",
  "properties": {
    "hasMembershipPass": {
      "type": "boolean",
      "description": "Indicates if the customer has a membership pass.",
      "example": true
    }
  }
}