summaryrefslogtreecommitdiff
path: root/test/fixtures/json/nested.json
blob: 98951fcb037ee9e5d90f778cf449cbb32d3494b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
	"@typeid": "TestObject",
	"flt": 1,
	"ptr": {
		"@typeid": "TestObject",
		"flt": 2,
		"ptr": {
			"@typeid": "TestObject",
			"flt": 3,
			"ptr": {
				"@typeid": "TestObject",
				"flt": 4,
				"ptr": null,
				"str": "four"
			},
			"str": "three"
		},
		"str": "two"
	},
	"str": "one"
}