We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
not
null
简要描述您碰到的问题。
当使用 JSONSchema.parseSchema("{ \"not\": null }") 构建JSONSchema时 , 导致空指针异常 我在使用 https://json-schema.org/draft/2020-12/schema 测试的时候 , 使用 null 、 {}、[] 这3个校验结果是一样的 见 #987 单元测试
JSONSchema.parseSchema("{ \"not\": null }")
{}
[]
请填写以下信息:
Bug 复现:
以下代码将抛出空指针异常
JSONSchema.parseSchema("{ \"not\": null }");
对于null的处理应该和 {} 以及 [] 保持一致
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
问题描述
简要描述您碰到的问题。
当使用
JSONSchema.parseSchema("{ \"not\": null }")
构建JSONSchema时 , 导致空指针异常我在使用 https://json-schema.org/draft/2020-12/schema 测试的时候 , 使用
null
、{}
、[]
这3个校验结果是一样的见 #987 单元测试
环境信息
请填写以下信息:
重现步骤
Bug 复现:
以下代码将抛出空指针异常
期待的正确结果
对于
null
的处理应该和{}
以及[]
保持一致The text was updated successfully, but these errors were encountered: