Properties
| Name | Type | Description |
|---|---|---|
| cortex_search_service | string | Fully-qualified name of a Cortex Search Service through which to find similar previous queries. |
| previous_query_column | string | Name of a TEXT column indexed in the specified previous queries search service that contains the previous query strings. |
| documents_column | string | Name of an ARRAY column indexed in the specified previous queries search service that contains a list of documents that matched the corresponding previous query. Each document is represented as an OBJ |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "QuerySimilarityBoost",
"type": "object",
"properties": {
"cortex_search_service": {
"type": "string",
"description": "Fully-qualified name of a Cortex Search Service through which to find similar previous queries."
},
"previous_query_column": {
"type": "string",
"description": "Name of a TEXT column indexed in the specified previous queries search service that contains the previous query strings."
},
"documents_column": {
"type": "string",
"description": "Name of an ARRAY column indexed in the specified previous queries search service that contains a list of documents that matched the corresponding previous query. Each document is represented as an OBJECT mapping all primary key columns to their corresponding values."
}
}
}