Scim connector Patch error on path parameter

Hi, I’m having an issue with a SCIM Core v2 connector. I’m integrating a target system that has PATCH enabled for updates, but for some fields it accepts the integration without the path attribute, while for others it strictly requires it. Is there a way to configure this behavior in One Identity?

I’m attaching what the connector sent and what the target requires:


"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "replace",
"value": {
"urn:ietf:params:scim:schemas:extension:enterprise:2.0:User": {
"department": "TestBU",
"taxonomies": [
{
"displayName": "Group B",
"type": null
}
]
}
}
}
]
}"

Requested from target:

        {            "op": "Replace",   

         "path": "urn:ietf:params:scim:schemas:extension:enterprise:2.0:User:costCenter",   

         "value": "VALUE"        }