{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "Adjacent", "anyOf": [ { "type": "object", "required": [ "t" ], "properties": { "t": { "type": "string", "enum": [ "UnitOne" ] } } }, { "type": "object", "required": [ "c", "t" ], "properties": { "t": { "type": "string", "enum": [ "StringMap" ] }, "c": { "type": "object", "additionalProperties": { "type": "string" } } } }, { "type": "object", "required": [ "c", "t" ], "properties": { "t": { "type": "string", "enum": [ "UnitStructNewType" ] }, "c": { "$ref": "#/definitions/UnitStruct" } } }, { "type": "object", "required": [ "c", "t" ], "properties": { "t": { "type": "string", "enum": [ "StructNewType" ] }, "c": { "$ref": "#/definitions/Struct" } } }, { "type": "object", "required": [ "c", "t" ], "properties": { "t": { "type": "string", "enum": [ "Struct" ] }, "c": { "type": "object", "required": [ "bar", "foo" ], "properties": { "foo": { "type": "integer", "format": "int32" }, "bar": { "type": "boolean" } } } } }, { "type": "object", "required": [ "c", "t" ], "properties": { "t": { "type": "string", "enum": [ "Tuple" ] }, "c": { "type": "array", "items": [ { "type": "integer", "format": "int32" }, { "type": "boolean" } ], "maxItems": 2, "minItems": 2 } } }, { "type": "object", "required": [ "t" ], "properties": { "t": { "type": "string", "enum": [ "UnitTwo" ] } } }, { "type": "object", "required": [ "c", "t" ], "properties": { "t": { "type": "string", "enum": [ "WithInt" ] }, "c": { "type": "integer", "format": "int32" } } } ], "definitions": { "UnitStruct": { "type": "null" }, "Struct": { "type": "object", "required": [ "bar", "foo" ], "properties": { "foo": { "type": "integer", "format": "int32" }, "bar": { "type": "boolean" } } } } }