How to XPOST JSON object that has nested arrays and other types in the same JSON document?

example 1.
{"layout-options": "Total Compensation with These Assumptions"}

{"layout-options": [
[
[
{
"fontsize": "10",
"txtValue": "Days to Ship by Product"
}
]
]
]}

{ "layout-options": [
[
[
{
"bold": "true",
"fontalignment": "0",
"fontcolor": "#906800",
"fontname": "Segoe UI",
"txtValue": "Estimated Compensation:"
},
{
"bold": "true",
"fontalignment": "0",
"txtValue": "Æ"
}
]
]
]}

Hi @ndixit,

I am not sure what you want to achieve. To me it looks you want to index multiple documents at once. For that you can use the bulk API

Daniel