Files
divkit/schema/div-action-scroll-to.json
T
avmushtukov 6fd59e04ea add scroll actions and change item actions in gallery
commit_hash:87014adfd73ebb2d79314c9119fc534c54902f75
2024-09-27 18:05:15 +03:00

32 lines
622 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"
],
"required": [
"type",
"id",
"destination"
]
}
]
}