Hello @Mike Kiser and welcome back.
I noticed a syntax error, but not sure if it is the cause of your problem. Could you please try the change and let me know?
@Concat(
item().FirstName,
item().LastName,
'EmploymentStatuses: {Items: [{EffectiveStartDate: ',
item().effectiveHireDate)
'}}'
)
change the )
after effectiveHireDate
to ,
@Concat(
item().FirstName,
item().LastName,
'EmploymentStatuses: {Items: [{EffectiveStartDate: ',
item().effectiveHireDate,
'}}'
)