Interface PreviewIndexSchema

The schema of a Pinecone index. The schema defines the typed fields that documents in the index can contain, including vector fields, semantic text fields, and metadata fields.

IndexSchema

interface PreviewIndexSchema {
    fields: { [key: string]: PreviewIndexSchemaField };
}

Properties

Properties

fields: { [key: string]: PreviewIndexSchemaField }

A map of field names to their configurations. Field names must be unique, non-empty strings and must not use the reserved names _id, _values, or _sparse_values.

IndexSchema