ServiceCreate
ServiceCreate schema used by the TheBooking public API.
Fields
| Field | Required | Type | Description |
|---|---|---|---|
name | Yes | string | Display name shown in the administration panel and booking flows. |
description | No | string | Optional text description. |
class | No | const appointment | Service type. The public contract documents appointment services only. |
color | No | string or null | Optional visual color used by the administration UI. |
Example
{
"name": "Example name",
"description": "string",
"class": "appointment",
"color": "string"
}