summaryrefslogtreecommitdiffstats
path: root/internal/toml-test/tests/valid/table/array-within-dotted.json
blob: 30b151732f28a2f88d5ecc0c36e2c72700030d07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  "fruit": {
    "apple": {
      "color": {
        "type": "string",
        "value": "red"
      },
      "seeds": [
        {
          "size": {
            "type": "integer",
            "value": "2"
          }
        }
      ]
    }
  }
}