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

    Interface NamespaceDescription

    A description of a namespace, including the name and record count.

    NamespaceDescription

    interface NamespaceDescription {
        indexedFields?: NamespaceDescriptionIndexedFields;
        name?: string;
        recordCount?: string;
        schema?: CreateNamespaceRequestSchema;
        sizeBytes?: string;
    }
    Index

    NamespaceDescription

    name?: string

    The name of the namespace.

    NamespaceDescription

    recordCount?: string

    The total number of records in the namespace. A 64-bit integer, serialized as a decimal string.

    NamespaceDescription

    NamespaceDescription

    sizeBytes?: string

    The total size of the namespace's data, in bytes, as a 64-bit integer serialized as a decimal string. Approximate: data written before size tracking reads as 0, and recently deleted data may still be counted; compaction converges the value.

    NamespaceDescription