summaryrefslogtreecommitdiffstats
path: root/internal/toml-test/tests/valid/spec/array-of-tables-0.json
blob: 23287571cb04801a5510da351125de46b8897a6b (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
{
  "products": [
    {
      "name": {
        "type": "string",
        "value": "Hammer"
      },
      "sku": {
        "type": "integer",
        "value": "738594937"
      }
    },
    {},
    {
      "color": {
        "type": "string",
        "value": "gray"
      },
      "name": {
        "type": "string",
        "value": "Nail"
      },
      "sku": {
        "type": "integer",
        "value": "284758393"
      }
    }
  ]
}