最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - AVJ not validating enum types - Stack Overflow

programmeradmin1浏览0评论

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 user1506269user1506269
Add a ment  | 

1 Answer 1

Reset to default 9

In 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"]
    }
  }
}
发布评论

评论列表(0)

  1. 暂无评论