Recapp Code Reference
    Preparing search index...

    Variable idEntitySchemaConst

    idEntitySchema: ZodObject<
        {
            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 },
            >;
            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 },
            >;
        },
        "strip",
        ZodTypeAny,
        {
            archived?: Timestamp;
            created: Timestamp;
            uid: string & BRAND<"UID">;
            updated: Timestamp;
        },
        {
            archived?: { type: "Timestamp"; value: number };
            created: { type: "Timestamp"; value: number };
            uid: string;
            updated: { type: "Timestamp"; value: number };
        },
    > = ...