{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "SimpleInternal", "oneOf": [ { "type": "object", "required": [ "typeProperty" ], "properties": { "typeProperty": { "type": "string", "enum": [ "A" ] } }, "additionalProperties": false }, { "type": "object", "required": [ "typeProperty" ], "properties": { "typeProperty": { "type": "string", "enum": [ "B" ] } }, "additionalProperties": false }, { "type": "object", "required": [ "typeProperty" ], "properties": { "typeProperty": { "type": "string", "enum": [ "C" ] } }, "additionalProperties": false } ] }