gpt4 book ai didi

json - JSON Schema 中的 "required"与 "optional"有什么区别

转载 作者:IT老高 更新时间:2023-10-28 12:47:42 38 4
gpt4 key购买 nike

有时,我注意到以下 JSON 架构:

{
"type": "object",
"properties": {
"address": {
"type": "string",
"required": true
}
}

}

{
"type": "object",
"properties": {
"address": {
"type": "string",
"optional": false
}
}

}

那么上面例子中的requiredoptional有什么区别呢?

最佳答案

IETF draft v4 JSON 模式的只定义required,不包含optional

引用 section关于草稿 v4 中的 必需:

Valid values: The value of this keyword MUST be an array. This array MUST have at least one element. Elements of this array MUST be strings, and MUST be unique.

Conditions for successful validation: An object instance is valid against this keyword if its property set contains all elements in this keyword's array value.

实际上,使用 required 使得所有属性都是可选的该名称不包含在给定的字符串数组中。

关于json - JSON Schema 中的 "required"与 "optional"有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16204871/

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