A file
Record Key
tid
Timestamp-based ID
Properties
blob
blob
Required
No description available.
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
name
string
Optional
No description available.
maxLength: 255 bytesthumbnail
blob
Optional
No description available.
maxSize: 102.4 KBupdatedAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"blob"
],
"properties": {
"blob": {
"type": "blob",
"accept": [
"*/*"
]
},
"name": {
"type": "string",
"maxLength": 255
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"thumbnail": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 102400
},
"updatedAt": {
"type": "string",
"format": "datetime"
}
}
},
"description": "A file"
}