github.com/alecthomas/jsonschema@v0.0.0-20220216202328-9eeeec9d044b/fixtures/disable_inlining_embedded.json (about) 1 { 2 "$schema": "http://json-schema.org/draft-04/schema#", 3 "required": [ 4 "inner" 5 ], 6 "properties": { 7 "inner": { 8 "required": [ 9 "foo" 10 ], 11 "properties": { 12 "foo": { 13 "type": "string" 14 } 15 }, 16 "additionalProperties": false, 17 "type": "object" 18 } 19 }, 20 "additionalProperties": false, 21 "type": "object", 22 "definitions": { 23 "Inner": { 24 "required": [ 25 "foo" 26 ], 27 "properties": { 28 "foo": { 29 "type": "string" 30 } 31 }, 32 "additionalProperties": false, 33 "type": "object" 34 } 35 } 36 }