Skip to content
New issue

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

[BUG]JSONSchema校验字符串类型的枚举和常量失败 #1367

Closed
864381832 opened this issue Apr 14, 2023 · 3 comments
Closed

[BUG]JSONSchema校验字符串类型的枚举和常量失败 #1367

864381832 opened this issue Apr 14, 2023 · 3 comments
Labels
bug Something isn't working fixed
Milestone

Comments

@864381832
Copy link

问题描述

简要描述您碰到的问题。
在使用JSONSchema对json文件进行校验时,发现字符串类型的枚举和常量不支持,一直显示校验通过。
同时看源码发现枚举类型似乎只支持整型和浮点型,但测试下面类型名需填int,标准的JsonSchema中定义的为integer和number。
同样的校验在使用com.networknt:json-schema-validator:1.0.79工具包中可以正常校验。

环境信息

请填写以下信息:

  • JDK信息: [e.g.:Openjdk 1.8.0_312]
  • 版本信息:[e.g.:Fastjson2 2.0.27]

重现步骤

如何操作可以重现该问题:

  1. 使用 schema.isValid 方法
  2. 输入 {\"姓\": \"3\"} 数据
  3. 出现校验结果错误
String schemaStr = "{\"type\": \"object\",\"properties\": {\"\": {\"type\": \"string\",\"enum\": [\"1\", \"2\"]}}}";
String schemaStr2 = "{\"type\":\"object\",\"properties\":{\"\":{\"type\":\"string\",\"const\":\"1\"}}}";
JSONSchema schema = JSONSchema.of(JSON.parseObject(schemaStr));
JSONSchema schema2 = JSONSchema.of(JSON.parseObject(schemaStr2));
String jsonStr = "{\"\": \"3\"}";
System.out.println(schema.isValid(JSON.parseObject(jsonStr)));
System.out.println(schema2.isValid(JSON.parseObject(jsonStr)))

期待的正确结果

对您期望发生的结果进行清晰简洁的描述。
能正确校验字符串枚举值和常量

相关日志输出

请复制并粘贴任何相关的日志输出。

附加信息

如果你还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。
image

@864381832 864381832 added the bug Something isn't working label Apr 14, 2023
@wenshao wenshao added this to the 2.0.28 milestone Apr 14, 2023
@wenshao
Copy link
Member

wenshao commented Apr 15, 2023

https://oss.sonatype.org/content/repositories/snapshots/com/alibaba/fastjson2/fastjson2/2.0.28-SNAPSHOT/
问题已修复,请帮忙有2.0.28-SNAPSHOT版本验证,2.0.28版本预计在明天发布

@wenshao wenshao added the fixed label Apr 15, 2023
@wenshao
Copy link
Member

wenshao commented Apr 15, 2023

@wenshao wenshao closed this as completed Apr 15, 2023
@864381832
Copy link
Author

验证完成,修复的速度挺快👍🏻

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working fixed
Projects
None yet
Development

No branches or pull requests

2 participants