aboutsummaryrefslogtreecommitdiffstats
path: root/tests/nested.json
blob: 1111e91962fefa5d5b489f14183249ecaf641e34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "departments": [
    {
      "name": "engineering",
      "employees": [
        {"id": 1, "name": "john_doe", "email": "john@example.com"},
        {"id": 2, "name": "jane_smith", "email": "jane@test.org"}
      ]
    },
    {
      "name": "marketing",
      "employees": [
        {"id": 3, "name": "bob_wilson", "email": "bob@example.com"},
        {"id": 4, "name": "alice_jones", "email": "alice@test.org"}
      ]
    },
    {
      "name": "sales",
      "employees": [
        {"id": 5, "name": "charlie_brown", "email": "charlie@sample.net"}
      ]
    }
  ]
}