Files
divkit/schema/div-rounded-rectangle-shape.json
T
dashapalshau 9f3f1c9fc8 Add border in div-rounded-rectangle-shape
Add border in div-rounded-rectangle-shape
2023-01-11 13:29:42 +03:00

36 lines
933 B
JSON

{
"type": "object",
"$description": "translations.json#/div_rounded_rectangle_shape",
"allOf": [
{
"$ref": "div-shape-base.json"
}
],
"properties": {
"item_width": {
"$ref": "div-fixed-size.json",
"default_value": "{\"type\":\"fixed\",\"value\":10}",
"$description": "translations.json#/div_rounded_rectangle_shape_item_width"
},
"item_height": {
"$ref": "div-fixed-size.json",
"default_value": "{\"type\":\"fixed\",\"value\":10}",
"$description": "translations.json#/div_rounded_rectangle_shape_item_height"
},
"corner_radius": {
"$ref": "div-fixed-size.json",
"default_value": "{\"type\":\"fixed\",\"value\":5}",
"$description": "translations.json#/div_rounded_rectangle_shape_corner_radius"
},
"type": {
"type": "string",
"enum": [
"rounded_rectangle"
]
}
},
"required": [
"type"
]
}