Pinecone TypeScript SDK - v8.2.0
    Preparing search index...

    Interface PreviewDocumentRecord

    A document with a unique identifier and arbitrary field values.

    DocumentRecord

    interface PreviewDocumentRecord {
        _id: string;
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index
    _id: string

    The unique identifier for the document.

    DocumentRecord