Pinecone · Schema

UpsertResponse

The response for the `upsert` operation.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
upsertedCount integer The number of vectors upserted.
View JSON Schema on GitHub

JSON Schema

pinecone-upsertresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpsertResponse",
  "title": "UpsertResponse",
  "description": "The response for the `upsert` operation.",
  "type": "object",
  "properties": {
    "upsertedCount": {
      "example": 2,
      "description": "The number of vectors upserted.",
      "type": "integer",
      "format": "int64"
    }
  }
}