{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UuidIndexParams", "title": "UuidIndexParams", "type": "object", "required": [ "type" ], "properties": { "type": { "$ref": "#/components/schemas/UuidIndexType" }, "is_tenant": { "description": "If true - used for tenant optimization.", "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 } } }