An image uploaded to the garden.
Record Key
tid
Timestamp-based ID
Properties
createdAt
string
datetime
Required
Client-declared timestamp when the image was uploaded.
embed
unknown
Optional
Optional Bluesky-compatible image embed payload.
image
blob
Required
The image blob.
maxSize: 10.0 MBtitle
string
Optional
Optional title for the image.
maxLength: 2000 bytesmaxGraphemes: 200 graphemesView raw schema
{
"key": "tid",
"type": "record",
"record": {
"type": "object",
"required": [
"image",
"createdAt"
],
"properties": {
"embed": {
"type": "unknown",
"description": "Optional Bluesky-compatible image embed payload."
},
"image": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 10000000,
"description": "The image blob."
},
"title": {
"type": "string",
"maxLength": 2000,
"description": "Optional title for the image.",
"maxGraphemes": 200
},
"createdAt": {
"type": "string",
"format": "datetime",
"description": "Client-declared timestamp when the image was uploaded."
}
}
},
"description": "An image uploaded to the garden."
}