github.com/icyphox/x@v0.0.355-0.20220311094250-029bd783e8b8/decoderx/stub/nested.json (about) 1 { 2 "$id": "https://example.com/person.schema.json", 3 "$schema": "http://json-schema.org/draft-07/schema#", 4 "title": "Person", 5 "type": "object", 6 "required": [ 7 "node" 8 ], 9 "properties": { 10 "node": { 11 "type": "object", 12 "required": [ 13 "node" 14 ], 15 "properties": { 16 "node": { 17 "type": "object", 18 "properties": { 19 "node": { 20 "type": "object", 21 "properties": { 22 "leaf": { 23 "type": "string" 24 } 25 }, 26 "required": [ 27 "leaf" 28 ] 29 }, 30 "leaf": { 31 "type": "string" 32 } 33 }, 34 "required": [ 35 "leaf" 36 ] 37 }, 38 "leaf": { 39 "type": "string" 40 } 41 } 42 } 43 } 44 }