Files
divkit/schema/div-action-array-set-value.json
4eb0da 28d2414749 Array set value action
02063ea2b8d8996f88b6822f2c76608057ef5728
2024-06-05 17:48:47 +03:00

33 lines
502 B
JSON

{
"type": "object",
"$description": "translations.json#/div_action_array_set_value",
"properties": {
"type": {
"type": "string",
"enum": [
"array_set_value"
]
},
"variable_name": {
"type": "string"
},
"index": {
"type": "integer"
},
"value": {
"$ref": "div-typed-value.json"
}
},
"platforms": [
"android",
"ios",
"web"
],
"required": [
"type",
"variable_name",
"index",
"value"
]
}