summaryrefslogtreecommitdiffstats
path: root/internal/toml-test/tests/valid/spec/inline-table-1.json
blob: 8c0d3150867d2473fa425221579d766d0c304031 (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
{
  "animal": {
    "type": {
      "name": {
        "type": "string",
        "value": "pug"
      }
    }
  },
  "name": {
    "first": {
      "type": "string",
      "value": "Tom"
    },
    "last": {
      "type": "string",
      "value": "Preston-Werner"
    }
  },
  "point": {
    "x": {
      "type": "integer",
      "value": "1"
    },
    "y": {
      "type": "integer",
      "value": "2"
    }
  }
}