{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ServiceOrderState",
"title": "Service order state",
"enum": [
"Inquired",
"Confirmed",
"Started",
"Processed",
"Canceled",
"Optional",
"Requested"
],
"type": "string",
"x-enumDescriptions": [
"Confirmed neither by the customer nor enterprise.",
"Confirmed by both parties, before check-in.",
"Checked in.",
"Checked out.",
"Canceled.",
"Confirmed by enterprise but not by the guest (the enterprise is holding resource for the guest).",
"Confirmed by the customer but not by the enterprise (waitlist)."
]
}