Pinecone · Schema

CreateProjectRequest

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
name string The name of the new project.
max_pods integer The maximum number of Pods that can be created in the project. Default is `0` (serverless only).
force_encryption_with_cmek boolean Whether to force encryption with a customer-managed encryption key (CMEK). Default is `false`.
View JSON Schema on GitHub

JSON Schema

pinecone-createprojectrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateProjectRequest",
  "title": "CreateProjectRequest",
  "type": "object",
  "properties": {
    "name": {
      "example": "chatbot-prod",
      "description": "The name of the new project.",
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    },
    "max_pods": {
      "description": "The maximum number of Pods that can be created in the project. Default is `0` (serverless only).\n",
      "type": "integer"
    },
    "force_encryption_with_cmek": {
      "description": "Whether to force encryption with a customer-managed encryption key (CMEK). Default is `false`.\n",
      "type": "boolean"
    }
  },
  "required": [
    "name"
  ]
}