No description available.
Record Key
tid
Timestamp-based ID
Properties
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"image",
"alt",
"createdAt"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 20000,
"description": "Alt text for the image.",
"maxGraphemes": 2000
},
"image": {
"type": "blob",
"accept": [
"image/jpeg",
"image/png",
"image/webp",
"image/gif",
"image/avif",
"image/heic"
],
"maxSize": 50000000,
"description": "The original image file."
},
"createdAt": {
"type": "string",
"format": "datetime"
}
}
}
}