Otter · Schema

CustomerTip

CustomerTip schema from Public API (Otter Public API).

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
value number The amount that the customer tipped.
View JSON Schema on GitHub

JSON Schema

public-api-customer-tip-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "CustomerTip",
  "description": "CustomerTip schema from Public API (Otter Public API).",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-customer-tip-schema.json",
  "type": "object",
  "properties": {
    "value": {
      "type": "number",
      "description": "The amount that the customer tipped.",
      "example": 2
    }
  },
  "required": [
    "value"
  ]
}