Variable BooleanSchemaSchemaConst
BooleanSchemaSchema: ZodObject<
{
default: ZodOptional<ZodBoolean>;
description: ZodOptional<ZodString>;
title: ZodOptional<ZodString>;
type: ZodLiteral<"boolean">;
},
"passthrough",
ZodTypeAny,
objectOutputType<
{
default: ZodOptional<ZodBoolean>;
description: ZodOptional<ZodString>;
title: ZodOptional<ZodString>;
type: ZodLiteral<"boolean">;
},
ZodTypeAny,
"passthrough",
>,
objectInputType<
{
default: ZodOptional<ZodBoolean>;
description: ZodOptional<ZodString>;
title: ZodOptional<ZodString>;
type: ZodLiteral<"boolean">;
},
ZodTypeAny,
"passthrough",
>,
> = ...
Primitive schema definition for boolean fields.