mirror of
https://github.com/divkit/divkit.git
synced 2026-05-07 20:02:32 +00:00
31 lines
628 B
JSON
31 lines
628 B
JSON
{
|
|
"type": "object",
|
|
"$description": "translations.json#/div_gradient_linear",
|
|
"properties": {
|
|
"colors": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "common.json#/color"
|
|
},
|
|
"minItems": 2,
|
|
"$description": "translations.json#/div_gradient_colors"
|
|
},
|
|
"angle": {
|
|
"type": "integer",
|
|
"constraint": "number >= 0 && number <= 360",
|
|
"default_value": "0",
|
|
"$description": "translations.json#/div_gradient_linear_angle"
|
|
},
|
|
"type": {
|
|
"type": "string",
|
|
"enum": [
|
|
"gradient"
|
|
]
|
|
}
|
|
},
|
|
"required": [
|
|
"colors",
|
|
"type"
|
|
]
|
|
}
|