Skip to content

The coerceTypes: 'array' doesn't coerce one parameter to a single element in array #318

Open
@meotimdihia

Description

@meotimdihia

Prerequisites

  • I have written a descriptive issue title
  • I have searched existing issues to ensure the bug has not already been reported

Fastify version

3.x.x

Plugin version

5.x.x

Node.js version

14.x

Operating system

Windows

Operating system version (i.e. 20.04, 11.3, 10)

10

Description

I have got this error when send a POST request.

{statusCode: 400, error: "Bad Request", message: "body.authors should be array"}
error: "Bad Request"
message: "body.authors should be array"
statusCode: 400

My schema

  const body = {
    type: "object",
    properties: {
      authors: {
        type: "array",
        items: {
          type: "object"
        }
      }
   }

Fastify configuration

server.register(fastifyMultipart, {
 attachFieldsToBody: true,
 sharedSchemaId: "#mySharedSchema",
})
const ajv = new Ajv({
 removeAdditional: true,
 useDefaults: true,
 coerceTypes: "array",
 nullable: true
})
fastify.setValidatorCompiler(({ schema }) => {
 return ajv.compile(schema)
})

Steps to Reproduce

It is straightforward.

Expected Behavior

No response

Metadata

Metadata

Assignees

No one assigned

    Labels

    documentationImprovements or additions to documentationgood first issueGood for newcomers

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions