Pinecone · Schema

SearchRecordsVector

Vector DatabasesAIEmbeddingsRAG

Properties

Name Type Description
values object
sparse_values array The sparse embedding values.
sparse_indices array The sparse embedding indices.
View JSON Schema on GitHub

JSON Schema

pinecone-searchrecordsvector-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SearchRecordsVector",
  "title": "SearchRecordsVector",
  "type": "object",
  "properties": {
    "values": {
      "$ref": "#/components/schemas/VectorValues"
    },
    "sparse_values": {
      "example": [
        0.1,
        0.2,
        0.3
      ],
      "description": "The sparse embedding values.",
      "type": "array",
      "items": {
        "type": "number",
        "format": "float"
      }
    },
    "sparse_indices": {
      "example": [
        10,
        3,
        156
      ],
      "description": "The sparse embedding indices.",
      "type": "array",
      "items": {
        "type": "integer",
        "format": "int32",
        "minimum": 0
      }
    }
  }
}