shared
    Preparing search index...

    Variable userSchemaConst

    userSchema: ZodObject<
        Omit<
            { password: ZodString } & { username: ZodString } & {
                email: ZodOptional<ZodString>;
                name: ZodOptional<ZodString>;
            },
            "password",
        > & { id: ZodNumber },
        "strip",
        ZodTypeAny,
        { email?: string; id: number; name?: string; username: string },
        { email?: string; id: number; name?: string; username: string },
    > = ...

    Response with one user