Pinecone TypeScript SDK - v8.1.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.

    CreateNamespaceRequestSchema