A 3D object that can be placed in a room.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
model
blob
Required
No description available.
maxSize: 10.5 MBname
string
Required
No description available.
maxLength: 100 bytesnameLangs
array
of
ref
#localizedName
Optional
No description available.
scale
integer
Required
No description available.
minimum: 1maximum: 1000View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"model",
"scale",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 100
},
"model": {
"type": "blob",
"accept": [
"model/gltf-binary"
],
"maxSize": 10485760
},
"scale": {
"type": "integer",
"maximum": 1000,
"minimum": 1
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"nameLangs": {
"type": "array",
"items": {
"ref": "#localizedName",
"type": "ref"
}
}
}
},
"description": "A 3D object that can be placed in a room."
}