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

    Interface CreateNamespaceRequestSchema

    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.

    CreateNamespaceRequestSchema

    interface CreateNamespaceRequestSchema {
        fields?: { [key: string]: CreateNamespaceRequestSchemaFieldsValue };
    }
    Index
    fields?: { [key: string]: CreateNamespaceRequestSchemaFieldsValue }

    A map of metadata field names to their configuration. The field name must be a valid metadata field name. The field name must be unique. At most 50 fields may be declared. Field names may not begin with $, which introduces a filter operator. When declared at index creation, names beginning with _ are also rejected (reserved for internal use).

    CreateNamespaceRequestSchema