Before validating, you’ll need created mappings. See Mapping Schemas to create your first mapping.
Why validate mappings
Validation serves several purposes: Catch transformation errors: Identify syntax errors, type mismatches, or logic bugs in transformation expressions before they affect production data. Verify edge cases: Ensure your transformations handle unusual or unexpected values in your source data. Preview output: See exactly how your data will appear after normalization. Ensure attribute compliance: Confirm that transformed values meet attribute validations (enums, ranges, patterns).Testing with sample data
Using the UI
- Navigate to your dataset’s Rosetta Stone tab
- Select one or more mappings
- Click Test Mappings
- Sample rows from your source data
- The transformation applied
- The resulting output
- Any validation errors or warnings
Using the API
Test a specific mapping against sample data:Common validation checks
Type conversion accuracy
Verify that type conversions work correctly:| Source type | Target type | Test for |
|---|---|---|
| String → Integer | Numeric strings | Non-numeric values, decimals |
| String → Timestamp | Date strings | Malformed dates, timezone handling |
| Integer → Float | Numbers | Precision loss |
| String → Boolean | Text values | Case sensitivity, unexpected values |
- Valid dates:
"01/15/2024" - Invalid format:
"2024-01-15"(wrong format) - Edge cases:
"02/29/2024"(leap year),"13/01/2024"(invalid month)
Enum value coverage
For enum attributes, ensure all source values map to valid enum members:- Get unique values from your source column
- Trace each through your transformation
- Verify all outputs are in the allowed values list
"M", "F", "Male", "Female", "m", "f", "", null
Transformation:
Null handling
Test how your transformation handles:- Explicit nulls
- Empty strings
- Missing values (if applicable)
Date and timestamp parsing
Date transformations are common sources of errors. Test:| Scenario | Example |
|---|---|
| Standard format | "01/15/2024" |
| Different separators | "01-15-2024", "01.15.2024" |
| Year variations | "01/15/24" (two-digit year) |
| Time zones | "2024-01-15T10:30:00-05:00" |
| UTC timestamps | "2024-01-15T15:30:00Z" |
| Timestamps with milliseconds | "2024-01-15T15:30:00.123Z" |
Reviewing validation results
Understanding error messages
Common validation errors and their meanings:| Error | Cause | Solution |
|---|---|---|
| ”Type mismatch” | Output type doesn’t match attribute type | Add explicit CAST() or fix transformation logic |
| ”Invalid enum value” | Output not in allowed values | Add case to transformation or map to default |
| ”Validation failed: minimum” | Numeric value below minimum | Add range check or filter invalid data |
| ”Validation failed: pattern” | String doesn’t match regex | Verify format or clean source data |
| ”Null value for required field” | Required field is null | Add COALESCE() or fix source data |
Sample output review
When reviewing test output:- Spot check random samples: Verify that typical values transform correctly
- Focus on edge cases: Pay extra attention to unusual values
- Check for unexpected nulls: Nulls appearing where values are expected indicate transformation issues
- Verify consistency: Same input should always produce same output
Iterating on mappings
When validation reveals issues, follow this process:1. Identify the root cause
Is the issue:- A bug in the transformation expression?
- Unexpected values in source data?
- A mismatch between data and attribute definition?
2. Update the mapping
Fix the transformation expression to handle the issue:3. Re-validate
Run tests again to confirm the fix works and doesn’t introduce new issues.4. Test with full sample
Before activating, test against a larger sample to catch less common edge cases:Promoting to production
Once validation passes:Review summary statistics
Check the overall validation results:- What percentage of samples passed?
- Are failures concentrated in specific value patterns?
- Is the failure rate acceptable for your use case?
Activate the mapping
Via UI:- Click Activate on the mapping
- Confirm the activation

