Files
divkit/schema/div-tooltip.json
T
2023-11-15 12:58:51 +03:00

52 lines
1.2 KiB
JSON

{
"type": "object",
"$description": "translations.json#/div_tooltip",
"properties": {
"id": {
"$ref": "common.json#/id",
"$description": "translations.json#/div_tooltip_id"
},
"div": {
"$ref": "div.json",
"$description": "translations.json#/div_tooltip_div"
},
"position": {
"type": "string",
"enum": [
"left",
"top-left",
"top",
"top-right",
"right",
"bottom-right",
"bottom",
"bottom-left",
"center"
],
"$description": "translations.json#/div_tooltip_position"
},
"duration": {
"$ref": "common.json#/non_negative_integer",
"default_value": "5000",
"$description": "translations.json#/div_tooltip_duration"
},
"offset": {
"$ref": "div-point.json",
"$description": "translations.json#/div_tooltip_offset"
},
"animation_in" : {
"$ref": "div-animation.json",
"$description": "translations.json#/div_tooltip_animation_in"
},
"animation_out" : {
"$ref": "div-animation.json",
"$description": "translations.json#/div_tooltip_animation_out"
}
},
"required": [
"id",
"div",
"position"
]
}