2013-05-24 06:02:42 -04:00
{
"count" : {
2014-01-09 16:44:14 -05:00
"documentation" : "http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/search-count.html" ,
2013-05-24 06:02:42 -04:00
"methods" : [ "POST" , "GET" ] ,
"url" : {
"path" : "/_count" ,
"paths" : [ "/_count" , "/{index}/_count" , "/{index}/{type}/_count" ] ,
"parts" : {
"index" : {
2013-05-26 10:33:31 -04:00
"type" : "list" ,
"description" : "A comma-separated list of indices to restrict the results"
2013-05-24 06:02:42 -04:00
} ,
"type" : {
2013-05-26 10:33:31 -04:00
"type" : "list" ,
"description" : "A comma-separated list of types to restrict the results"
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" ,
"options" : [ "open" , "closed" ] ,
"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
} ,
"min_score" : {
2013-05-26 10:33:31 -04:00
"type" : "number" ,
"description" : "Include only documents with a specific `_score` value in the result"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"preference" : {
2013-05-26 10:33:31 -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-26 10:33:31 -04:00
"type" : "string" ,
"description" : "Specific routing value"
2013-05-24 06:02:42 -04:00
} ,
2013-05-26 06:20:43 -04:00
"source" : {
2013-05-26 10:33:31 -04:00
"type" : "string" ,
"description" : "The URL-encoded query definition (instead of using the request body)"
2013-05-24 06:02:42 -04:00
}
}
} ,
"body" : {
2013-12-17 08:20:00 -05:00
"description" : "A query to restrict the results specified with the Query DSL (optional)"
2013-05-24 06:02:42 -04:00
}
}
}