1

我想验证解析为 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

4

1 回答 1

1

添加此规则:

{"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}, {}),
  )
}

这使得与长度相关的规则变得多余。摆脱冗余 Python 对象引用或规则集注册表是可行的。

于 2020-03-12T20:27:13.287 回答