Pinecone · Schema

UpsertRequest

The request for the `upsert` operation.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
vectors array An array containing the vectors to upsert. Recommended batch limit is up to 1000 vectors.
namespace string The namespace where you upsert vectors.
View JSON Schema on GitHub

JSON Schema

pinecone-upsertrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpsertRequest",
  "title": "UpsertRequest",
  "description": "The request for the `upsert` operation.",
  "type": "object",
  "properties": {
    "vectors": {
      "description": "An array containing the vectors to upsert. Recommended batch limit is up to 1000 vectors.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Vector"
      },
      "minLength": 1,
      "maxLength": 1000
    },
    "namespace": {
      "example": "example-namespace",
      "description": "The namespace where you upsert vectors.",
      "type": "string"
    }
  },
  "required": [
    "vectors"
  ]
}