Qdrant · Schema

SparseVectorDataConfig

Config of single sparse vector data storage

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
index object
storage_type object
modifier object Configures addition value modifications for sparse vectors. Default: none
View JSON Schema on GitHub

JSON Schema

qdrant-sparsevectordataconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SparseVectorDataConfig",
  "title": "SparseVectorDataConfig",
  "description": "Config of single sparse vector data storage",
  "type": "object",
  "required": [
    "index"
  ],
  "properties": {
    "index": {
      "$ref": "#/components/schemas/SparseIndexConfig"
    },
    "storage_type": {
      "$ref": "#/components/schemas/SparseVectorStorageType"
    },
    "modifier": {
      "description": "Configures addition value modifications for sparse vectors. Default: none",
      "anyOf": [
        {
          "$ref": "#/components/schemas/Modifier"
        },
        {
          "nullable": true
        }
      ]
    }
  }
}