Currently, when configuring JSON as the body of a Notification, an array of items has to have a property name--there isn't a way to construct an array of JSON objects where the array isn't prefixed with "name": or some other property name. There are several endpoints that accept arrays of JSON objects but that don't expect the array to appear as a value for a given property, and so allowing syntax like, for instance:
[0].property1
[0].property2
[0].property3
[1].property1
[1].property2
[1].property3
Would end up with a JSON object that doesn't need the array to appear as the value of a property. Right now, if you enter in the above, you end up with an array, yes, but an array that appears as a value of the property named "":
{ "": [ {"property1"...
In short, in the above, I want to be able to remove the "": property name before the array, please.