QueryResponse
Properties
| Name |
Type |
Description |
Notes |
| version |
str |
The API version |
[optional] |
| index |
str |
The full name of the elasticsearch index that is searched |
[optional] |
| pit |
str |
The most recent Point In Time id of the index that is searched, each search request can return a different id; thus always use the most recently received id for the next search request. |
[optional] |
| search_after |
str |
The sort value of the last item from the previous search, used to paginate. The results are sorted by _shard_doc when a PIT is used and by document id (_id) without a PIT. |
[optional] |
| returned_hits |
int |
The number of returned hits (can be less than total_hits if a limit is set) |
[optional] |
| total_hits |
int |
The number of total hits |
[optional] |
| schema |
bool, date, datetime, dict, float, int, list, str, none_type |
The schema for an individual hit |
[optional] |
| results |
[bool, date, datetime, dict, float, int, list, str, none_type] |
A list of the actual results (one dictionary per hit) |
[optional] |