There are many articles about BizTalk JSON encoder...
I am trying to produce JSON for 3rd party software wanting root level array, like so:
[
{
"property" : "value"
},
{
"property" : "value"
}
]
I am trying to control the output using schema, but I am not able to specify minOccurs and maxOccurs on the root node. I have also tried "Group Max/Min Occurs", with no difference.
Is it not possible to do this? What about the old newtonsoft hack for adding Array attribute to the output XML? (I have tried this as well, but failed...)