mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
8a230d6533
radial gradient schema
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"type": "object",
|
|
"$description": "translations.json#/div_gradient_radial",
|
|
"properties": {
|
|
"colors": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "common.json#/color"
|
|
},
|
|
"minItems": 2,
|
|
"clientMinItems": 2,
|
|
"$description": "translations.json#/div_gradient_colors"
|
|
},
|
|
"radius": {
|
|
"$ref": "div-radial-gradient-radius.json",
|
|
"default_value": "{\"type\": \"relative\", \"value\": \"farthest_corner\" }",
|
|
"$description": "translations.json#/div_gradient_radial_radius"
|
|
},
|
|
"center_x": {
|
|
"$ref": "div-radial-gradient-center.json",
|
|
"default_value": "{\"type\": \"relative\", \"value\": 0.5 }",
|
|
"$description": "translations.json#/div_gradient_radial_center_x"
|
|
},
|
|
"center_y": {
|
|
"$ref": "div-radial-gradient-center.json",
|
|
"default_value": "{\"type\": \"relative\", \"value\": 0.5 }",
|
|
"$description": "translations.json#/div_gradient_radial_center_y"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"radial_gradient"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"colors",
|
|
"type"
|
|
]
|
|
}
|