Awesome Reviewers

When creating entityMappings, use semantically strong, standard identifier fields as the mapped columnName. Avoid “legacy/weak” intermediary names like AccountCustomEntity (and avoid unnecessary wrapper columns like IPCustomEntity) when a direct standard field already exists.

Apply this consistently:

Example (replace legacy mapping):

// Before (legacy/weak naming)
| extend AccountCustomEntity = UserPrincipalName
...
entityMappings:
  - entityType: Account
    fieldMappings:
      - identifier: FullName
        columnName: AccountCustomEntity

// After (standard identifier)
| extend UserPrincipalName = tostring(InitiatedBy.user.userPrincipalName)
...
entityMappings:
  - entityType: Account
    fieldMappings:
      - identifier: FullName
        columnName: UserPrincipalName

Example (avoid IP wrapper):

// Before
| extend IPCustomEntity = SrcIpAddr
...
entityMappings:
  - entityType: Ip
    fieldMappings:
      - identifier: Address
        columnName: IPCustomEntity

// After
...
entityMappings:
  - entityType: Ip
    fieldMappings:
      - identifier: Address
        columnName: SrcIpAddr