My_Json_File
{
"addressInfo": {
"city": "Wimsheim",
"postcode": "71299",
"geopoint": {
"lon": 48.845877,
"lat": 8.821861,
"alt": 0.0
}
},
"_id": "ac169008-aa5b-4b09-aa9e-3bf3018f316d"
}
- Pls give suggestion on how encounter this "alt" field in geopoint and "_id" field and also write a suitable mappings for above JSON file.
Update 1
My_Json_File
{
"_id": "ac169008-aa5b-4b09-aa9e-3bf3018f316d"
"addressInfo": {
"city": "Wimsheim",
"postcode": "71299",
"geopoint": {
"lon": 48.845877,
"lat": 8.821861,
"alt": 0.0
}
},
"prices": [{
"fuelType": "DIESEL",
"price": "52.09"
}, {
"fuelType": "PETROL",
"price": "66.20"
},{
"fuelType": "AUTOGAS",
"price": "66.20"
}]
}