Whats in a name...

So if I do GET /rest/v11_4/Teams with {"max_num": 1000, "filter": [{"id": {"$equals": "5c2159ae-955c-11e6-b84e-063b661e1dc5"}}]}

I get

{"id":"5c2159ae-955c-11e6-b84e-063b661e1dc5","name":"Sugar","name_2":"Support"...

If i call GET /rest/v11_4/Teams with {"filter": [{"id": {"$equals": "5c2159ae-955c-11e6-b84e-063b661e1dc5"}}], "max_num": 1000, "fields": "id,name"}

I get

{"id":"5c2159ae-955c-11e6-b84e-063b661e1dc5","name":"Sugar Support"...

It looks like adding "name" to the fields list has caused it to merge "name" and "name_2". Is this documented and or expected behavior?

Parents Reply Children