Pinecone · Schema

IndexList

The list of indexes that exist in the project.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
indexes array List of indexes in the project
View JSON Schema on GitHub

JSON Schema

pinecone-indexlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IndexList",
  "title": "IndexList",
  "description": "The list of indexes that exist in the project.",
  "type": "object",
  "properties": {
    "indexes": {
      "description": "List of indexes in the project",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/IndexModel"
      }
    }
  }
}