vessel/doc/temple-example/data.json
Arija A. 4ec4697efd
Add Temple example.
Signed-off-by: Arija A. <ari@ari.lt>
2025-06-25 15:13:15 +03:00

52 lines
1.2 KiB
JSON

{
"title": "My Dashboard",
"user": {
"profile": {
"name": "Alice",
"age": 30,
"roles": ["admin", "editor"]
},
"settings": {
"theme": "dark",
"notifications": {
"email": true,
"sms": false
}
}
},
"stats": {
"visits": [100, 200, 300, 400, 500],
"clicks": {
"buttons": 150,
"links": 75
},
"revenue": {
"daily": [10.5, 12.0, 9.8, 15.2, 13.3],
"monthly": { "Jan": 300, "Feb": 320 }
}
},
"catalog": [
{
"category": "Fruits",
"items": [
{ "name": "apple", "price": 1.2 },
{ "name": "banana", "price": 0.8 }
]
},
{
"category": "Vegetables",
"items": [
{ "name": "carrot", "price": 0.5 },
{ "name": "broccoli", "price": 1.5 }
]
}
],
"messages": [
{
"from": "Bob",
"text": "Hello <world>",
"flags": ["read", "starred"]
},
{ "from": "Carol", "text": "Goodbye <world>", "flags": [] }
]
}