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

# 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
