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

typescript - Error: strict mode: unknown keyword: "elements" - Stack Overflow

programmeradmin0浏览0评论

AJV v8.17.1 has been working for validations in our project for a while, but we never used it for any arrays. When used for this object:

{"name":"a","codes":["A01"]}

it's throwing:

strict mode: unknown keyword: \"elements\"

Here is the validation code:

export type TempDetails = {
  name: string;
  codes: string[];
};

export type JTDTempDetailsCreateRequestSchema = JTDSchemaType<TempDetails>;

export const jtdTempDetailsCreateRequestSchema: JTDTempDetailsCreateRequestSchema = {
  properties: {
    name: { type: 'string' },
    codes: { elements: { type: 'string' }, nullable: false },
  },
};

const ajv = new Ajv();

const validate = ajvpile<TempDetails>(jtdTempDetailsCreateRequestSchema);

if (!validate(untypedClass)) 
    throw new BadRequest(`Invalid Request: ${JSON.stringify(validate.errors)}`);

AJV v8.17.1 has been working for validations in our project for a while, but we never used it for any arrays. When used for this object:

{"name":"a","codes":["A01"]}

it's throwing:

strict mode: unknown keyword: \"elements\"

Here is the validation code:

export type TempDetails = {
  name: string;
  codes: string[];
};

export type JTDTempDetailsCreateRequestSchema = JTDSchemaType<TempDetails>;

export const jtdTempDetailsCreateRequestSchema: JTDTempDetailsCreateRequestSchema = {
  properties: {
    name: { type: 'string' },
    codes: { elements: { type: 'string' }, nullable: false },
  },
};

const ajv = new Ajv();

const validate = ajvpile<TempDetails>(jtdTempDetailsCreateRequestSchema);

if (!validate(untypedClass)) 
    throw new BadRequest(`Invalid Request: ${JSON.stringify(validate.errors)}`);
Share Improve this question edited 2 days ago jonrsharpe 122k30 gold badges268 silver badges475 bronze badges asked 2 days ago SW DogSW Dog 1852 silver badges18 bronze badges 1
  • Did you mean items? – jonrsharpe Commented 2 days ago
Add a comment  | 

1 Answer 1

Reset to default 0

update your code to this. You didn't define the code array correctly

properties: {
    name: { type: 'string' },
    codes: { type: 'array', 
             items: { 
               type: 'object': { 
               properties: { 
                 elements: { type: 'string', nullable: false }}}}},
  },

EDIT: your example doesn't match the schema you have

{"name":"a","codes":["A01"]}

This would be equivalent to this

properties: {
    name: { type: 'string' },
    codes: { type: 'array', 
             items: { type: 'string', nullable: false }},
  },
发布评论

评论列表(0)

  1. 暂无评论