Lightspeed · Schema
Product
Product schema from Lightspeed Retail X-Series API
POSRetailRestaurantEcommerce
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| source_id | string | |
| handle | string | |
| sku | string | |
| name | string | |
| description | string | |
| price_excluding_tax | number | |
| brand_id | string | |
| active | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Product",
"description": "Product schema from Lightspeed Retail X-Series API",
"$id": "https://raw.githubusercontent.com/api-evangelist/lightspeed-pos/refs/heads/main/json-schema/retail-x-series-product-schema.json",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid"
},
"source_id": {
"type": "string"
},
"handle": {
"type": "string"
},
"sku": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"price_excluding_tax": {
"type": "number",
"format": "float"
},
"brand_id": {
"type": "string",
"format": "uuid"
},
"active": {
"type": "boolean"
}
}
}