@dw_22801
If all those fields repeat, then try stating that there may be multiple instances of each set of values & that each instance should be added as another json object to the json array.
And in the example try…
[Start example JSON]
[
{
"Name:": [data],
"Ticket:": [data],
"Gross Standard Volume:": [data],
"Net Standard Volume:": [data],
"Meter Density:": [data],
"Meter Temperature:": [data],
"S&W%:": [data]
},
{
"Name:": [data],
"Ticket:": [data],
"Gross Standard Volume:": [data],
"Net Standard Volume:": [data],
"Meter Density:": [data],
"Meter Temperature:": [data],
"S&W%:": [data]
}
]
[End example JSON]
That way you clearly indicate you want a JSON array response with multiple objects in the JSON array.