| Column | Header Name | Format | Notes |
|---|---|---|---|
| A | FIRST_NAME |
Title Case | No middle initials, no credentials |
| B | LAST_NAME |
Title Case | No middle initials, no credentials |
| C | PERSONAL_ADDRESS |
Title Case | Street address only |
| D | PERSONAL_CITY |
Title Case | City name |
| E | PERSONAL_STATE |
2-letter code | State abbreviation (e.g., NC, CA) |
| F | PERSONAL_ZIP |
String | ZIP code |
| G | MOBILE_PH |
Digits only | Mobile phone number |
- Current: "First Name", "Last Name", "Personal City", "Personal State"
- Required:
FIRST_NAME,LAST_NAME,PERSONAL_CITY,PERSONAL_STATE - Format: UPPERCASE with UNDERSCORES (not Title Case with spaces)
- Current: Outputs "Personal City" and "Personal State" (Title Case)
- Required:
PERSONAL_CITYandPERSONAL_STATE(UPPERCASE_UNDERSCORE)
- Current: Outputs "Address"
- Required:
PERSONAL_ADDRESS
- Current: Outputs "Phone"
- Required:
MOBILE_PH
The current implementation outputs:
Name,First Name,Last Name,Company,Title,Location
The enrichment tool expects:
FIRST_NAME,LAST_NAME,PERSONAL_ADDRESS,PERSONAL_CITY,PERSONAL_STATE,PERSONAL_ZIP,MOBILE_PH
Critical Changes Needed:
- Change all output column names to UPPERCASE_UNDERSCORE format
- Split Location into PERSONAL_CITY + PERSONAL_STATE (not "Personal City" + "Personal State")
- Rename Address → PERSONAL_ADDRESS
- Rename Phone → MOBILE_PH
- Remove "Name" column from output (already done in v3.10.0)
- Ensure PERSONAL_STATE outputs 2-letter abbreviation (NC, not "North Carolina")