mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
c02c3e15d4
commit_hash:f3f8ba74ad37061ae1f827cf368088550bcb9a41
70 lines
1.7 KiB
JSON
70 lines
1.7 KiB
JSON
{
|
|
"definitions": {
|
|
"menu_item": {
|
|
"type": "object",
|
|
"properties": {
|
|
"text": {
|
|
"type": "string",
|
|
"$description": "translations.json#/div_action_menu_item_text"
|
|
},
|
|
"action": {
|
|
"$ref": "div-action.json",
|
|
"$description": "translations.json#/div_action_menu_item_action"
|
|
},
|
|
"actions": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "div-action.json"
|
|
},
|
|
"$description": "translations.json#/div_action_menu_item_actions"
|
|
}
|
|
},
|
|
"required": [
|
|
"text"
|
|
]
|
|
}
|
|
},
|
|
"allOf": [
|
|
{
|
|
"$ref": "div-action-base.json"
|
|
},
|
|
{
|
|
"type": "object",
|
|
"$description": "translations.json#/div_action",
|
|
"properties": {
|
|
"menu_items": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "#/definitions/menu_item"
|
|
},
|
|
"$description": "translations.json#/div_action_menu_items"
|
|
},
|
|
"log_url": {
|
|
"$ref": "common.json#/url",
|
|
"$description": "translations.json#/div_action_log_url"
|
|
},
|
|
"target": {
|
|
"type": "string",
|
|
"enum": [
|
|
"_self",
|
|
"_blank"
|
|
],
|
|
"force_enum_field": true,
|
|
"$description": "translations.json#/div_action_target",
|
|
"platforms": [
|
|
"web"
|
|
],
|
|
"unsupported_platforms": {
|
|
"ios": "Web specific property",
|
|
"android": "Web specific property"
|
|
},
|
|
"code_generation_disabled_swift": true
|
|
}
|
|
},
|
|
"required": [
|
|
"log_id"
|
|
]
|
|
}
|
|
]
|
|
}
|