{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "DeprecatedEnum", "deprecated": true, "anyOf": [ { "type": "string", "enum": [ "Unit", "DeprecatedUnitVariant" ] }, { "deprecated": true, "type": "object", "required": [ "DeprecatedStructVariant" ], "properties": { "DeprecatedStructVariant": { "type": "object", "required": [ "deprecated_field", "foo" ], "properties": { "foo": { "type": "integer", "format": "int32" }, "deprecated_field": { "deprecated": true, "type": "boolean" } } } } } ] }