我想验证解析为 Python 字典的 JSON 对象,如下所示:
# example with 2 elements
{
'coordinates': [-20.3, 30.6]
}
# example with 3 elements
{
'coordinates': [-20.3, 30.6, 0]
}
到目前为止,我能够定义以下架构:
schema = {
'coordinates': {
'required': True,
'type': 'list',
'minlength': 2,
'maxlength': 3,
'schema': {
'type': 'float',
},
}
}
我还想检查这些约束:
- 字段值的第一项
coordinates
应介于 -30.0 和 10.0 之间 - 第二项应介于 -10.0 和 50.0 之间
但我无法想出有用的东西。有没有人建议如何实现这一目标?
更新:根据接受的答案,架构变为以下
schema = {
'coordinates': {
'required': True,
'type': 'list',
"oneof_items": (
({"min": -30.0, "max": 10.0}, {"min": -10.0, "max": 50.0}),
({"min": -30.0, "max": 10.0}, {"min": -10.0, "max": 50.0}, {}),
),
}
}
文档:https ://docs.python-cerberus.org/en/stable/validation-rules.html#of-rules-typesaver