Files
divkit/schema/div-action-update-structure.json
burstein 0241fbd879 Supported update_structure action
commit_hash:86e65993105dd79af64e948bef3c432920ca1cd1
2025-07-04 14:01:54 +03:00

37 lines
782 B
JSON

{
"type": "object",
"$description": "translations.json#/div_action_update_structure",
"properties": {
"type": {
"type": "string",
"enum": [
"update_structure"
]
},
"variable_name": {
"type": "string",
"$description": "translations.json#/div_action_update_structure_variable_name"
},
"path": {
"type": "string",
"pattern": "^(?!\/)(.+)(?<!\/)$",
"$description": "translations.json#/div_action_update_structure_path"
},
"value": {
"$ref": "div-typed-value.json",
"$description": "translations.json#/div_action_update_structure_value"
}
},
"platforms": [
"android",
"ios",
"web"
],
"required": [
"type",
"variable_name",
"path",
"value"
]
}