Object
Room
A room of the flat. Bathrooms carry no beds; a living room may.
Fields
| Field | Type | Description |
|---|---|---|
| kind | enum | "bedroom""living_room""full_bathroom""half_bathroom""other" |
| name | string | Empty when the room has no name of its own. |
| beds | Bed[] |
Object
A room of the flat. Bathrooms carry no beds; a living room may.
| Field | Type | Description |
|---|---|---|
| kind | enum | "bedroom""living_room""full_bathroom""half_bathroom""other" |
| name | string | Empty when the room has no name of its own. |
| beds | Bed[] |
Example
{
"kind": "bedroom",
"name": "",
"beds": [
{
"type": "queen",
"count": 1
}
]
}