defines an image in the gallery
Record Key
tid
Timestamp-based ID
Properties
alt
string
Optional
No description available.
maxLength: 2000 bytesaspectRatio
integer
Optional
No description available.
blurhash
string
Optional
provides a blurred preview of the image for use while loading, see github.com/woltapp/blurhash
caption
string
Optional
No description available.
maxLength: 2000 byteschecksum
string
Optional
No description available.
createdAt
string
datetime
Required
An RFC 3339 formatted timestamp.
dominantColour
string
Optional
No description available.
height
integer
Optional
No description available.
image
blob
Required
No description available.
maxSize: 32.0 MBsizeInBytes
integer
Optional
No description available.
title
string
Optional
No description available.
maxLength: 512 byteswidth
integer
Optional
No description available.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"image",
"createdAt"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 2000
},
"image": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 32000000
},
"title": {
"type": "string",
"maxLength": 512
},
"width": {
"type": "integer"
},
"height": {
"type": "integer"
},
"caption": {
"type": "string",
"maxLength": 2000
},
"blurhash": {
"type": "string",
"description": "provides a blurred preview of the image for use while loading, see github.com/woltapp/blurhash"
},
"checksum": {
"type": "string"
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"aspectRatio": {
"type": "integer"
},
"sizeInBytes": {
"type": "integer"
},
"dominantColour": {
"type": "string"
}
}
},
"description": "defines an image in the gallery"
}