Paytronix · Schema

Customer

Customer schema from Paytronix Online Ordering API

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Properties

Name Type Description
firstName string
lastName string
email string
phone string
View JSON Schema on GitHub

JSON Schema

online-ordering-api-customer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Customer",
  "description": "Customer schema from Paytronix Online Ordering API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/online-ordering-api-customer-schema.json",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "Jane"
    },
    "lastName": {
      "type": "string",
      "example": "Doe"
    },
    "email": {
      "type": "string",
      "example": "[email protected]"
    },
    "phone": {
      "type": "string",
      "example": "+16175551234"
    }
  }
}