{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Internal", "oneOf": [ { "type": "object", "properties": { "typeProperty": { "type": "string", "const": "Unit" } }, "required": [ "typeProperty" ], "foo": "bar" }, { "type": "object", "properties": { "typeProperty": { "type": "string", "const": "NewType" } }, "required": [ "typeProperty" ], "foo": "bar" }, { "type": "object", "properties": { "i": { "type": "integer", "format": "int32" }, "b": { "type": "boolean" }, "typeProperty": { "type": "string", "const": "Struct" } }, "required": [ "typeProperty", "i", "b" ], "foo": "bar" } ], "foo": "bar" }