Fix json schema type name for boolean.
Was boolean should have been bool. Closes: #4196
This commit is contained in:
committed by
Christoph Strobl
parent
59753bb55a
commit
1a9136c0c1
@@ -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");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user