Member Junction
    Preparing search index...

    Variable MJDuplicateRunDetailSchemaConst

    MJDuplicateRunDetailSchema: ZodObject<
        {
            __mj_CreatedAt: ZodDate;
            __mj_UpdatedAt: ZodDate;
            DuplicateRun: ZodString;
            DuplicateRunID: ZodString;
            EndedAt: ZodNullable<ZodDate>;
            ID: ZodString;
            MatchErrorMessage: ZodNullable<ZodString>;
            MatchStatus: ZodUnion<
                [
                    ZodLiteral<"Complete">,
                    ZodLiteral<"Error">,
                    ZodLiteral<"Pending">,
                    ZodLiteral<"Skipped">,
                ],
            >;
            MergeErrorMessage: ZodNullable<ZodString>;
            MergeStatus: ZodUnion<
                [
                    ZodLiteral<"Complete">,
                    ZodLiteral<"Error">,
                    ZodLiteral<"Not Applicable">,
                    ZodLiteral<"Pending">,
                ],
            >;
            RecordID: ZodString;
            RecordMetadata: ZodNullable<ZodString>;
            SkippedReason: ZodNullable<ZodString>;
            StartedAt: ZodNullable<ZodDate>;
        },
        "strip",
        ZodTypeAny,
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            DuplicateRun?: string;
            DuplicateRunID?: string;
            EndedAt?: Date;
            ID?: string;
            MatchErrorMessage?: string;
            MatchStatus?: "Pending"
            | "Complete"
            | "Error"
            | "Skipped";
            MergeErrorMessage?: string;
            MergeStatus?: "Pending" | "Complete" | "Error" | "Not Applicable";
            RecordID?: string;
            RecordMetadata?: string;
            SkippedReason?: string;
            StartedAt?: Date;
        },
        {
            __mj_CreatedAt?: Date;
            __mj_UpdatedAt?: Date;
            DuplicateRun?: string;
            DuplicateRunID?: string;
            EndedAt?: Date;
            ID?: string;
            MatchErrorMessage?: string;
            MatchStatus?: "Pending"
            | "Complete"
            | "Error"
            | "Skipped";
            MergeErrorMessage?: string;
            MergeStatus?: "Pending" | "Complete" | "Error" | "Not Applicable";
            RecordID?: string;
            RecordMetadata?: string;
            SkippedReason?: string;
            StartedAt?: Date;
        },
    > = ...

    zod schema definition for the entity MJ: Duplicate Run Details