summaryrefslogtreecommitdiffstats
path: root/internal/toml-test/tests/valid/table/array-many.json
blob: fe78bf6b5bee1f42faa403ae5d8fc368bf8c285f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  "people": [
    {
      "first_name": {
        "type": "string",
        "value": "Bruce"
      },
      "last_name": {
        "type": "string",
        "value": "Springsteen"
      }
    },
    {
      "first_name": {
        "type": "string",
        "value": "Eric"
      },
      "last_name": {
        "type": "string",
        "value": "Clapton"
      }
    },
    {
      "first_name": {
        "type": "string",
        "value": "Bob"
      },
      "last_name": {
        "type": "string",
        "value": "Seger"
      }
    }
  ]
}