Properties
| Name | Type | Description |
|---|---|---|
| type | object | |
| is_tenant | boolean | If true - used for tenant optimization. Default: false. |
| on_disk | boolean | If true, store the index on disk. Default: false. |
| enable_hnsw | boolean | Enable HNSW graph building for this payload field. If true, builds additional HNSW links (Need payload_m > 0). Default: true. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/KeywordIndexParams",
"title": "KeywordIndexParams",
"type": "object",
"required": [
"type"
],
"properties": {
"type": {
"$ref": "#/components/schemas/KeywordIndexType"
},
"is_tenant": {
"description": "If true - used for tenant optimization. Default: false.",
"type": "boolean",
"nullable": true
},
"on_disk": {
"description": "If true, store the index on disk. Default: false.",
"type": "boolean",
"nullable": true
},
"enable_hnsw": {
"description": "Enable HNSW graph building for this payload field. If true, builds additional HNSW links (Need payload_m > 0). Default: true.",
"type": "boolean",
"nullable": true
}
}
}