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

    Interface CreateNamespaceOptions

    Options for creating a namespace.

    interface CreateNamespaceOptions {
        name: string;
        schema?: MetadataSchema;
    }
    Index
    name: string

    The name of the namespace to create.

    Schema for the behavior of Pinecone's internal metadata index. By default, all metadata is indexed; when schema is present, only fields which are present in the fields object with a filterable: true are indexed. Note that filterable: false is not currently supported.