Qdrant · Schema

VectorDataInfo

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
num_vectors integer
num_indexed_vectors integer
num_deleted_vectors integer
View JSON Schema on GitHub

JSON Schema

qdrant-vectordatainfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VectorDataInfo",
  "title": "VectorDataInfo",
  "type": "object",
  "required": [
    "num_deleted_vectors",
    "num_indexed_vectors",
    "num_vectors"
  ],
  "properties": {
    "num_vectors": {
      "type": "integer",
      "format": "uint",
      "minimum": 0
    },
    "num_indexed_vectors": {
      "type": "integer",
      "format": "uint",
      "minimum": 0
    },
    "num_deleted_vectors": {
      "type": "integer",
      "format": "uint",
      "minimum": 0
    }
  }
}