A room layout with placed objects.
any
Any valid record key
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
floor
ref
#floor
Required
No description available.
furnishings
array
of
ref
#furnishing
Required
No description available.
maxLength: 100 itemssize
integer
Required
Room size in millimeters (square room).
minimum: 1000maximum: 20000wall
ref
#wall
Required
No description available.
View raw schema
{
"key": "any",
"type": "record",
"record": {
"type": "object",
"required": [
"size",
"floor",
"wall",
"furnishings",
"createdAt"
],
"properties": {
"size": {
"type": "integer",
"maximum": 20000,
"minimum": 1000,
"description": "Room size in millimeters (square room)."
},
"wall": {
"ref": "#wall",
"type": "ref"
},
"floor": {
"ref": "#floor",
"type": "ref"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"furnishings": {
"type": "array",
"items": {
"ref": "#furnishing",
"type": "ref"
},
"maxLength": 100
}
}
},
"description": "A room layout with placed objects."
}