Fix json schema type name for boolean.

Was boolean should have been bool.

Closes: #4196
This commit is contained in:
gongxuanzhang
2022-10-09 10:30:14 +08:00
committed by Christoph Strobl
parent b7ac5f7970
commit b59c7f774f

View File

@@ -295,7 +295,7 @@ public interface JsonSchemaObject {
Type OBJECT = jsonTypeOf("object");
Type ARRAY = jsonTypeOf("array");
Type NUMBER = jsonTypeOf("number");
Type BOOLEAN = jsonTypeOf("boolean");
Type BOOLEAN = jsonTypeOf("bool");
Type STRING = jsonTypeOf("string");
Type NULL = jsonTypeOf("null");