Lightspeed · Schema

Brand

Brand schema from Lightspeed Retail X-Series API

POSRetailRestaurantEcommerce

Properties

Name Type Description
id string
name string
description string
deleted_at string
View JSON Schema on GitHub

JSON Schema

retail-x-series-brand-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Brand",
  "description": "Brand schema from Lightspeed Retail X-Series API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/lightspeed-pos/refs/heads/main/json-schema/retail-x-series-brand-schema.json",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "deleted_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  }
}