Pinecone · Schema

ImportErrorMode

Indicates how to respond to errors during the import process.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
onError string Indicates how to respond to errors during the import process. Possible values: `abort` or `continue`.
View JSON Schema on GitHub

JSON Schema

pinecone-importerrormode-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ImportErrorMode",
  "title": "ImportErrorMode",
  "description": "Indicates how to respond to errors during the import process.",
  "type": "object",
  "properties": {
    "onError": {
      "description": "Indicates how to respond to errors during the import process.\nPossible values: `abort` or `continue`.",
      "x-enum": [
        "abort",
        "continue"
      ],
      "type": "string"
    }
  }
}