gpt4 book ai didi

json - Postman 数组架构验证

转载 作者:行者123 更新时间:2023-12-03 18:44:53 25 4
gpt4 key购买 nike

我在 postman 中遇到数组 json 模式验证的问题。

var schema = {
"type": "array",
"items": [{
"id": {
"type":"long"
},
"name": {
"type":"string"
},
"email": {
"type":"string"
}
}]
};


pm.test('Response schema type nodes verification', function() {
pm.expect(tv4.validate(pm.response.json(), schema)).to.be.true;
});

响应主体是:
[
{
"id": 1,
"name": "test1",
"email": "a@a.com"
},
{
"id": 2,
"name": "test2",
"email": "a@a.com"
},
.
.
.
]

我一直通过结果。我也试过删除 [] .

问题出在哪儿?

最佳答案

问题中使用的模式不正确,您需要将数组中的项目类型定义为object .正确的 JSON 架构如下所示:

var schema = {
"type": "array",
"items": [{
type: "object",
properties:{
"id": {
"type":"integer"
},
"name": {
"type":"string"
},
"email": {
"type":"string"
}
}
}]
};


pm.test('Response schema type nodes verification', function() {
pm.expect(tv4.validate(pm.response.json(), schema)).to.be.true;
});

请注意,JSON Schema 中只有 2 种数字类型: integernumber .没有类型为 long .

关于json - Postman 数组架构验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56933925/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com