gpt4 book ai didi

json - 可以在 JSON 模式 (v4) 中指定字符串的最小/最大长度吗?

转载 作者:行者123 更新时间:2023-12-03 16:41:10 31 4
gpt4 key购买 nike

我是一名非开发人员并且不熟悉 JSON,并创建了一个 JSON 模式来在解决客户问题时验证 JSON 代码,以确保符合我们定义的数据元素的语法。
我注意到如果字段类型是整数,我只能验证 min/maxLength。如果 type=string,则 min/maxLength 不起作用。

JSON 架构代码片段:

"LastName": {
"type" : "string",
"optional": false,
"minLength": 1,
"maxLength": 254,
"description": "Last Name of Insured"
},

在 JSON 代码中,如果 "LastName": ""仍然有效,但我们的 WS/JSON 调用将失败,因为该字段是必需的并且需要数据。

提前致谢!

最佳答案

它应该按照规范工作。引用和报价如下。请详细说明“如果 type=string,min/maxLength 不起作用。” - 你有什么意想不到的苛刻行为?

https://json-schema.org/understanding-json-schema/reference/string.html

Length

The length of a string can be constrained using the minLength and maxLength keywords. For both keywords, the value must be a non-negative number.


{
"type": "string",
"minLength": 2,
"maxLength": 3
}

关于json - 可以在 JSON 模式 (v4) 中指定字符串的最小/最大长度吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47699237/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com