Properties
| Name | Type | Description |
|---|---|---|
| Id | string | Unique identifier of the reservation group. |
| Name | string | Name of the reservation group, might be empty or same for multiple groups. |
| ChannelManager | string | Name of the corresponding channel manager. |
| ChannelManagerGroupNumber | string | Identifier of the channel manager. |
| EnterpriseId | string | Unique identifier of the `Enterprise` the reservation group belongs to. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ReservationGroup",
"title": "Reservation Group",
"required": [
"EnterpriseId",
"Id"
],
"type": "object",
"properties": {
"Id": {
"type": "string",
"description": "Unique identifier of the reservation group.",
"format": "uuid"
},
"Name": {
"type": "string",
"description": "Name of the reservation group, might be empty or same for multiple groups.",
"nullable": true
},
"ChannelManager": {
"type": "string",
"description": "Name of the corresponding channel manager.",
"nullable": true
},
"ChannelManagerGroupNumber": {
"type": "string",
"description": "Identifier of the channel manager.",
"nullable": true
},
"EnterpriseId": {
"type": "string",
"description": "Unique identifier of the `Enterprise` the reservation group belongs to.",
"format": "uuid"
}
},
"additionalProperties": false,
"x-schema-id": "ReservationGroup"
}