Interface PreviewStringListField

A string array field configuration. String array values are not declared in the index schema; include them as document metadata instead — they are indexed automatically at upsert time.

StringListField

interface PreviewStringListField {
    description?: string;
    filterable?: boolean;
    type: "string_list";
}

Properties

description?: string

Optional description for this field.

StringListField

filterable?: boolean

Whether this field is indexed for metadata filtering.

StringListField

type: "string_list"

Identifies this as a string array field. Must be string_list.

StringListField