Pinecone · Schema

ListNamespacesResponse

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
namespaces array The list of namespaces belonging to this index.
pagination object
total_count integer The total number of namespaces in the index matching the prefix
View JSON Schema on GitHub

JSON Schema

pinecone-listnamespacesresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListNamespacesResponse",
  "title": "ListNamespacesResponse",
  "type": "object",
  "properties": {
    "namespaces": {
      "description": "The list of namespaces belonging to this index.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/NamespaceDescription"
      }
    },
    "pagination": {
      "$ref": "#/components/schemas/Pagination"
    },
    "total_count": {
      "example": 25,
      "description": "The total number of namespaces in the index matching the prefix",
      "type": "integer",
      "format": "int32"
    }
  }
}