Recapp Code Reference
    Preparing search index...

    Variable textElementStatisticsSchemaConst

    textElementStatisticsSchema: ZodObject<
        {
            answers: ZodArray<ZodString, "many">;
            archived: ZodOptional<
                ZodEffects<
                    ZodObject<
                        { type: ZodEnum<["Timestamp"]>; value: ZodNumber },
                        "strip",
                        ZodTypeAny,
                        { type: "Timestamp"; value: number },
                        { type: "Timestamp"; value: number },
                    >,
                    Timestamp,
                    { type: "Timestamp"; value: number },
                >,
            >;
            created: ZodEffects<
                ZodObject<
                    { type: ZodEnum<["Timestamp"]>; value: ZodNumber },
                    "strip",
                    ZodTypeAny,
                    { type: "Timestamp"; value: number },
                    { type: "Timestamp"; value: number },
                >,
                Timestamp,
                { type: "Timestamp"; value: number },
            >;
            groupName: ZodString;
            maximumParticipants: ZodNumber;
            participants: ZodNumber;
            questionId: ZodBranded<ZodString, "UID">;
            quizId: ZodBranded<ZodString, "UID">;
            tag: ZodEnum<["TextElementStatistics"]>;
            uid: ZodBranded<ZodString, "UID">;
            updated: ZodEffects<
                ZodObject<
                    { type: ZodEnum<["Timestamp"]>; value: ZodNumber },
                    "strip",
                    ZodTypeAny,
                    { type: "Timestamp"; value: number },
                    { type: "Timestamp"; value: number },
                >,
                Timestamp,
                { type: "Timestamp"; value: number },
            >;
            wrong: ZodNumber;
        },
        "strip",
        ZodTypeAny,
        {
            answers: string[];
            archived?: Timestamp;
            created: Timestamp;
            groupName: string;
            maximumParticipants: number;
            participants: number;
            questionId: string & BRAND<"UID">;
            quizId: string & BRAND<"UID">;
            tag: "TextElementStatistics";
            uid: string & BRAND<"UID">;
            updated: Timestamp;
            wrong: number;
        },
        {
            answers: string[];
            archived?: { type: "Timestamp"; value: number };
            created: { type: "Timestamp"; value: number };
            groupName: string;
            maximumParticipants: number;
            participants: number;
            questionId: string;
            quizId: string;
            tag: "TextElementStatistics";
            uid: string;
            updated: { type: "Timestamp"; value: number };
            wrong: number;
        },
    > = ...