Interface PreviewLegacyMetadataField

A legacy metadata field from indexes created before typed schema fields were introduced. The original data type of the field (string, float, boolean, etc.) was not recorded. Only the filterable flag is available. This field type will not appear in new indexes; it may appear in responses for older indexes pending schema migration.

LegacyMetadataField

interface PreviewLegacyMetadataField {
    filterable: boolean;
}

Properties

Properties

filterable: boolean

Whether this field is indexed for metadata filtering.

LegacyMetadataField