No description available.
Properties
alt
string
Required
Alt text description of the image for accessibility. May be empty.
maxLength: 20000 bytesmaxGraphemes: 2000 graphemesaspectRatio
ref
net.atchan.embed.defs#aspectRatio
Optional
No description available.
filename
string
Required
Name of the file as uploaded
maxLength: 2600 bytesmaxGraphemes: 260 graphemesimage
blob
Required
The image represented as bytes
maxSize: 26.2 MBView raw schema
{
"type": "object",
"required": [
"filename",
"image",
"alt"
],
"properties": {
"alt": {
"type": "string",
"maxLength": 20000,
"description": "Alt text description of the image for accessibility. May be empty.",
"maxGraphemes": 2000
},
"image": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 26214400,
"description": "The image represented as bytes"
},
"filename": {
"type": "string",
"maxLength": 2600,
"description": "Name of the file as uploaded",
"maxGraphemes": 260
},
"aspectRatio": {
"ref": "net.atchan.embed.defs#aspectRatio",
"type": "ref"
}
}
}