Files
divkit/schema/div-switch.json
4eb0da f6208c4b29 Switch component
commit_hash:9a156ec3c42833d1d88d8bf763a2817ef4d0ab6a
2024-11-25 14:28:02 +03:00

41 lines
859 B
JSON

{
"$description": "translations.json#/div_switch",
"allOf": [
{
"$ref": "div-base.json"
},
{
"properties": {
"type": {
"type": "string",
"enum": [
"switch"
]
},
"is_on_variable": {
"$ref": "div-variable-name.json",
"$description": "translations.json#/div_switch_is_on_variable"
},
"is_enabled": {
"$ref": "common.json#/boolean_int",
"default_value": "true",
"$description": "translations.json#/div_switch_is_enabled"
},
"on_color": {
"$ref": "common.json#/color",
"$description": "translations.json#/div_switch_on_color"
}
}
}
],
"platforms": [
"ios",
"android",
"web"
],
"required": [
"type",
"is_on_variable"
]
}