Aller au contenu principal

RoomSpecification

Represents the specification of a room within the property, including its name, surface area, orientation, type, and floor.

name object

The name or description of the room, such as 'Living Room' or 'Child's Room'.

anyOf
string
surfaceSurface (number)required

The surface area of the room in square meters.

Possible values: > 0

orientation object

The orientation of the room relative to cardinal directions. This field is optional.

anyOf
string
type object

The type of room, such as 'living_room', 'kitchen', etc. This field is optional.

anyOf
string
floor object

The floor on which the room is located. For example, 0 for ground floor, 1 for first floor, etc.

anyOf
integer
RoomSpecification
{
"name": "string",
"surface": 0,
"orientation": "string",
"type": "string",
"floor": 0
}