Files
divkit/schema/div-action-set-variable.json
2023-12-07 12:05:50 +03:00

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"
]
}