Files
divkit/schema/div-action-timer.json
T
4eb0da fd458a605d Typed timer action
commit_hash:ab171c2a345ccf16956e902019727918173da72c
2024-12-23 11:47:41 +03:00

39 lines
648 B
JSON

{
"type": "object",
"$description": "translations.json#/div_action_timer",
"properties": {
"type": {
"type": "string",
"enum": [
"timer"
]
},
"id": {
"$description": "translations.json#/div_action_timer_id",
"type": "string"
},
"action": {
"type": "string",
"$description": "translations.json#/div_action_timer_action",
"enum": [
"start",
"stop",
"pause",
"resume",
"cancel",
"reset"
]
}
},
"platforms": [
"android",
"ios",
"web"
],
"required": [
"type",
"id",
"action"
]
}