gpt4 book ai didi

arrays - 在JSON模式中将数组定义为非空

转载 作者:行者123 更新时间:2023-12-03 15:50:30 25 4
gpt4 key购买 nike

有什么方法可以在JSON模式中将数组定义为非空?

最佳答案

如您在documentation中看到的那样,您可以使用"minItems": 1定义最小的项目数:

{
"id": "http://some.site.somewhere/entry-schema#",
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "schema for an fstab entry",
"type": "object",
"properties": {
"options": {
"type": "array",
"minItems": 1, // -> array must not be empty
"items": { "type": "string" },
"uniqueItems": true
},
"readonly": { "type": "boolean" }
}
}

关于arrays - 在JSON模式中将数组定义为非空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43489890/

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