Variable personalDataSchemaConst

personalDataSchema: ZodArray<ZodObject<{
    disabled: ZodOptional<ZodBoolean>;
    label: ZodString;
    name: ZodString;
    optional: ZodOptional<ZodDefault<ZodBoolean>>;
    required: ZodOptional<ZodObject<{
        message: ZodString;
        pattern: ZodEffects<ZodString, string, string>;
    }, "strip", ZodTypeAny, {
        message: string;
        pattern: string;
    }, {
        message: string;
        pattern: string;
    }>>;
    size: ZodOptional<ZodDefault<ZodEnum<["half", "full"]>>>;
    value: ZodOptional<ZodDefault<ZodString>>;
}, "strip", ZodTypeAny, {
    disabled?: boolean;
    label: string;
    name: string;
    optional?: boolean;
    required?: {
        message: string;
        pattern: string;
    };
    size?: "half" | "full";
    value?: string;
}, {
    disabled?: boolean;
    label: string;
    name: string;
    optional?: boolean;
    required?: {
        message: string;
        pattern: string;
    };
    size?: "half" | "full";
    value?: string;
}>, "many"> = ...

Generated using TypeDoc