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