gpt4 book ai didi

json - 使用 jsonschema 验证键在对象数组中是否具有唯一值?

转载 作者:行者123 更新时间:2023-12-03 17:04:32 24 4
gpt4 key购买 nike

如何使用 jsonschema 验证 JSON,即在对象数组中,每个对象中的特定键必须是唯一的?例如,验证每个 Name k-v 对的唯一性应该失败:

"test_array": [
{
"Name": "name1",
"Description": "unique_desc_1"
},
{
"Name": "name1",
"Description": "unique_desc_2"
}
]

由于唯一的描述键,在 test_array 上使用 uniqueItems 将不起作用。

最佳答案

我找到了使用允许任意属性的模式的替代方法。唯一的警告是 JSON 允许重复的对象键,但重复项将覆盖它们以前的实例。键为“Name”的对象数组可以转换为具有任意属性的对象:

例如,以下 JSON:

"test_object": {
"name1": {
"Desc": "Description 1"
},
"name2": {
"Desc": "Description 2"
}
}

将具有以下架构:
{
"type": "object",
"properties": {
"test_object": {
"type": "object",
"patternProperties": {
"^.*$": {
"type": "object",
"properties": {
"Desc": {"type" : "string"}
},
"required": ["Desc"]
}
},
"minProperties": 1,
"additionalProperties": false
}
},
"required": ["test_object"]
}

关于json - 使用 jsonschema 验证键在对象数组中是否具有唯一值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49886837/

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