Properties
| Name | Type | Description |
|---|---|---|
| employeeID | string | Unique employee identifier. |
| firstName | string | Employee first name. |
| lastName | string | Employee last name. |
| shopID | string | Identifier of the employee's home shop. |
| limitToShopID | string | Shop the employee is restricted to, if any. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Employee",
"description": "An employee of the retail account.",
"$id": "https://raw.githubusercontent.com/api-evangelist/lightspeed-pos/refs/heads/main/json-schema/retail-r-series-employee-schema.json",
"type": "object",
"properties": {
"employeeID": {
"type": "string",
"description": "Unique employee identifier."
},
"firstName": {
"type": "string",
"description": "Employee first name."
},
"lastName": {
"type": "string",
"description": "Employee last name."
},
"shopID": {
"type": "string",
"description": "Identifier of the employee's home shop."
},
"limitToShopID": {
"type": "string",
"description": "Shop the employee is restricted to, if any."
}
}
}