Pinecone · Schema

CollectionList

The list of collections that exist in the project.

Vector DatabasesAIEmbeddingsRAG

Properties

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

JSON Schema

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