Paytronix · JSON Structure

Online Ordering Api Customer Structure

Customer schema from Paytronix Online Ordering API

Type: object Properties: 4
RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

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

Properties

firstName lastName email phone

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/paytronix/refs/heads/main/json-structure/online-ordering-api-customer-structure.json",
  "name": "Customer",
  "description": "Customer schema from Paytronix Online Ordering API",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "Jane"
    },
    "lastName": {
      "type": "string",
      "example": "Doe"
    },
    "email": {
      "type": "string",
      "example": "jane@example.com"
    },
    "phone": {
      "type": "string",
      "example": "+16175551234"
    }
  }
}