No description available.
Record Key
tid
Timestamp-based ID
Properties
alt
string
Required
Alt text description of the image, for accessibility.
aspectRatio
ref
social.grain.defs#aspectRatio
Optional
No description available.
createdAt
string
datetime
Optional
An RFC 3339 formatted timestamp.
photo
blob
Required
No description available.
maxSize: 1.0 MBView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"photo",
"alt"
],
"properties": {
"alt": {
"type": "string",
"description": "Alt text description of the image, for accessibility."
},
"photo": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 1000000
},
"createdAt": {
"type": "string",
"format": "datetime"
},
"aspectRatio": {
"ref": "social.grain.defs#aspectRatio",
"type": "ref"
}
}
}
}