我正在使用xeipuuv jsonschema
库进行模式验证。
示例JSON
{
"testField": [
{
"key": "foo"
},
{
"key": "bar"
}
]
}
JSON模式:
"test": {
"type": "array",
"items": {
"type" : "object",
"format": "CustomFormatter",
"properties": {
"key": {
"type": "string"
}
}
}
}
此处CustomFormatter
未被评估。
关于如何对数组的所有项目进行验证的任何想法。 (基本上,我的用例是我想要数组中的所有值)。
谢谢!