This guide explains Zod's internal error handling system, and the various ways you can customize it for your purposes.
All validation errors thrown by Zod are instances of ZodError
.
class ZodError extends Error {
issues: ZodIssue[];
}
ZodError is a subclass of Error
; you can create your own instance easily:
import * as z from "zod";
const myError = new z.ZodError([]);
Each ZodError has an issues
property that is an array of ZodIssues
. Each issue documents a problem that occurred during validation.
ZodIssue
is not a class. It is a discriminated union.
The link above is the best way to learn about the concept. Discriminated unions are an ideal way to represent a data structures that may be one of many possible variants. You can see all the possible variants defined here. They are also described in the table below if you prefer.
Every ZodIssue has these fields:
field | type | details |
---|---|---|
code |
z.ZodIssueCode |
You can access this enum with z.ZodIssueCode . A full breakdown of the possible values is below. |
path |
(string | number)[] |
e.g, ['addresses', 0, 'line1'] |
message |
string |
e.g. Invalid type. Expected string, received number. |
However depending on the error code, there may be additional properties as well. Here is a full breakdown of the additional fields by error code:
code | additional fields |
---|---|
ZodIssueCode.invalid_type | expected: ZodParsedType received: ZodParsedType Jump to this section for a breakdown of the possible values of ZodParsedType. |
ZodIssueCode.unrecognized_keys | keys: string[] The list of unrecognized keys |
ZodIssueCode.invalid_union | unionErrors: ZodError[] The errors thrown by each element of the union. |
ZodIssueCode.invalid_enum_value | options: string[] The set of acceptable string values for this enum. |
ZodIssueCode.invalid_arguments | argumentsError: ZodError This is a special error code only thrown by a wrapped function returned by ZodFunction.implement() . The argumentsError property is another ZodError containing the validation error details. |
ZodIssueCode.invalid_return_type | returnTypeError: ZodError This is a special error code only thrown by a wrapped function returned by ZodFunction.implement() . The returnTypeError property is another ZodError containing the validation error details. |
ZodIssueCode.invalid_date | no additional properties |
ZodIssueCode.invalid_string | validation: "url" | "email" | "uuid" Which built-in string validator failed |
ZodIssueCode.too_small | type: "string" | "number" | "array" The type of the data failing validation minimum: number The expected length/value. inclusive: boolean Whether the minimum is included in the range of acceptable values. |
ZodIssueCode.too_big | type: "string" | "number" | "array" The type of the data failing validation maximum: number The expected length/value. inclusive: boolean Whether the maximum is included in the range of acceptable values. |
ZodIssueCode.not_multiple_of | multipleOf: number The value the number should be a multiple of. |
ZodIssueCode.custom | params: { [k: string]: any } This is the error code throw by refinements (unless you are using superRefine in which case it's possible to throw issues of any ZodIssueCode ). You are able to pass in a params object here that is available in your custom error maps (see ZodErrorMap below for details on error maps) |
This is an enum used by Zod internally to represent the type of a parsed value. The possible values are:
string
nan
number
integer
float
boolean
date
bigint
symbol
function
undefined
null
array
object
unknown
promise
void
never
map
set
Here's a sample Person schema.
const person = z.object({
names: z.array(z.string()).nonempty(), // at least 1 name
address: z.object({
line1: z.string(),
zipCode: z.number().min(10000), // American 5-digit code
}),
});
Let's pass in some improperly formatted data.
try {
person.parse({
names: ["Dave", 12], // 12 is not a string
address: {
line1: "123 Maple Ave",
zipCode: 123, // zip code isn't 5 digits
extra: "other stuff", // unrecognized key
},
});
} catch (err) {
if (err instanceof z.ZodError) {
console.log(err.issues);
}
}
Here are the errors that will be printed:
[
{
code: "invalid_type",
expected: "string",
received: "number",
path: ["names", 1],
message: "Invalid input: expected string, received number",
},
{
code: "unrecognized_keys",
keys: ["extra"],
path: ["address"],
message: "Unrecognized key(s) in object: 'extra'",
},
{
code: "too_small",
minimum: 10000,
type: "number",
inclusive: true,
path: ["address", "zipCode"],
message: "Value should be greater than or equal to 10000",
},
];
As you can see three different issues were identified. Every ZodIssue has a code
property and additional metadata about the validation failure. For instance the unrecognized_keys
error provides a list of the unrecognized keys detected in the input.
You can customize all error messages produced by Zod by providing a custom "error map" to Zod, like so:
import { z } from "zod";
const customErrorMap: z.ZodErrorMap = (issue, ctx) => {
if (issue.code === z.ZodIssueCode.invalid_type) {
if (issue.expected === "string") {
return { message: "bad type!" };
}
}
if (issue.code === z.ZodIssueCode.custom) {
return { message: `less-than-${(issue.params || {}).minimum}` };
}
return { message: ctx.defaultError };
};
z.setErrorMap(customErrorMap);
ZodErrorMap
is a special function. It accepts two arguments: issue
and ctx
. The return type is { message: string }
. Essentially the error map accepts some information about the validation that is failing and returns an appropriate error message.
-
issue: Omit<ZodIssue, "message">
As mentioned above, ZodIssue is a discriminated union.
-
ctx: { defaultError: string; data: any }
-
ctx.defaultError
is the error message generated by the default error map. If you only want to override the message for a single type of error, you can do that. Just return{ message: ctx.defaultError }
for everything else. -
ctx.data
contains the data that was passed into.parse
. You can use this to customize the error message.
-
As in the example, you can modify certain error messages and simply fall back to ctx.defaultError
otherwise.
A custom error maps doesn't need to produce an error message for every kind of issue in Zod. Instead, your error map can override certain errors and return ctx.defaultError
for everything else.
But how is the value of ctx.defaultError
determined?
Error messages in Zod are generated by passing metadata about a validation issue through a chain of error maps. Error maps with higher priority override messages generated by maps with lower priority.
The lowest priority map is the defaultErrorMap
, which defined in src/errors.ts
. This produces the default error message for all issues in Zod.
This message is then passed as ctx.defaultError
into overrideErrorMap
. This is a global error map you can set with z.setErrorMap
:
const myErrorMap: z.ZodErrorMap = /* ... */;
z.setErrorMap(myErrorMap);
The overrideErrorMap
message is then passed as ctx.defaultError
into any schema-bound error maps. Every schema can be associated with an error map.
z.string({ errorMap: myErrorMap });
// this creates an error map under the hood
z.string({
invalid_type_error: "Invalid name",
required_error: "Name is required",
});
Finally, you can pass an error map as a parameter to any parse
method. This error map, if provided, has highest priority.
z.string().parse("adsf", { errorMap: myErrorMap });
Let's look at a practical example of of customized error map:
import * as z from "zod";
const errorMap: z.ZodErrorMap = (error, ctx) => {
/*
This is where you override the various error codes
*/
switch (error.code) {
case z.ZodIssueCode.invalid_type:
if (error.expected === "string") {
return { message: `This ain't a string!` };
}
break;
case z.ZodIssueCode.custom:
// produce a custom message using error.params
// error.params won't be set unless you passed
// a `params` arguments into a custom validator
const params = error.params || {};
if (params.myField) {
return { message: `Bad input: ${params.myField}` };
}
break;
}
// fall back to default message!
return { message: ctx.defaultError };
};
z.string().parse(12, { errorMap });
/* throws:
ZodError {
errors: [{
code: "invalid_type",
path: [],
message: "This ain't a string!",
expected: "string",
received: "number",
}]
}
*/
If you're using Zod to validate the inputs from a web form, there is a convenient way to "flatten" a ZodError to a rich, structured format that can be easily rendered in your interface.
Consider this example of a simple signup form:
const FormData = z.object({
name: z.string(),
contactInfo: z.object({
email: z.string().email(),
phone: z.string().optional(),
}),
});
Now lets pass in some invalid data:
const result = FormData.safeParse({
name: null,
contactInfo: {
email: "not an email",
phone: "867-5309",
},
});
This will throw a ZodError with two issues:
if (!result.success) {
console.log(result.error.issues);
}
/*
[
{
"code": "invalid_type",
"expected": "string",
"received": "null",
"path": ["name"],
"message": "Expected string, received null"
},
{
"validation": "email",
"code": "invalid_string",
"message": "Invalid email",
"path": ["contactInfo","email"]
}
]
*/
Using the .format()
method on ZodError
, we can make this error easier to work with.
if (!result.success) {
console.log(result.error.format());
/*
{
name: {
_errors: ['Expected string, received null']
},
contactInfo: {
email: {
_errors: ['Invalid email']
}
}
}
*/
}
As you can see, the result is an object that denormalizes the issues array into a nested object. This makes it easier to display error messages in your form interface.
const FormData = z.object({ ... });
function Errors(props: {errors?: string[]}){
if(!props.errors?.length) return null;
return <div>{props.errors.map(err => <p>{err}</p>)}</div>
}
function MyForm(){
const {register, data} = useForm({ ... });
const result = FormData.safeParse(data);
const errors = result.success ? {} : result.error.format();
return <div>
<label>Name<label>
<input {...register('name')}>
<Errors errors={errors?.name?._errors} />
</div>
}
Because .format
returns a deeply nested object, the errors are contained within the _errors
property to avoid key collisions. However this isn't necessary if your object schema is only one level deep.
In this scenario, .flatten()
may be more convenient.
if (!result.success) {
console.log(result.error.flatten());
}
/*
{
formErrors: [],
fieldErrors: {
name: ['Expected string, received null'],
contactInfo: ['Invalid email']
},
}
*/
The fieldErrors
key points to an object that groups all issues by key.
The formErrors
element is a list of issues that occurred on the "root" of the object schema. For instance: if you called FormData.parse(null)
, flatten()
would return:
const result = FormData.safeParse(null);
if (!result.success) {
result.error.flatten();
/*
{
formErrors: ["Invalid input: expected object, received null"],
fieldErrors: {}
}
*/
}
Both .flatten()
and .format()
accept an optional mapping function of (issue: ZodIssue) => U
to flatten()
, which can customize how each ZodIssue
is transformed in the final output.
This can be particularly useful when integrating Zod with form validation, as it allows you to pass back whatever ZodIssue
specific context you might need.
result.error.flatten((issue: ZodIssue) => ({
message: issue.message,
errorCode: issue.code,
}));
/*
{
formErrors: [],
fieldErrors: {
name: [
{message: "Expected string, received null", errorCode: "invalid_type"}
]
contactInfo: [
{message: "Invalid email", errorCode: "invalid_string"}
]
},
}
*/
You can infer the return type signature of .format()
and .flatten()
with the following utilities:
type FormattedErrors = z.inferFormattedError<typeof FormData>;
/*
{
name?: {_errors?: string[]},
contactInfo?: {
_errors?: string[],
email?: {
_errors?: string[],
},
phone?: {
_errors?: string[],
},
},
}
*/
type FlattenedErrors = z.inferFlattenedErrors<typeof FormData>;
/*
{
formErrors: string[],
fieldErrors: {
email?: string[],
password?: string[],
confirm?: string[]
}
}
*/
These utilities also accept a second generic argument that corresponds to the result of any ZodIssue
mapper function.
type FormDataErrors = z.inferFlattenedErrors<
typeof FormData,
{ message: string; errorCode: string }
>;
/*
{
formErrors: { message: string, errorCode: string }[],
fieldErrors: {
email?: { message: string, errorCode: string }[],
password?: { message: string, errorCode: string }[],
confirm?: { message: string, errorCode: string }[]
}
}
*/