Pinecone · Schema

DeletionProtection

Whether [deletion protection](http://docs.pinecone.io/guides/manage-data/manage-indexes#configure-deletion-protection) is enabled/disabled for the index. Possible values: `disabled` or `enabled`.

Vector DatabasesAIEmbeddingsRAG
View JSON Schema on GitHub

JSON Schema

pinecone-deletionprotection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DeletionProtection",
  "title": "DeletionProtection",
  "description": "Whether [deletion protection](http://docs.pinecone.io/guides/manage-data/manage-indexes#configure-deletion-protection) is enabled/disabled for the index.\nPossible values: `disabled` or `enabled`.",
  "default": "disabled",
  "x-enum": [
    "disabled",
    "enabled"
  ],
  "type": "string"
}