mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
38 lines
842 B
JSON
38 lines
842 B
JSON
{
|
|
"type": "object",
|
|
"$description": "translations.json#/div_selection_input",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"selection"
|
|
]
|
|
},
|
|
"items": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "object",
|
|
"$description": "translations.json#/div_selection_input_item",
|
|
"properties": {
|
|
"value": {
|
|
"$ref": "common.json#/non_empty_string",
|
|
"$description": "translations.json#/div_selection_input_item_value"
|
|
},
|
|
"text": {
|
|
"$ref": "common.json#/non_empty_string",
|
|
"$description": "translations.json#/div_selection_input_item_text"
|
|
}
|
|
},
|
|
"required": [
|
|
"text"
|
|
]
|
|
},
|
|
"minItems": 1
|
|
}
|
|
},
|
|
"required": [
|
|
"type",
|
|
"items"
|
|
]
|
|
}
|