mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
24 lines
379 B
JSON
24 lines
379 B
JSON
{
|
|
"type": "object",
|
|
"$description": "translations.json#/div_action_set_variable",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"set_variable"
|
|
]
|
|
},
|
|
"variable_name": {
|
|
"type": "string"
|
|
},
|
|
"value": {
|
|
"$ref": "div-typed-value.json"
|
|
}
|
|
},
|
|
"required": [
|
|
"type",
|
|
"variable_name",
|
|
"value"
|
|
]
|
|
}
|