Files
divkit/schema/div-circle-shape.json
T
2023-01-20 08:57:47 +03:00

29 lines
509 B
JSON

{
"type": "object",
"$description": "translations.json#/div_circle_shape",
"allOf": [
{
"$ref": "div-shape-base.json"
}
],
"properties": {
"radius": {
"$ref": "div-fixed-size.json",
"default_value": "{\"type\":\"fixed\",\"value\":10}",
"$description": "translations.json#/div_circle_shape_radius"
},
"type": {
"type": "string",
"enum": [
"circle"
]
}
},
"required": [
"type"
],
"platforms": [
"android"
]
}