Files
divkit/schema/div-linear-gradient.json
2023-02-27 19:35:52 +03:00

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"
]
}