2013-05-24 06:02:42 -04:00
{
"count" : {
2015-03-24 12:03:35 -04:00
"documentation" : "http://www.elastic.co/guide/en/elasticsearch/reference/master/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" ,
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
} ,
"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"
2015-05-08 09:10:33 -04:00
} ,
"q" : {
"type" : "string" ,
"description" : "Query in the Lucene query string syntax"
} ,
"analyzer" : {
"type" : "string" ,
"description" : "The analyzer to use for the query string"
} ,
"analyze_wildcard" : {
"type" : "boolean" ,
"description" : "Specify whether wildcard and prefix queries should be analyzed (default: false)"
} ,
"default_operator" : {
"type" : "enum" ,
"options" : [ "AND" , "OR" ] ,
"default" : "OR" ,
"description" : "The default operator for query string query (AND or OR)"
} ,
"df" : {
"type" : "string" ,
"description" : "The field to use as default where no field prefix is given in the query string"
} ,
"lenient" : {
"type" : "boolean" ,
"description" : "Specify whether format-based query failures (such as providing text to a numeric field) should be ignored"
} ,
"lowercase_expanded_terms" : {
"type" : "boolean" ,
"description" : "Specify whether query terms should be lowercased"
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
}
}
}