blue.atroom.room.object

atroom.blue

Documentation

A 3D object that can be placed in a room.

main record

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 MB
name string Required

No description available.

maxLength: 100 bytes
nameLangs array of ref #localizedName Optional

No description available.

scale integer Required

No description available.

minimum: 1maximum: 1000
View 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."
}
localizedName object

No description available.

Properties

lang string Required

No description available.

maxLength: 16 bytes
value string Required

No description available.

maxLength: 100 bytes
View raw schema
{
  "type": "object",
  "required": [
    "lang",
    "value"
  ],
  "properties": {
    "lang": {
      "type": "string",
      "maxLength": 16
    },
    "value": {
      "type": "string",
      "maxLength": 100
    }
  }
}

Lexicon Garden

@