admin管理员组文章数量:1345107
Apologies if this has already been ask, but I wasn't able able to find an answer that works
I am having trouble validating a JSON Schema using an enum
type with AVJ
I would expect the below code to return false, since the given value does not appear in the enum
type
var Ajv = require('ajv');
var ajv = new Ajv();
var schema = {
gender: {
enum: [
'male',
'female',
'other'
]
}
};
ajv.validate(schema, { gender: 'test' });
// returns true
Are you able to let me know how to fix this please
Apologies if this has already been ask, but I wasn't able able to find an answer that works
I am having trouble validating a JSON Schema using an enum
type with AVJ
I would expect the below code to return false, since the given value does not appear in the enum
type
var Ajv = require('ajv');
var ajv = new Ajv();
var schema = {
gender: {
enum: [
'male',
'female',
'other'
]
}
};
ajv.validate(schema, { gender: 'test' });
// returns true
Are you able to let me know how to fix this please
Share Improve this question asked May 13, 2020 at 19:33 user1506269user15062691 Answer
Reset to default 9In JSON Schema, all properties in the schema are directives called keywords. Unknown keywords are ignored.
In your schema, "gender" isn't a known JSON Schema keyword, so it's going to be ignored. You're probably looking for the "properties" keyword:
{
properties: {
"gender": {
enum: ["male", "female", "other"]
}
}
}
本文标签: javascriptAVJ not validating enum typesStack Overflow
版权声明:本文标题:javascript - AVJ not validating enum types - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743804814a2541980.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论