Pinecone · Schema

CreateIndexFromBackupRequest

The configuration needed to create a Pinecone index from a backup.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
name string The name of the index. Resource name must be 1-45 characters long, start and end with an alphanumeric character, and consist only of lower case alphanumeric characters or '-'.
tags object
deletion_protection object
View JSON Schema on GitHub

JSON Schema

pinecone-createindexfrombackuprequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateIndexFromBackupRequest",
  "title": "CreateIndexFromBackupRequest",
  "description": "The configuration needed to create a Pinecone index from a backup.",
  "type": "object",
  "properties": {
    "name": {
      "example": "example-index",
      "description": "The name of the index. Resource name must be 1-45 characters long, start and end with an alphanumeric character, and consist only of lower case alphanumeric characters or '-'.\n",
      "type": "string",
      "minLength": 1,
      "maxLength": 45
    },
    "tags": {
      "$ref": "#/components/schemas/IndexTags"
    },
    "deletion_protection": {
      "$ref": "#/components/schemas/DeletionProtection"
    }
  },
  "required": [
    "name"
  ]
}