TypeAlias.ImportMappingSource
type ImportMappingSource = {
example: string;
name?: string;
path: string;
profile?: {
alsoSeen: string[];
distinctCount: number;
fillPercent: number;
maxLength: number;
minLength: number;
valueType: | "boolean"
| "email"
| "url"
| "gtin"
| "countryCode"
| "isoDate"
| "currencyCode"
| "integer"
| "decimal"
| "quantityWithUnit"
| null;
};
};