import type * as HydraDB from "../index.js"; export interface TenantsCustomPropertyDefinition { /** Milvus data type for this metadata field. */ dataType?: HydraDB.TenantsMilvusDataType; /** Whether to enable semantic (dense) embedding search on this field. */ enableDenseEmbedding?: boolean; /** Whether to enable exact-match filtering on this field. */ enableMatch?: boolean; /** Whether to enable BM25 (sparse) embedding search on this field. */ enableSparseEmbedding?: boolean; /** Maximum string length in bytes for VARCHAR fields. */ maxLength?: number; /** Field name. Immutable after database creation. */ name?: string; }