Pinecone · Schema

UpdateResponse

The response for the `update` operation.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
matchedRecords integer The number of records that matched the filter (if a filter was provided).
View JSON Schema on GitHub

JSON Schema

pinecone-updateresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateResponse",
  "title": "UpdateResponse",
  "description": "The response for the `update` operation.",
  "type": "object",
  "properties": {
    "matchedRecords": {
      "example": 42,
      "description": "The number of records that matched the filter (if a filter was provided).",
      "type": "integer",
      "format": "int32"
    }
  }
}