Files
divkit/schema/div-action-set-variable.json
T
2023-09-05 16:25:19 +03:00

24 lines
402 B
JSON

{
"type": "object",
"$description": "translations.json#/div_action_set_variable",
"properties": {
"type": {
"type": "string",
"enum": [
"set_variable"
]
},
"variable_name": {
"$ref": "common.json#/non_empty_string"
},
"value": {
"$ref": "div-typed-value.json"
}
},
"required": [
"type",
"variable_name",
"value"
]
}