Files
divkit/schema/div-separator.json
grechka62 e79b1afdb0 Remove unused java_extends field from scheme
commit_hash:ea39cabc26e139790e36bcfe3e93f889d85c1241
2024-10-17 18:24:43 +03:00

55 lines
1.1 KiB
JSON

{
"$description": "translations.json#/div_separator",
"definitions": {
"style": {
"type": "object",
"properties": {
"color": {
"$ref": "common.json#/color",
"default_value": "#14000000",
"$description": "translations.json#/div_separator_style_color"
},
"orientation": {
"type": "string",
"enum": [
"vertical",
"horizontal"
],
"default_value": "horizontal",
"$description": "translations.json#/div_separator_style_orientation"
}
}
}
},
"allOf": [
{
"$ref": "div-base.json"
},
{
"$ref": "div-actionable.json"
},
{
"properties": {
"delimiter_style": {
"$ref": "#/definitions/style",
"$description": "translations.json#/div_separator_delimiter_style"
},
"type": {
"type": "string",
"enum": [
"separator"
]
}
},
"platforms": [
"android",
"ios",
"web"
],
"required": [
"type"
]
}
]
}