Pinecone · Schema

CreateBackupRequest

The configuration needed to create a backup of an index.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
name string The name of the backup.
description string A description of the backup.
View JSON Schema on GitHub

JSON Schema

pinecone-createbackuprequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateBackupRequest",
  "title": "CreateBackupRequest",
  "description": "The configuration needed to create a backup of an index.",
  "type": "object",
  "properties": {
    "name": {
      "description": "The name of the backup.",
      "type": "string"
    },
    "description": {
      "description": "A description of the backup.",
      "type": "string"
    }
  }
}