Flipdish · JSON Structure

Customers Customer Structure

Defines a customer

Type: object Properties: 7
RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Customer is a JSON Structure definition published by Flipdish, describing 7 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

CustomerId Name RegistrationDate PhoneNumber CashOrdersEnabled CardOrdersEnabled MarketingEnabled

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/customers-customer-structure.json",
  "name": "Customer",
  "description": "Defines a customer",
  "type": "object",
  "properties": {
    "CustomerId": {
      "description": "Id of the customer",
      "type": "int32",
      "example": 500123
    },
    "Name": {
      "description": "Customer name",
      "type": "string",
      "example": "Example Name"
    },
    "RegistrationDate": {
      "description": "Customer registration date",
      "type": "datetime",
      "example": "2026-06-02T12:00:00Z"
    },
    "PhoneNumber": {
      "description": "Phone Number in international format",
      "type": "string",
      "example": "+353000000000"
    },
    "CashOrdersEnabled": {
      "description": "Customer can place cash orders",
      "type": "boolean",
      "example": true
    },
    "CardOrdersEnabled": {
      "description": "Customer can place card orders",
      "type": "boolean",
      "example": true
    },
    "MarketingEnabled": {
      "description": "Customer can receive marketing",
      "type": "boolean",
      "example": true
    }
  }
}