Index and search analyzer in Elastic search 2.3.2

In Elastic search 2.3.2, we added the mappings as below

"ata": {
"type": "string",
"analyzer": "hyphenFieldIndexAnalyzer"
}

GET bfm_comv2_es_idx/part/_search?size=500
{
"query": {
"match": {
"ata": "23-12-11"
}
}
}

It gives 40 appropriate results which is right

If we give want to give the multiple analyzer, one for index and another for search
How can we give in mappings??

Whether it will work

"administrativeTrackingNumber": {
"type": "string",
"analyzer": "whitespaceAnalyzer",
"search_analyzer": "hyphenFieldSearchAnalyzer"
},

That is correct - https://www.elastic.co/guide/en/elasticsearch/reference/2.3/search-analyzer.html