# Room

Rooms are the locations for talks, that is, a lecture has an optional `roomId` field corresponding to the location of the lecture.

### Room Data

```javascript
{
    "capacity":99,
    "color":"#123abc",
    "mtime":1502884800000,
    "name":{
        "DE_DE":"Hilbertraum \u00e4\u00f6\u00fc\u00df",
        "EN_US":"Hilbertspace \u00e4\u00f6\u00fc\u00df"
    },
    "order":2,
    "roomId":"LwigI249nA0THrXyFX7I"
}
```

* `capacity` (optional integer): is the maximum occupancy of the location
* `color` (optional string):  a HTML color code for the location
* `mtime` (integer): is the last modification time of the record
* `name` (translated text): is the translated text name of the location
* `order` (integer): is a sort key for ordering the rooms whenever a list of rooms is presented in the UI
* `roomId` (identifier): is the ID of the room


---

# Agent Instructions: 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:

```
GET https://talque.gitbook.io/public/json-api/room.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
