我有三个json-schema定义。 客户,地址和联系方式。
client.json
{
"$id": "client.json",
"type": "object",
"definitions": {},
"$schema": "http://json-schema.org/draft-06/schema#",
"properties": {
"name": {
"$id": "/properties/name",
"type": "string"
},
"id": {
"$id": "/properties/id",
"type": "integer"
},
"contact": {
"$ref": "contact.json"
},
"address": {
"$ref": "address.json"
}
}
}
address.json
{
"$id": "address.json",
"type": "array",
"definitions": {},
"$schema": "http://json-schema.org/draft-06/schema#",
"items": {
"$id": "/items",
"type": "object",
"properties": {
"addressId": {
"$id": "/items/properties/addressId",
"type": "integer"
},
"addressName": {
"$id": "/items/properties/addressName",
"type": "string"
}
}
}
}
contact.json
{
"$id": "contact.json",
"type": "array",
"definitions": {},
"$schema": "http://json-schema.org/draft-06/schema#",
"items": {
"$id": "/items",
"type": "object",
"properties": {
"contactId": {
"$id": "/items/properties/contactId",
"type": "integer"
},
"contactName": {
"$id": "/items/properties/contactName",
"type": "string"
},
"address": {
"$ref": "address.json"
}
}
}
}
对象待验证
var client = {
"name": "test",
"id": 12,
"contact": [
{
"contactId": 12212,
"contactName": "jon",
"address": [
{
"addressId": 64,
"addressName": "pi"
}
]
}
],
"address": [
{"addressId": 4242,
"addressName": "doe"}
]
};
来自'client.json'的$ ref工作正常,但我从'contact.json'引用'address.json'时出错。 我在'additionalItems'中使用$ refs时没有错误,但无法验证$ ref的指向模式。
我想知道如何从数组类型模式定义中使用$ ref。 另外,我正在使用AJV进行模式验证。
编辑1: AJV设置
var Ajv = require('ajv');
var ajv = new Ajv({
$data: true,
allErrors: true,
useDefaults: true,
coerceTypes: true,
});
ajv.addSchema(client);
ajv.addSchema(contact);
ajv.addSchema(address);
let valid = ajv.validate('client.json', payload);
if(!valid){
console.log(ajv.errors);
}
答案 0 :(得分:0)
我确定问题是/play
更改了$id
的解析范围。我通过查找文件系统上的文件来猜测$ref
分辨率正在发生。我们假设你的三个模式可以在$ref
获得。
file:///path/to/schema
架构。file:///path/to/schema/client.json
。这是相对URI,因此您需要确定它相对于的URI才能解决它。contact.json
的最近的$id
。client.json
个,因此使用了文件的路径$id
。file:///path/to/schema/client.json
解决client.json
并获取file:///path/to/schema/client.json
。file:///path/to/schema/client.json
解决contact.json
并获取file:///path/to/schema/client.json
。这里开始变得奇怪。
file://path/to/schema/contact.json
架构。file:///path/to/schema/contact.json
。这是一个相对URI,因此您需要确定它相对于它的URI才能解决它。address.json
的最近的$id
。/items
。contact.json
个,因此使用了文件的路径$id
。file:///path/to/schema/contact.json
解决/items
并获取file:///path/to/schema/contact.json
。file:///items
解决address.json
并获取file:///items
。file:///address.json
架构,但它不存在。由于file:///address.json
更改了$id
的解析范围,因此非常不鼓励您在模式中提供与$ref
类似的内容。此功能适用于将多个小模式合并为一个的用例。除非你有充分的理由并理解其含义,否则你应该永远不要在文档的根部使用它。