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