I've got json documents as follows:
{
"_index": "x",
"_type": "y",
"_id": "z",
"_version": 1,
"found": true,
"_source": {
"request": {
"segmentList": [
{
"departure": {
"code": "JFK"
},
"destination": {
"code": "LAX"
},
"departureDate": "2017-06-14"
},
{
"departure": {
"code": "LAX"
},
"destination": {
"code": "JFK"
},
"departureDate": "2017-06-28"
}
]
}
}
}
Is there any way i can search in kibana for first departureDate="2017-06-14" and second departureDate="2017-06-28" ?