> For the complete documentation index, see [llms.txt](https://mobile-calendar.gitbook.io/v1/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mobile-calendar.gitbook.io/v1/dictionaries/room-types.md).

# Room Types

List of room types available in the system (`ROOM_TYPES`).

Each entry includes:

* **ID** (integer identifier)
* **name** (human‑readable label)
* **translation** (key used for i18n / UI)
* **description** (short explanation)

| ID | Name               | Translation          | Description                                                                         |
| -: | ------------------ | -------------------- | ----------------------------------------------------------------------------------- |
|  1 | Single Room        | `SINGLE_ROOM`        | A room with one single bed, suitable for one person.                                |
|  2 | Double Room        | `DOUBLE_ROOM`        | A room with one double bed, ideal for two people.                                   |
|  3 | Twin Room          | `TWIN_ROOM`          | A room with two single beds, suitable for two people.                               |
|  4 | Triple Room        | `TRIPLE_ROOM`        | A room designed for three people, typically with three beds.                        |
|  5 | Quad Room          | `QUAD_ROOM`          | A room for four people, often with two double beds.                                 |
|  6 | Queen Room         | `QUEEN_ROOM`         | A room with a queen-size bed.                                                       |
|  7 | King Room          | `KING_ROOM`          | A room with a king-size bed.                                                        |
|  8 | Suite              | `SUITE`              | A luxurious room with separate living and sleeping areas.                           |
|  9 | Junior Suite       | `JUNIOR_SUITE`       | A smaller suite with combined living and sleeping areas.                            |
| 10 | Family Room        | `FAMILY_ROOM`        | A room for families, offering multiple beds or additional space.                    |
| 11 | Connecting Rooms   | `CONNECTING_ROOMS`   | Two rooms connected by a door, suitable for families or groups.                     |
| 12 | Deluxe Room        | `DELUXE_ROOM`        | A room with upgraded amenities and comfort.                                         |
| 13 | Superior Room      | `SUPERIOR_ROOM`      | A room better equipped than a standard one.                                         |
| 14 | Standard Room      | `STANDARD_ROOM`      | A basic room with standard amenities.                                               |
| 15 | Studio Room        | `STUDIO_ROOM`        | A room with a bed and kitchenette, suitable for longer stays.                       |
| 16 | Apartment          | `APARTMENT`          | A self-contained unit with a kitchen and living space.                              |
| 17 | Loft               | `LOFT`               | A modern room with high ceilings and open space.                                    |
| 18 | Accessible Room    | `ACCESSIBLE_ROOM`    | A room equipped for guests with disabilities.                                       |
| 19 | Villa              | `VILLA`              | A standalone accommodation with private amenities.                                  |
| 20 | Bungalow           | `BUNGALOW`           | A single-story accommodation, often surrounded by nature.                           |
| 21 | Cabin              | `CABIN`              | A small, rustic accommodation.                                                      |
| 22 | Cottage            | `COTTAGE`            | A cozy accommodation, often located in rural settings.                              |
| 23 | Treehouse          | `TREEHOUSE`          | A room built into or around a tree, offering a unique experience.                   |
| 24 | Water Villa        | `WATER_VILLA`        | An accommodation built over water, offering luxury.                                 |
| 25 | Glamping Tent      | `GLAMPING_TENT`      | A luxurious tent equipped with high-end amenities.                                  |
| 26 | Penthouse          | `PENTHOUSE`          | A luxurious suite on the top floor with exclusive amenities.                        |
| 27 | Capsule Room       | `CAPSULE_ROOM`       | A compact sleeping capsule, common in urban areas.                                  |
| 28 | Dormitory Room     | `DORMITORY`          | A shared room with multiple beds, often in hostels.                                 |
| 28 | Bed in Dormitory   | `BED_IN_DORMITORY`   | Single bed in a dormitory, often in hostels.                                        |
| 29 | Cave Room          | `CAVE_ROOM`          | A room resembling or located within a cave.                                         |
| 30 | Ice Room           | `ICE_ROOM`           | A room made entirely of ice, found in ice hotels.                                   |
| 31 | Farmhouse Room     | `FARMHOUSE_ROOM`     | A rustic-style room located on a farm.                                              |
| 32 | Bed in Shared Room | `BED_IN_SHARED_ROOM` | A single bed in a shared room, common in hostels.                                   |
| 33 | Tatami Room        | `TATAMI_ROOM`        | A traditional Japanese room with tatami flooring.                                   |
| 34 | Railway Cabin      | `RAILWAY_CABIN`      | A small room in a railway carriage, suitable for travel stays.                      |
| 35 | Airport Pod        | `AIRPORT_POD`        | A small, compact room in an airport for short-term stays.                           |
| 36 | Safari Tent        | `SAFARI_TENT`        | A tent-style accommodation offering a safari experience.                            |
| 37 | Overwater Bungalow | `OVERWATER_BUNGALOW` | A luxurious accommodation built over water, offering stunning views.                |
| 38 | Chalet             | `CHALET`             | A wooden house typically found in mountain regions, often used for skiing holidays. |
| 39 | Holiday Home       | `HOLIDAY_HOME`       | A house rented for vacations, offering a home-like experience.                      |
| 40 | Mobile Home        | `MOBILE_HOME`        | A movable accommodation, often found in campsites or for road trips.                |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://mobile-calendar.gitbook.io/v1/dictionaries/room-types.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
