Lightspeed · Schema

Account

A Lightspeed Retail R-Series account.

POSRetailRestaurantEcommerce

Properties

Name Type Description
accountID string Unique numeric account identifier.
name string Account / business name.
link string API self-link for the account.
View JSON Schema on GitHub

JSON Schema

retail-r-series-account-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Account",
  "description": "A Lightspeed Retail R-Series account.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lightspeed-pos/refs/heads/main/json-schema/retail-r-series-account-schema.json",
  "type": "object",
  "properties": {
    "accountID": {
      "type": "string",
      "description": "Unique numeric account identifier."
    },
    "name": {
      "type": "string",
      "description": "Account / business name."
    },
    "link": {
      "type": "string",
      "description": "API self-link for the account."
    }
  }
}