2013-05-24 06:02:42 -04:00
{
"suggest" : {
2015-03-24 12:03:35 -04:00
"documentation" : "http://www.elastic.co/guide/en/elasticsearch/reference/master/search-suggesters.html" ,
2013-05-24 06:02:42 -04:00
"methods" : [ "POST" , "GET" ] ,
"url" : {
"path" : "/_suggest" ,
"paths" : [ "/_suggest" , "/{index}/_suggest" ] ,
"parts" : {
"index" : {
2013-05-27 17:43:02 -04:00
"type" : "list" ,
"description" : "A comma-separated list of index names to restrict the operation; use `_all` or empty string to perform the operation on all indices"
2013-05-24 06:02:42 -04:00
}
} ,
"params" : {
2013-12-11 18:30:12 -05:00
"ignore_unavailable" : {
"type" : "boolean" ,
"description" : "Whether specified concrete indices should be ignored when unavailable (missing or closed)"
} ,
"allow_no_indices" : {
"type" : "boolean" ,
"description" : "Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)"
} ,
"expand_wildcards" : {
"type" : "enum" ,
2015-01-23 10:03:17 -05:00
"options" : [ "open" , "closed" , "none" , "all" ] ,
2013-12-11 18:30:12 -05:00
"default" : "open" ,
"description" : "Whether to expand wildcard expression to concrete indices that are open, closed or both."
2013-05-26 06:20:43 -04:00
} ,
"preference" : {
2013-05-27 17:43:02 -04:00
"type" : "string" ,
2013-06-17 10:43:02 -04:00
"description" : "Specify the node or shard the operation should be performed on (default: random)"
2013-05-24 06:02:42 -04:00
} ,
"routing" : {
2013-05-27 17:43:02 -04:00
"type" : "string" ,
"description" : "Specific routing value"
2013-05-24 06:02:42 -04:00
}
}
} ,
"body" : {
2014-01-20 05:03:03 -05:00
"description" : "The request definition" ,
"required" : true
2013-05-24 06:02:42 -04:00
}
}
}