Properties
| Name | Type | Description |
|---|---|---|
| size | string | Side image size enumeration. |
| alignment | string | Side image alignment enumeration. |
| device_type | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SideImageSettings",
"title": "SideImageSettings",
"type": "object",
"properties": {
"size": {
"description": "Side image size enumeration.",
"type": "string",
"example": "medium",
"default": "medium",
"enum": [
"large",
"medium",
"small"
]
},
"alignment": {
"description": "Side image alignment enumeration.",
"type": "string",
"example": "left",
"default": "left",
"enum": [
"left",
"right"
]
},
"device_type": {
"type": "array",
"items": {
"type": "string",
"enum": [
"both",
"desktop",
"mobile"
],
"description": "Enumeration for mobile and desktop."
}
}
}
}