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

27 lines
460 B
JSON

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