Files
divkit/schema/div-action-scroll-to.json
4eb0da 3dde020817 Typed scroll actions
commit_hash:cb30e48693fa779f09a5a169639c1062ba9048cd
2025-03-10 13:18:15 +03:00

34 lines
652 B
JSON

{
"allOf": [
{
"$ref": "div-action-scroll-base.json"
},
{
"type": "object",
"$description": "translations.json#/div_action_scroll_to",
"properties": {
"type": {
"type": "string",
"enum": [
"scroll_to"
]
},
"destination": {
"$description": "translations.json#/div_action_scroll_to_destination",
"$ref": "div-action-scroll-destination.json"
}
},
"platforms": [
"android",
"ios",
"web"
],
"required": [
"type",
"id",
"destination"
]
}
]
}