Class TableIndexMetadata
Metadata about an existing table index, as returned by the Data API.
[JsonConverter(typeof(TableIndexMetadataConverter))]
public class TableIndexMetadata
- Inheritance
-
TableIndexMetadata
- Inherited Members
Properties
Definition
The definition of the index, including the target column and options.
[JsonPropertyName("definition")]
public TableBaseIndexDefinition Definition { get; set; }
Property Value
IndexType
The type of the index (e.g., "regular" or "vector").
[JsonPropertyName("indexType")]
public string IndexType { get; set; }
Property Value
Name
The name of the index.
[JsonPropertyName("name")]
public string Name { get; set; }