Pinecone · Schema

On-demand

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
mode string The mode of the index. Possible values: `OnDemand` or `Dedicated`. Defaults to `OnDemand`. If set to `Dedicated`, `dedicated.node_type`, and `dedicated.scaling` must be specified.
status object
View JSON Schema on GitHub

JSON Schema

pinecone-readcapacityondemandspecresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReadCapacityOnDemandSpecResponse",
  "title": "On-demand",
  "example": {
    "mode": "OnDemand",
    "status": {
      "state": "Ready"
    }
  },
  "type": "object",
  "properties": {
    "mode": {
      "description": "The mode of the index. Possible values: `OnDemand` or `Dedicated`. Defaults to `OnDemand`. If set to `Dedicated`, `dedicated.node_type`, and `dedicated.scaling` must be specified.",
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/ReadCapacityStatus"
    }
  },
  "required": [
    "mode",
    "status"
  ],
  "additionalProperties": false
}