DuplicateRunDetailSchema: ZodObject<{
    DuplicateRunID: ZodString;
    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;
    SkippedReason: ZodNullable<ZodString>;
    __mj_CreatedAt: ZodDate;
    __mj_UpdatedAt: ZodDate;
}, "strip", ZodTypeAny, {
    DuplicateRunID?: string;
    ID?: string;
    MatchErrorMessage?: string;
    MatchStatus?: "Pending" | "Complete" | "Error" | "Skipped";
    MergeErrorMessage?: string;
    MergeStatus?: "Pending" | "Complete" | "Error" | "Not Applicable";
    RecordID?: string;
    SkippedReason?: string;
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}, {
    DuplicateRunID?: string;
    ID?: string;
    MatchErrorMessage?: string;
    MatchStatus?: "Pending" | "Complete" | "Error" | "Skipped";
    MergeErrorMessage?: string;
    MergeStatus?: "Pending" | "Complete" | "Error" | "Not Applicable";
    RecordID?: string;
    SkippedReason?: string;
    __mj_CreatedAt?: Date;
    __mj_UpdatedAt?: Date;
}> = ...

zod schema definition for the entity Duplicate Run Details

Type declaration

  • DuplicateRunID: ZodString
  • 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
  • SkippedReason: ZodNullable<ZodString>
  • __mj_CreatedAt: ZodDate
  • __mj_UpdatedAt: ZodDate

Type declaration

  • Optional DuplicateRunID?: string
  • Optional ID?: string
  • Optional MatchErrorMessage?: string
  • Optional MatchStatus?: "Pending" | "Complete" | "Error" | "Skipped"
  • Optional MergeErrorMessage?: string
  • Optional MergeStatus?: "Pending" | "Complete" | "Error" | "Not Applicable"
  • Optional RecordID?: string
  • Optional SkippedReason?: string
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date

Type declaration

  • Optional DuplicateRunID?: string
  • Optional ID?: string
  • Optional MatchErrorMessage?: string
  • Optional MatchStatus?: "Pending" | "Complete" | "Error" | "Skipped"
  • Optional MergeErrorMessage?: string
  • Optional MergeStatus?: "Pending" | "Complete" | "Error" | "Not Applicable"
  • Optional RecordID?: string
  • Optional SkippedReason?: string
  • Optional __mj_CreatedAt?: Date
  • Optional __mj_UpdatedAt?: Date