Open
Description
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