Pinecone TypeScript SDK - v9.0.0
    Preparing search index...

    Interface IntegerField

    A legacy integer field configuration. Integer fields were used in older index schemas before numeric values were normalized to float at upsert time. New indexes will not produce this field type; it may appear in responses for indexes created before that normalization was introduced.

    IntegerField

    interface IntegerField {
        description?: string | null;
        filterable?: boolean;
        type: "integer";
    }
    Index
    description?: string | null

    Optional description for this field. null when none was set.

    IntegerField

    filterable?: boolean

    Whether this field is indexed for metadata filtering.

    IntegerField

    type: "integer"

    Identifies this as an integer field. Must be integer.

    IntegerField