NERM - doing something odd

I am currently working on a building out a script that I have almost completed. When we discovered that NERM is not using the pay load I am giving it to name objects. This is the first time I have seen this. When NERM processed it completely pulled off the assignment_organization_name_ne_attribute from the name. This has been part of our naming standard for years. Any ideas why I am seeing this behavior? I used post man to validate behavior.

What was created:

{
    "profile": {
        "id": "REDACTED_FOR_PRIVACY",
        "uid": "REDACTED_FOR_PRIVACY",
        "name": "Subcontractors Nursing/MA",
        "profile_type_id": "REDACTED_FOR_PRIVACY",
        "status": "Active",
        "id_proofing_status": "pending",
        "updated_at": "2026-01-13T16:36:03.166-05:00",
        "created_at": "2026-01-13T16:36:02.924-05:00",
        "attributes": {
            "engagement_start_date": "04/20/2026",
            "personal_first_name": "Jessika",
            "assignment_location_id_ne_attribute": "REDACTED_FOR_PRIVACY",
            "engagement_non_employee": "REDACTED_FOR_PRIVACY",
            "personal_email": "REDACTED_FOR_PRIVACY",
            "assignment_subpopulation_name": "Nursing/MA",
            "personal_last_name": "REDACTED_FOR_PRIVACY",
            "assignment_population": "Subcontractors",
            "assignment_organization_name_ne_attribute": "REDACTED_FOR_PRIVACY",
            "engagement_end_date": "04/20/2027",
            "assignment_sub_population": "Nursing/MA",
            "manager_ne_attribute": "REDACTED_FOR_PRIVACY",
            "assignment_facility_id_ne_attribute": "REDACTED_FOR_PRIVACY",
            "new_department_ne_attribute": "000AFF -- Affiliate"
        }
    }
}

What was passed:

{
    "profile": {
        "name": "REDACCTED Subcontractors Nursing/MA",
        "profile_type_id": "REDACCTED",
        "status": "Active",
        "id_proofing_status": "pending",
        "attributes": {
            "assignment_facility_id_ne_attribute": "REDACCTED",
            "assignment_location_id_ne_attribute": "REDACCTED",
            "assignment_organization_name_ne_attribute": "REDACCTED",
            "assignment_population": "REDACCTED",
            "assignment_sub_population": "REDACCTED",
            "assignment_subpopulation_name": "Nursing/MA",
            "department_ne_attribute": "REDACCTED",
            "engagement_end_date": "04/20/2027",
            "engagement_non_employee": "REDACCTED",
            "engagement_start_date": "04/20/2026",
            "personal_email": "REDACCTED",
            "personal_first_name": "REDACCTED",
            "personal_last_name": "REDACCTED",
            "new_department_ne_attribute": "REDACCTED",
            "manager_ne_attribute": "REDACCTED"
        }
    }
}

An attribute was missing from the payload. The Name was configured to look at 3 attributes and one of them was missing which is why the Name was not updated correctly. Added the missing attribute and it works as intended.