{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "MixedGenericStruct_for_MyStruct_for_int32_and_null_and_boolean_and_Array_of_string_and_42_and_z", "type": "object", "properties": { "generic": { "$ref": "#/$defs/MyStruct_for_int32_and_null_and_boolean_and_Array_of_string" }, "foo": { "type": "integer", "format": "int32" } }, "required": [ "generic", "foo" ], "$defs": { "MyStruct_for_int32_and_null_and_boolean_and_Array_of_string": { "type": "object", "properties": { "t": { "type": "integer", "format": "int32" }, "u": { "type": "null" }, "v": { "type": "boolean" }, "w": { "type": "array", "items": { "type": "string" } }, "inner": { "$ref": "#/$defs/MySimpleStruct" } }, "required": [ "t", "u", "v", "w", "inner" ] }, "MySimpleStruct": { "type": "object", "properties": { "foo": { "type": "integer", "format": "int32" } }, "required": [ "foo" ] } } }