Properties
| Name | Type | Description |
|---|---|---|
| Id | string | Unique identifier of `Companionship`. |
| CustomerId | string | Unique identifier of Customer. |
| ReservationGroupId | string | Unique identifier of ReservationGroup. |
| ReservationId | string | Unique identifier of reservation. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Companionship",
"title": "Companionship",
"type": "object",
"properties": {
"Id": {
"type": "string",
"description": "Unique identifier of `Companionship`.",
"format": "uuid"
},
"CustomerId": {
"type": "string",
"description": "Unique identifier of Customer.",
"format": "uuid"
},
"ReservationGroupId": {
"type": "string",
"description": "Unique identifier of ReservationGroup.",
"format": "uuid"
},
"ReservationId": {
"type": "string",
"description": "Unique identifier of reservation.",
"format": "uuid",
"nullable": true
}
},
"additionalProperties": false,
"x-schema-id": "Companionship"
}