Flipdish · Schema

KioskEntitlementsResult

Kiosk entitlements and usage

RestaurantOnline OrderingMobile AppsPoint-of-SaleOrderMenusPaymentsWebhook

Properties

Name Type Description
EntitledQuantity integer Number of kiosk devices entitled
UsedQuantity integer The quantity of entitlements that have been used
View JSON Schema on GitHub

JSON Schema

devices-kiosk-entitlements-result-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/devices-kiosk-entitlements-result-schema.json",
  "title": "KioskEntitlementsResult",
  "description": "Kiosk entitlements and usage",
  "type": "object",
  "properties": {
    "EntitledQuantity": {
      "format": "int32",
      "description": "Number of kiosk devices entitled",
      "type": "integer",
      "example": 3
    },
    "UsedQuantity": {
      "format": "int32",
      "description": "The quantity of entitlements that have been used",
      "type": "integer",
      "example": 3
    }
  }
}