Authorizations
Body
A request for creating a namespace with the specified namespace name.
The name of the namespace.
"example-namespace"
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.
{
"fields": {
"description": { "filterable": true },
"genre": { "filterable": true },
"year": { "filterable": true }
}
}
Response
A successful response.
A description of a namespace, including the name and record count.
The name of the namespace.
"example-namespace"
The total amount of records within the namespace.
20000
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.
{
"fields": {
"description": { "filterable": true },
"genre": { "filterable": true },
"year": { "filterable": true }
}
}
The total number of namespaces in the index matching the prefix
25