A photo in an atview gallery. Stores the image blob alongside accessibility text, an optional caption, and categorization tags.
Record Key
tid
Timestamp-based ID
Properties
alt
string
Optional
Alt text describing the photo for accessibility.
maxLength: 5000 bytesmaxGraphemes: 500 graphemesblob
blob
Required
The photo image file. May be up to 2 MB.
maxSize: 10.0 MBdescription
string
Optional
Optional caption or longer description of the photo.
maxLength: 10000 bytesmaxGraphemes: 1000 graphemestags
array
of
string
Optional
Tags used to categorize or filter gallery photos. Avoid prepending tags with hashtags.
View raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"blob"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 5000,
"description": "Alt text describing the photo for accessibility.",
"maxGraphemes": 500
},
"blob": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 10000000,
"description": "The photo image file. May be up to 2 MB."
},
"tags": {
"type": "array",
"items": {
"type": "string",
"maxLength": 1280,
"maxGraphemes": 128
},
"description": "Tags used to categorize or filter gallery photos. Avoid prepending tags with hashtags."
},
"description": {
"type": "string",
"maxLength": 10000,
"description": "Optional caption or longer description of the photo.",
"maxGraphemes": 1000
}
}
},
"description": "A photo in an atview gallery. Stores the image blob alongside accessibility text, an optional caption, and categorization tags."
}