{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Adjacent", "anyOf": [ { "type": "object", "required": [ "c", "t" ], "properties": { "t": { "type": "string", "enum": [ "Struct" ] }, "c": { "type": "object", "required": [ "foo" ], "properties": { "foo": { "type": "boolean" } } } } }, { "type": "object", "required": [ "c", "t" ], "properties": { "t": { "type": "string", "enum": [ "NewType" ] }, "c": { "type": "boolean" } } }, { "type": "object", "required": [ "c", "t" ], "properties": { "t": { "type": "string", "enum": [ "Tuple" ] }, "c": { "type": "array", "items": [ { "type": "boolean" }, { "type": "integer", "format": "int32" } ], "maxItems": 2, "minItems": 2 } } } ] }