{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BoolIndexParams", "title": "BoolIndexParams", "type": "object", "required": [ "type" ], "properties": { "type": { "$ref": "#/components/schemas/BoolIndexType" }, "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 } } }