jamespot-user-api
    Preparing search index...

    Variable surveyDateResponsesSchemaConst

    surveyDateResponsesSchema: ZodRecord<
        ZodString,
        ZodObject<
            {
                dates: ZodArray<ZodString, "many">;
                user: ZodObject<
                    {
                        _url: ZodString;
                        id: ZodType<number, ZodTypeDef, number>;
                        mainType: ZodType<string, ZodTypeDef, string>;
                        title: ZodString;
                        type: ZodType<string, ZodTypeDef, string>;
                        uri: ZodType<string, ZodTypeDef, string>;
                    } & {
                        dateCreation: ZodString;
                        dateModified: ZodString;
                        level: ZodNativeEnum<{ ADMIN: 9; EXTERNAL: 3; GUEST: 0; USER: 5 }>;
                        variant: ZodOptional<ZodNativeEnum<{ EXTRABOT: "extraBot" }>>;
                    },
                    "strip",
                    ZodTypeAny,
                    UserLittle,
                    UserLittle,
                >;
            },
            "strip",
            ZodTypeAny,
            {
                dates: string[];
                user: Omit<
                    jObjectLittle,
                    "dateCreation"
                    | "dateModified"
                    | "level"
                    | "variant",
                > & {
                    dateCreation: string;
                    dateModified: string;
                    level: 0 | 3 | 5 | 9;
                    variant?: "extraBot";
                };
            },
            {
                dates: string[];
                user: Omit<
                    jObjectLittle,
                    "dateCreation"
                    | "dateModified"
                    | "level"
                    | "variant",
                > & {
                    dateCreation: string;
                    dateModified: string;
                    level: 0 | 3 | 5 | 9;
                    variant?: "extraBot";
                };
            },
        >,
    > = ...