2014-07-23 22:54:00 -04:00
{
"search_exists" : {
2015-03-24 12:03:35 -04:00
"documentation" : "http://www.elastic.co/guide/en/elasticsearch/reference/master/search-exists.html" ,
2014-07-23 22:54:00 -04:00
"methods" : [ "POST" , "GET" ] ,
"url" : {
"path" : "/_search/exists" ,
"paths" : [ "/_search/exists" , "/{index}/_search/exists" , "/{index}/{type}/_search/exists" ] ,
"parts" : {
"index" : {
"type" : "list" ,
"description" : "A comma-separated list of indices to restrict the results"
} ,
"type" : {
"type" : "list" ,
"description" : "A comma-separated list of types to restrict the results"
}
} ,
"params" : {
"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" ] ,
2014-07-23 22:54:00 -04:00
"default" : "open" ,
"description" : "Whether to expand wildcard expression to concrete indices that are open, closed or both."
} ,
"min_score" : {
"type" : "number" ,
"description" : "Include only documents with a specific `_score` value in the result"
} ,
"preference" : {
"type" : "string" ,
"description" : "Specify the node or shard the operation should be performed on (default: random)"
} ,
"routing" : {
"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"
2014-07-23 22:54:00 -04:00
}
}
} ,
"body" : {
"description" : "A query to restrict the results specified with the Query DSL (optional)"
}
}
}