Result of import validation

export interface ImportValidationResult {
/** Whether the data is valid */
valid: boolean;
/** List of validation errors */
errors: string[];
/** List of validation warnings */
warnings: string[];
/** Number of valid matches */
matchCount: number;
/** Number of duplicate matches within import */
duplicateCount: number;
}
interface ImportValidationResult {
    valid: boolean;
    errors: string[];
    warnings: string[];
    matchCount: number;
    duplicateCount: number;
}

Properties

valid: boolean

Whether the data is valid

errors: string[]

List of validation errors

warnings: string[]

List of validation warnings

matchCount: number

Number of valid matches

duplicateCount: number

Number of duplicate matches within import