Pinecone · Schema

BYOC

Configuration needed to deploy an index in a BYOC environment.

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
environment string The environment where the index is hosted.
read_capacity object
schema object
View JSON Schema on GitHub

JSON Schema

pinecone-byocspec-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ByocSpec",
  "title": "BYOC",
  "example": {
    "environment": "aws-us-east-1-b921"
  },
  "description": "Configuration needed to deploy an index in a BYOC environment.",
  "type": "object",
  "properties": {
    "environment": {
      "example": "aws-us-east-1-b921",
      "description": "The environment where the index is hosted.",
      "type": "string"
    },
    "read_capacity": {
      "$ref": "#/components/schemas/ReadCapacity"
    },
    "schema": {
      "$ref": "#/components/schemas/MetadataSchema"
    }
  },
  "required": [
    "environment"
  ]
}