下面是我的 JSON 模式
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "array",
"items": [
{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"stations": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"serial_number": {
"type": "string"
},
"name": {
"type": "string"
}
},
"required": [
"id",
"serial_number",
"name"
]
}
]
}
},
"required": [
"id",
"name",
"stations"
]
}
]
}
下面是要验证的json
[
{
"id": 1,
"name": "Test location",
"stations": [
{
"id": 1,
"serial_number": "TEST001",
"name": "TEST-STN!"
}
]
},
{
"id": 2,
"name": "Test location2"
}
]
这里元素“stations”在模式中被标记为必需,但在 json 的第二个项目中缺少它。仍然通过了 tv4 验证。
我们真正需要的是,它应该无法通过验证,因为第二个 Item 中缺少 station 元素
观察结果是如果任何 JSON 项中都不存在站元素,则验证失败。但是,如果站元素存在于其中一项中,则通过验证
pm.test("Login Validation", function() { pm.expect(tv4.validate(pm.response.json(), pm.environment.get('schema.json'), true, true), tv4.error).to.be.true;});
我尝试了具有真假值的 tv4 选项“checkRecursive”...仍然通过了验证
任何帮助表示赞赏