Qdrant · Schema

NamedSparseVector

Sparse vector data with name

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
name string Name of vector data
vector object
View JSON Schema on GitHub

JSON Schema

qdrant-namedsparsevector-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NamedSparseVector",
  "title": "NamedSparseVector",
  "description": "Sparse vector data with name",
  "type": "object",
  "required": [
    "name",
    "vector"
  ],
  "properties": {
    "name": {
      "description": "Name of vector data",
      "type": "string"
    },
    "vector": {
      "$ref": "#/components/schemas/SparseVector"
    }
  }
}