Lightspeed · Schema

Customer

Customer schema from Lightspeed Retail X-Series API

POSRetailRestaurantEcommerce

Properties

Name Type Description
id string
first_name string
last_name string
email string
phone string
customer_code string
View JSON Schema on GitHub

JSON Schema

retail-x-series-customer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Customer",
  "description": "Customer schema from Lightspeed Retail X-Series API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lightspeed-pos/refs/heads/main/json-schema/retail-x-series-customer-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "first_name": {
      "type": "string"
    },
    "last_name": {
      "type": "string"
    },
    "email": {
      "type": "string",
      "format": "email"
    },
    "phone": {
      "type": "string"
    },
    "customer_code": {
      "type": "string"
    }
  }
}