Search Index Schema
data class SearchIndexSchema(val fieldSchemas: List<SearchIndexSchemaFieldSchema>, val indexSettings: List<SearchIndexSchemaIndexSetting>? = null, val indexSorts: List<SearchIndexSchemaIndexSort>? = null)
Constructors
Link copied to clipboard
constructor(fieldSchemas: List<SearchIndexSchemaFieldSchema>, indexSettings: List<SearchIndexSchemaIndexSetting>? = null, indexSorts: List<SearchIndexSchemaIndexSort>? = null)
Properties
Link copied to clipboard
A list of field schemas. See field_schema
below.
Link copied to clipboard
The settings of the search index, including routingFields. See index_setting
below.
Link copied to clipboard
The presorting settings of the search index, including sorters. If no value is specified for the indexSort parameter, field values are sorted by primary key by default. See index_sort
below.