Properties
| Name | Type | Description |
|---|---|---|
| horizontal_alignment | string | Horizontal alignment enumeration. |
| width | integer | |
| padding | object | |
| background_color | string | |
| drop_shadow | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ImageStyles",
"title": "ImageStyles",
"type": "object",
"properties": {
"horizontal_alignment": {
"description": "Horizontal alignment enumeration.",
"type": "string",
"example": "center",
"default": "center",
"enum": [
"center",
"left",
"right"
]
},
"width": {
"type": "integer",
"nullable": true
},
"padding": {
"$ref": "#/components/schemas/Padding"
},
"background_color": {
"type": "string",
"nullable": true
},
"drop_shadow": {
"$ref": "#/components/schemas/ImageDropShadowStyles"
}
}
}