1

你如何指定一个结构来验证用户在 JSON 模式中的项目列表,比如字符串?

这是我到目前为止所拥有的:

"list_of_str": {
    "type": "array",
    "items": {
         "type": "string"
    }
}

提前致谢!

4

1 回答 1

1
>>> res = {
...     "type": "array",
...     "items": {
...          "type": "string"
...     }
... }
>>> 
>>> one = ["one", "two"]
>>> 
>>> 
>>> validictory.validate(one, res)
>>> # No error

“validictory 是一个通用的 Python 数据验证器,它允许验证任意 Python 数据结构。” (见这个-> Validictory docs

于 2013-07-22T15:12:24.937 回答