Flipdish · Schema

CustomerSummary

Customer summary

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
Id integer Customer identifier
Name string Customer name
EmailAddress string Customer email address
PhoneNumberLocalFormat string Customer local phone number
PhoneNumber string Customer phone number
LanguagePreference string Preferred language of the consumer
View JSON Schema on GitHub

JSON Schema

customers-customer-summary-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/customers-customer-summary-schema.json",
  "title": "CustomerSummary",
  "description": "Customer summary",
  "type": "object",
  "properties": {
    "Id": {
      "format": "int32",
      "description": "Customer identifier",
      "type": "integer",
      "example": 500123
    },
    "Name": {
      "description": "Customer name",
      "type": "string",
      "example": "Example Name"
    },
    "EmailAddress": {
      "description": "Customer email address",
      "type": "string",
      "example": "[email protected]"
    },
    "PhoneNumberLocalFormat": {
      "description": "Customer local phone number",
      "type": "string",
      "example": "2026-06-02T12:00:00Z"
    },
    "PhoneNumber": {
      "description": "Customer phone number",
      "type": "string",
      "example": "+353000000000"
    },
    "LanguagePreference": {
      "description": "Preferred language of the consumer",
      "type": "string",
      "example": "string"
    }
  }
}