mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
43 lines
690 B
JSON
43 lines
690 B
JSON
{
|
|
"description": "Template with nested object",
|
|
"templates": {
|
|
"card_text": {
|
|
"type": "text",
|
|
"paddings": {
|
|
"left": 16,
|
|
"right": 16
|
|
}
|
|
}
|
|
},
|
|
"card": {
|
|
"log_id": "test",
|
|
"states": [
|
|
{
|
|
"state_id": 0,
|
|
"div": {
|
|
"type": "card_text",
|
|
"text": "Padded"
|
|
}
|
|
}
|
|
]
|
|
},
|
|
"expected": {
|
|
"card": {
|
|
"log_id": "test",
|
|
"states": [
|
|
{
|
|
"state_id": 0,
|
|
"div": {
|
|
"type": "text",
|
|
"text": "Padded",
|
|
"paddings": {
|
|
"left": 16,
|
|
"right": 16
|
|
}
|
|
}
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|