Record containing a camo pattern for a lance.blue player
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"name",
"image",
"createdAt"
],
"properties": {
"name": {
"type": "string",
"maxLength": 640,
"minLength": 1,
"description": "Display name for the camo.",
"maxGraphemes": 64
},
"image": {
"type": "blob",
"accept": [
"image/png"
],
"maxSize": 1000000,
"description": "The camo image file (intended to be 84x72)."
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when this camo was originally created."
}
}
},
"description": "Record containing a camo pattern for a lance.blue player"
}