exportinterfaceImportValidationResult { /** 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; }
Result of import validation
Source