Interface CreateNamespaceOptions

Options for creating a namespace.

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

Properties

Properties

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.