Lunchbox · JSON Structure

Loyalty User Wallet Create Structure

UserWalletCreate schema from Lunchbox Loyalty API

Type: object Properties: 5 Required: 1
RestaurantOnline OrderingGuest EngagementCateringMenusOrdersLoyaltyEnterprise

UserWalletCreate is a JSON Structure definition published by Lunchbox, describing 5 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

firstName lastName birthdate 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/lunchbox/refs/heads/main/json-structure/loyalty-user-wallet-create-structure.json",
  "name": "UserWalletCreate",
  "description": "UserWalletCreate schema from Lunchbox Loyalty API",
  "type": "object",
  "properties": {
    "firstName": {
      "type": "string",
      "example": "John"
    },
    "lastName": {
      "type": "string",
      "example": "Smith"
    },
    "birthdate": {
      "type": "date",
      "example": "1990-05-21"
    },
    "email": {
      "type": "string",
      "example": "demo@lunchbox.io"
    },
    "phone": {
      "type": "string",
      "example": "2125551411"
    }
  },
  "required": [
    "email"
  ]
}