{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "UntaggedEnum", "anyOf": [ { "type": "null" }, { "type": "object", "properties": { "S": { "type": "string" } }, "required": [ "S" ] }, { "type": "null" }, { "type": "object", "properties": { "B": { "type": "boolean" } }, "required": [ "B" ] } ] }