No description available.
Record Key
tid
Timestamp-based ID
Properties
color
string
Required
Lowercase #rrggbb hex. Top-face color; the renderer derives the side-face shades.
maxLength: 7 bytesminLength: 7 bytescreatedAt
string
datetime
Required
Client-supplied creation timestamp. UTC.
kind
string
Required
Which procedural shape the renderer composes for this item. Clients must ignore items whose kind they don't recognise (forward compatibility for future kinds).
Known values:
chair, table, plant, lamp, crate, rugname
string
Optional
Optional human label for the item — shown in the inventory UI.
maxLength: 60 bytesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"kind",
"color",
"createdAt"
],
"properties": {
"kind": {
"type": "string",
"description": "Which procedural shape the renderer composes for this item. Clients must ignore items whose kind they don't recognise (forward compatibility for future kinds).",
"knownValues": [
"chair",
"table",
"plant",
"lamp",
"crate",
"rug"
]
},
"name": {
"type": "string",
"maxLength": 60,
"description": "Optional human label for the item — shown in the inventory UI."
},
"color": {
"type": "string",
"maxLength": 7,
"minLength": 7,
"description": "Lowercase #rrggbb hex. Top-face color; the renderer derives the side-face shades."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-supplied creation timestamp. UTC."
}
}
}
}