Hi everyone,
I have an index that can growth with many nested fileds, and we want to limit nested field to one sub-level for identified fields. But we want to keep value of this nested fields into the master field
Example : we have [Properties][Request] and some nested fields under. We want to merge all nested fields value in this field [Properties][Request]
"Properties": {
"Request": {
"SourceApplicationName": "Pulsar",
"_typeTag": "BusMessage",
"ResponseContent": {
"TransactionBoutiqueId": "e383cde3-c802-4068-8141-41b3e91614a2"
},
"MessageType": "CreationTransactionBoutique"
},
Nested fields created =
Is this possible with ruby code ? May I have to change type of this field like object ?
Please help me