Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| type | string | |
| alt_text | string | |
| asset_id | string | |
| background_color | string | |
| height | integer | |
| href | string | |
| max_width | integer | |
| show_on | string | Show on. |
| src | string | |
| width | integer |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HeaderImageSubBlock",
"title": "HeaderImageSubBlock",
"type": "object",
"properties": {
"id": {
"type": "string",
"nullable": true,
"readOnly": true
},
"type": {
"type": "string",
"enum": [
"header_link_bar_image"
]
},
"alt_text": {
"type": "string",
"nullable": true
},
"asset_id": {
"type": "string",
"nullable": true
},
"background_color": {
"type": "string",
"nullable": true
},
"height": {
"type": "integer",
"nullable": true
},
"href": {
"type": "string",
"nullable": true
},
"max_width": {
"type": "integer",
"nullable": true
},
"show_on": {
"description": "Show on.",
"type": "string",
"enum": [
"all",
"desktop",
"mobile"
],
"nullable": true
},
"src": {
"type": "string",
"nullable": true
},
"width": {
"type": "integer",
"nullable": true
}
},
"required": [
"type"
]
}