Copy
Ask AI
{
"type": "object",
"properties": {
"type": {
"const": "Image",
"default": "Image",
"type": "string"
},
"cssClass": {
"type": [
"string",
"null"
],
"default": null,
"description": "CSS/Tailwind classes for styling"
},
"src": {
"description": "Image URL",
"type": "string"
},
"alt": {
"default": "",
"description": "Alt text",
"type": "string"
},
"width": {
"type": [
"string",
"null"
],
"default": null,
"description": "CSS width"
},
"height": {
"type": [
"string",
"null"
],
"default": null,
"description": "CSS height"
}
},
"required": [
"type",
"src"
]
}