{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Either_int32_or_Either_boolean_or_null", "anyOf": [ { "type": "integer", "format": "int32" }, { "anyOf": [ { "type": "boolean" }, { "type": "null" } ] } ] }