I need to create some JSON data where there is an array of arrays, for example:
{
"headers": [
[
{
"field1": "string",
"field2": "string",
"field3": "string"
}
],
[
{
"field1": "string",
"field2": "string",
"field3": "string"
}
]
]
}
I am having trouble getting the most deeply nested arrays (under ‘headers’) due to not having a field name. I tried using a hidden field, but that didn’t work. Any suggestions how I can get this schema?