Files
divkit/schema/div-action-download.json
pkurchatov 93113c7bb3 Added download action handler
commit_hash:356512da68f2ed46479425dd365d06a9ca266514
2025-01-24 19:48:07 +03:00

40 lines
815 B
JSON

{
"type": "object",
"$description": "translations.json#/div_action_download",
"properties": {
"type": {
"type": "string",
"enum": [
"download"
]
},
"url": {
"$ref": "common.json#/url",
"$description": "translations.json#/div_action_download_url"
},
"on_fail_actions": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_download_callbacks_on_fail_actions"
},
"on_success_actions": {
"type": "array",
"items": {
"$ref": "div-action.json"
},
"$description": "translations.json#/div_download_callbacks_on_success_actions"
}
},
"platforms": [
"android",
"ios",
"web"
],
"required": [
"type",
"url"
]
}