Properties
View raw schema
{
"type": "object",
"required": [
"image",
"alt"
],
"properties": {
"alt": {
"type": "string",
"description": "Alt text description of the image, for accessibility"
},
"image": {
"type": "blob",
"accept": [
"image/*"
],
"maxSize": 1000000
}
}
}