{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Internal", "oneOf": [ { "type": "object", "required": [ "foo", "typeProperty" ], "properties": { "foo": { "type": "boolean" }, "typeProperty": { "type": "string", "enum": [ "Struct" ] } } }, { "type": [ "boolean", "object" ], "required": [ "typeProperty" ], "properties": { "typeProperty": { "type": "string", "enum": [ "NewType" ] } } }, { "type": [ "boolean", "object" ], "required": [ "typeProperty" ], "properties": { "typeProperty": { "type": "string", "enum": [ "Unit" ] } } } ] }