Pinecone · Schema

UpsertRecord

The request for the `upsert` operation.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
_id string The unique ID of the record to upsert. Note that `id` can be used as an alias for `_id`.
View JSON Schema on GitHub

JSON Schema

pinecone-upsertrecord-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpsertRecord",
  "title": "UpsertRecord",
  "example": {
    "_id": "example-record-1"
  },
  "description": "The request for the `upsert` operation.",
  "type": "object",
  "properties": {
    "_id": {
      "description": "The unique ID of the record to upsert. Note that `id` can be used as an alias for `_id`.",
      "type": "string"
    }
  },
  "required": [
    "_id"
  ]
}