Lightspeed · Schema
reservation-servicePlatformCourseSettingsDto
reservation-servicePlatformCourseSettingsDto schema from Lightspeed Restaurant K Series API
POSRetailRestaurantEcommerce
Properties
| Name | Type | Description |
|---|---|---|
| allowCourseNumberUpdates | boolean | If true, table statuses can be customized using a number format. |
| inServiceTableStatuses | array | List of customizable table statuses that will be used to notify platforms about reservation progress with outbound API. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "reservation-servicePlatformCourseSettingsDto",
"description": "reservation-servicePlatformCourseSettingsDto schema from Lightspeed Restaurant K Series API",
"$id": "https://raw.githubusercontent.com/api-evangelist/lightspeed-pos/refs/heads/main/json-schema/restaurant-k-series-reservation-service-platform-course-settings-dto-schema.json",
"type": "object",
"properties": {
"allowCourseNumberUpdates": {
"type": "boolean",
"example": true,
"default": false,
"description": "If true, table statuses can be customized using a number format."
},
"inServiceTableStatuses": {
"items": {
"properties": {
"statusLabel": {
"type": "string",
"example": "Appetizer",
"description": "The unique text which will be displayed in the back-office for users."
},
"statusValue": {
"type": "string",
"example": "appetizer",
"description": "The unique code which will be used for outbound communication within table status mapping."
},
"sequence": {
"format": "int32",
"type": "integer",
"example": 1,
"description": "This number is used to resolve collisions between statuses in order of highest priority."
}
},
"type": "object",
"required": [
"statusLabel",
"statusValue",
"sequence"
]
},
"type": "array",
"description": "List of customizable table statuses that will be used to notify platforms about reservation progress with outbound API."
}
}
}