Files
pugz/benchmarks/templates/friends.json

57 lines
1.0 KiB
JSON

{
"friends": [
{
"name": "Alice",
"balance": "$1,000",
"age": 28,
"address": "123 Main St",
"picture": "/alice.jpg",
"company": "TechCorp",
"email": "alice@example.com",
"emailHref": "mailto:alice@example.com",
"about": "Software engineer",
"tags": [
"coding",
"hiking",
"reading"
],
"friends": [
{
"id": 1,
"name": "Bob"
},
{
"id": 2,
"name": "Charlie"
}
]
},
{
"name": "Bob",
"balance": "$2,500",
"age": 32,
"address": "456 Oak Ave",
"picture": "/bob.jpg",
"company": "DesignCo",
"email": "bob@example.com",
"emailHref": "mailto:bob@example.com",
"about": "Designer",
"tags": [
"design",
"art",
"music"
],
"friends": [
{
"id": 3,
"name": "Alice"
},
{
"id": 4,
"name": "Diana"
}
]
}
]
}