gpt4 book ai didi

javascript - 验证已知值列表的 JSON 架构

转载 作者:行者123 更新时间:2023-11-30 16:02:22 25 4
gpt4 key购买 nike

我的代码中有一个特殊的枚举案例,需要对其进行验证:

{
"status": 10
}

让我们使用这个假想的有效值列表:

var valid = [10, 20, 23, 27];

如何更改我的 JSON 架构以验证这些值之一?

{
type: 'object',
required: ['status'],
properties: {
status: { type: number },
}
}

最佳答案

您只需将 status 属性定义为 enum:

{
"type" : "object",
"required" : ["status"],
"properties" : {
"status" : {
"type" : "number",
"enum" : [10, 20, 23, 27]
}
}
}

关于javascript - 验证已知值列表的 JSON 架构,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37529672/

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