Scoring results by type_index

Hello!!

I have 3 indexes as following:

Index_CEO - Type_CEO - Document{ Name: William }
Index_Chief - Type_Chief - Document{ Name: Homer }
Index_Player - Type_Player - Document{ Name: Marcel }

How do I setup my search to give relevance to Index_Player documents? I would like my result as

1- Marcel - Type_Player
2- William - Type_CEO
3- Homer - Type_Chief

Thanks for help!!!

PS: I find the answer!!!

POST http://10.20.30.40:9200/_search
{
"query": {
"match": {
"_all": {
"query": "Marcel",
"operator": "and"
}
}
},
"indices_boost": {
"indice_player": 5.0,
"indice_ceo": 4.0,
"indice_chief": 3.0
}
}