Files
divkit/schema/div-image-background.json
T
2022-11-01 14:29:07 +03:00

63 lines
1.6 KiB
JSON

{
"type": "object",
"$description": "translations.json#/div_image_background",
"properties": {
"image_url": {
"$ref": "common.json#/url",
"$description": "translations.json#/div_image_background_image_url"
},
"content_alignment_vertical": {
"$ref": "div-alignment-vertical.json",
"default_value": "center",
"$description": "translations.json#/div_image_background_content_alignment_vertical"
},
"content_alignment_horizontal": {
"$ref": "div-alignment-horizontal.json",
"default_value": "center",
"$description": "translations.json#/div_image_background_content_alignment_horizontal"
},
"scale": {
"$ref": "div-image-scale.json",
"default_value": "fill",
"$description": "translations.json#/div_image_background_scale"
},
"alpha": {
"type": "number",
"default_value": "1.0",
"constraint": "number >= 0.0 && number <= 1.0",
"$description": "translations.json#/div_image_background_alpha"
},
"preload_required": {
"$ref": "common.json#/boolean_int",
"default_value": "false",
"$description": "translations.json#/div_image_background_preload_required",
"platforms": [
"android"
]
},
"filters": {
"type": "array",
"items": {
"$ref": "div-filter.json"
},
"minItems": 1,
"clientMinItems": 1,
"$description": "translations.json#/div_filter",
"platforms": [
"android",
"web"
]
},
"type": {
"type": "string",
"enum": [
"image"
]
}
},
"required": [
"image_url",
"type"
]
}