The document structure is something as below, then I saw a warning message on kibana UI: "Objects in arrays are not well supported". I wonder what's the impacts? Thanks!
{
"field1": "value1",
"field2": "value2",
"field3": {
"innerfield4": "value4",
"innerfield5": [
{
"type": "type1",
"name": "name1"
},
{
"type": "type2",
"name": "name2"
}
]
}
}