Modifies the JSON structure by converting a property to an array if it's not already an array and not empty. It's basically meant for api which usually tend to have polymorphic response.I.e for instance a part of the object let's a property name POAPartiesDetails sometimes is sent via array
or sometimes is sent via single element of that particular type. The extension will basically always this using C#
From example
"POAPartiesDetails": {
"FirstName": "ZZZ",
"SecondName": "ZZZ",
"FamilyName": "ZZZ"
}
To
"POAPartiesDetails": [
]