我试图使用ajv模块验证一些输入。我使用常规JSON模式但我想验证多个路由并使用链接数据来构建文档,但我很困惑如何设置它。这是我的架构:
{
"$schema": "http://json-schema.org/draft-04/hyper-schema#",
"title": "Questions",
"type": "object",
"definitions": {
"companyId": {
"type": "string",
"minLength": 3,
"maxLength": 20
}
},
"links":[
{
"title": "List",
"href": "/questions",
"method": "POST",
"rel": "self",
"schema": {
"properties": {
"companyId": {
"$ref": "#/definitions/companyId"
}
},
"required": ["companyId"]
}
}
]
}
我的代码:
const schema = require('./schemas/questions.json');
const hyperSchema = require('../schemas/hyper-schema.json');
const Ajv = require('ajv');
const ajv = new Ajv({ allErrors: true, v5: true });
ajv.addMetaSchema(hyperSchema, undefined, true);
const validate = ajv.compile(schema);
const valid = validate(input);
console.log(valid)
我的问题是,一旦我加载了我的架构,我怎么告诉ajv链接架构要验证什么?我将有多条路径(链接)具有不同的输入以进行验证。
此外,架构设置是否正确?
答案 0 :(得分:1)
如果其他人需要这个,我使用了像这样的JSON指针:
const ajv = new Ajv({ allErrors: true, removeAdditional: true, v5: true });
ajv.addMetaSchema(hyperSchema, undefined, true);
ajv.addSchema(schema, 'questions.json');
const valid = ajv.validate({ $ref: 'questions.json#/links/0/schema' }, input);