lance-namespace-reqwest-client 0.7.6

This OpenAPI specification is a part of the Lance namespace specification. It contains 2 parts: The `components/schemas`, `components/responses`, `components/examples`, `tags` sections define the request and response shape for each operation in a Lance Namespace across all implementations. See https://lancedb.github.io/lance-namespace/spec/operations for more details. The `servers`, `security`, `paths`, `components/parameters` sections are for the Lance REST Namespace implementation, which defines a complete REST server that can work with Lance datasets. See https://lancedb.github.io/lance-namespace/spec/impls/rest for more details.
Documentation
# QueryTableRequest

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**identity** | Option<[**models::Identity**]Identity.md> |  | [optional]
**context** | Option<**std::collections::HashMap<String, String>**> | Arbitrary context for a request as key-value pairs. How to use the context is custom to the specific implementation.  REST NAMESPACE ONLY Context entries are passed via HTTP headers using the naming convention `x-lance-ctx-<key>: <value>`. For example, a context entry `{\"trace_id\": \"abc123\"}` would be sent as the header `x-lance-ctx-trace_id: abc123`.  | [optional]
**id** | Option<**Vec<String>**> |  | [optional]
**bypass_vector_index** | Option<**bool**> | Whether to bypass vector index | [optional]
**columns** | Option<[**models::QueryTableRequestColumns**]QueryTableRequest_columns.md> |  | [optional]
**distance_type** | Option<**String**> | Distance metric to use | [optional]
**ef** | Option<**i32**> | Search effort parameter for HNSW index | [optional]
**fast_search** | Option<**bool**> | Whether to use fast search | [optional]
**filter** | Option<**String**> | Optional SQL filter expression | [optional]
**full_text_query** | Option<[**models::QueryTableRequestFullTextQuery**]QueryTableRequest_full_text_query.md> |  | [optional]
**k** | **i32** | Number of results to return | 
**lower_bound** | Option<**f32**> | Lower bound for search | [optional]
**nprobes** | Option<**i32**> | Number of probes for IVF index | [optional]
**offset** | Option<**i32**> | Number of results to skip | [optional]
**prefilter** | Option<**bool**> | Whether to apply filtering before vector search | [optional]
**refine_factor** | Option<**i32**> | Refine factor for search | [optional]
**upper_bound** | Option<**f32**> | Upper bound for search | [optional]
**vector** | [**models::QueryTableRequestVector**]QueryTableRequest_vector.md |  | 
**vector_column** | Option<**String**> | Name of the vector column to search | [optional]
**version** | Option<**i64**> | Table version to query | [optional]
**with_row_id** | Option<**bool**> | If true, return the row id as a column called `_rowid` | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)