Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| type | string | |
| background_color | string | |
| content | string | |
| drop_shadow_color | string | |
| href | string | |
| show_on | string | Show on. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/HeaderLinkSubBlock",
"title": "HeaderLinkSubBlock",
"type": "object",
"properties": {
"id": {
"type": "string",
"nullable": true,
"readOnly": true
},
"type": {
"type": "string",
"enum": [
"header_link_bar_button"
]
},
"background_color": {
"type": "string",
"nullable": true
},
"content": {
"nullable": true,
"type": "string"
},
"drop_shadow_color": {
"type": "string",
"nullable": true
},
"href": {
"type": "string",
"nullable": true
},
"show_on": {
"description": "Show on.",
"type": "string",
"enum": [
"all",
"desktop",
"mobile"
],
"nullable": true
}
},
"required": [
"type"
]
}