OpenSearch/rest-api-spec/api/search.json

148 lines
5.2 KiB
JSON
Raw Normal View History

{
"search": {
2013-05-27 17:25:24 -04:00
"documentation": "http://www.elasticsearch.org/guide/reference/api/search/",
"methods": ["GET", "POST"],
"url": {
2013-05-27 17:25:24 -04:00
"path": "/_search",
"paths": ["/_search", "/{index}/_search", "/{index}/{type}/_search", "/_search/scroll", "/_search/scroll/{scroll_id}"],
"parts": {
"index": {
2013-05-27 17:25:24 -04:00
"type" : "list",
"description" : "A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices"
},
"type": {
2013-05-27 17:25:24 -04:00
"type" : "list",
"description" : "A comma-separated list of document types to search; leave empty to perform the operation on all types"
},
"scroll_id": {
2013-05-27 17:25:24 -04:00
"type" : "string",
"description" : "The scroll ID"
}
},
"params": {
2013-05-27 17:25:24 -04:00
"analyzer": {
"type" : "string",
"description" : "The analyzer to use for the query string"
},
"analyze_wildcard": {
2013-05-27 17:25:24 -04:00
"type" : "boolean",
"description" : "Specify whether wildcard and prefix queries should be analyzed (default: false)"
},
"default_operator": {
2013-05-27 17:25:24 -04:00
"type" : "enum",
"options" : ["AND","OR"],
"default" : "OR",
"description" : "The default operator for query string query (AND or OR)"
},
"df": {
2013-05-27 17:25:24 -04:00
"type" : "string",
"description" : "The field to use as default where no field prefix is given in the query string"
},
"explain": {
2013-05-27 17:25:24 -04:00
"type" : "boolean",
"description" : "Specify whether to return detailed information about score computation as part of a hit"
},
"fields": {
2013-05-27 17:25:24 -04:00
"type" : "list",
"description" : "A comma-separated list of fields to return as part of a hit"
},
"from": {
2013-05-27 17:25:24 -04:00
"type" : "number",
"description" : "Starting offset (default: 0)"
},
"ignore_indices": {
"type" : "enum",
"options" : ["none","missing"],
"default" : "none",
"description" : "When performed on multiple indices, allows to ignore `missing` ones"
},
"indices_boost": {
2013-05-27 17:25:24 -04:00
"type" : "list",
"description" : "Comma-separated list of index boosts"
},
"lenient": {
2013-05-27 17:25:24 -04:00
"type" : "boolean",
"description" : "Specify whether format-based query failures (such as providing text to a numeric field) should be ignored"
},
"lowercase_expanded_terms": {
2013-05-27 17:25:24 -04:00
"type" : "boolean",
"description" : "Specify whether query terms should be lowercased"
},
"operation_threading": {
2013-05-27 17:25:24 -04:00
"description" : "TODO: ?"
},
"preference": {
2013-05-27 17:25:24 -04:00
"type" : "string",
"description" : "Specify the shards the operation should be performed on (default: random shard)"
},
"q": {
2013-05-27 17:25:24 -04:00
"type" : "string",
"description" : "Query in the Lucene query string syntax"
},
"routing": {
2013-05-27 17:25:24 -04:00
"type" : "string",
"description" : "Specific routing value"
},
"scroll": {
2013-05-27 17:25:24 -04:00
"type" : "duration",
"description" : "Specify how long a consistent view of the index should be maintained for scrolled search"
},
"scroll_id": {
"type" : "string",
"description" : "The scroll ID for scrolled search"
},
"search_type": {
"type" : "enum",
"options" : ["query_then_fetch", "query_and_fetch", "dfs_query_then_fetch", "dfs_query_and_fetch", "count", "scan"],
"description" : "Search operation type"
},
"size": {
2013-05-27 17:25:24 -04:00
"type" : "number",
"description" : "Number of hits to return (default: 10)"
},
"sort": {
2013-05-27 17:25:24 -04:00
"type" : "list",
"description" : "A comma-separated list of <field>:<direction> pairs"
},
"source": {
2013-05-27 17:25:24 -04:00
"type" : "string",
"description" : "The URL-encoded request definition using the Query DSL (instead of using request body)"
},
"stats": {
2013-05-27 17:25:24 -04:00
"type" : "list",
"description" : "Specific 'tag' of the request for logging and statistical purposes"
},
"suggest_field": {
2013-05-27 17:25:24 -04:00
"type" : "string",
"description" : "Specify which field to use for suggestions"
},
"suggest_mode": {
2013-05-27 17:25:24 -04:00
"type" : "enum",
"options" : ["missing", "popular", "always"],
"default" : "missing",
"description" : "Specify suggest mode"
},
"suggest_size": {
2013-05-27 17:25:24 -04:00
"type" : "number",
"description" : "How many suggestions to return in response"
},
"suggest_text": {
2013-05-27 17:25:24 -04:00
"type" : "text",
"description" : "The source text for which the suggestions should be returned"
},
"timeout": {
2013-05-27 17:25:24 -04:00
"type" : "time",
"description" : "Explicit operation timeout"
},
"version": {
2013-05-27 17:25:24 -04:00
"type" : "boolean",
"description" : "Specify whether to return document version as part of a hit"
}
}
},
2013-05-27 17:25:24 -04:00
"body": {
"description": "The search definition using the Query DSL"
}
}
}