Variable StringSchemaSchemaConst
StringSchemaSchema: ZodObject<
{
description: ZodOptional<ZodString>;
format: ZodOptional<ZodEnum<["email", "uri", "date", "date-time"]>>;
maxLength: ZodOptional<ZodNumber>;
minLength: ZodOptional<ZodNumber>;
title: ZodOptional<ZodString>;
type: ZodLiteral<"string">;
},
"passthrough",
ZodTypeAny,
objectOutputType<
{
description: ZodOptional<ZodString>;
format: ZodOptional<ZodEnum<["email", "uri", "date", "date-time"]>>;
maxLength: ZodOptional<ZodNumber>;
minLength: ZodOptional<ZodNumber>;
title: ZodOptional<ZodString>;
type: ZodLiteral<"string">;
},
ZodTypeAny,
"passthrough",
>,
objectInputType<
{
description: ZodOptional<ZodString>;
format: ZodOptional<ZodEnum<["email", "uri", "date", "date-time"]>>;
maxLength: ZodOptional<ZodNumber>;
minLength: ZodOptional<ZodNumber>;
title: ZodOptional<ZodString>;
type: ZodLiteral<"string">;
},
ZodTypeAny,
"passthrough",
>,
> = ...
Primitive schema definition for string fields.