gpt4 book ai didi

Python jsonschema,什么都不允许,或者只需要两个字段之一

转载 作者:行者123 更新时间:2023-11-28 16:55:31 24 4
gpt4 key购买 nike

我正在使用 Python 的 jsonschema,我正在尝试允许以下任何一项:

{}
# or
{
'id': 'd6a4def3-4a6a-4fb4-a38e-f98ea48f708a'
}
# or
{
'status': 'Done'
}

但我不想允许以下内容,因为提供了两个字段:

{
'id': 'd6a4def3-4a6a-4fb4-a38e-f98ea48f708a',
'status': 'Done'
}

这是我目前所拥有的,它允许按照我的意愿提供一个或另一个字段,但它不允许什么都没有。

GET_CALL = {
"type": "object",
"additionalProperties": False,
"properties": {
"id": {
"type": "string",
"pattern": REGEX_EXPRESSIONS['UUID4'], # Matches a UUID4 format
},
"status": {
"type": "string",
"enum": ["Done", "Ready"],
},
},
"oneOf": [ # This makes it so I can only have one or the other but it doesn't allow nothing.
{"required": ["id"]},
{"required": ["status"]}
],
}

最佳答案

您需要您的 oneOf 来涵盖所有情况。幸运的是,这并不太复杂。

这是您所指定内容所需的架构。您可以将其应用到现有架构中。

{
"oneOf": [
{
"additionalProperties": false
},
{
"required": [
"id"
]
},
{
"required": [
"status"
]
}
]
}

(草案 7 JSON 模式)

您可以在 jsonschema.dev 进行测试(链接预加载了此模式和测试实例)

澄清一下,您仍然需要type: object

关于Python jsonschema,什么都不允许,或者只需要两个字段之一,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58753694/

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