Qdrant · Schema

HasVectorCondition

Filter points which have specific vector assigned

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
has_vector string
View JSON Schema on GitHub

JSON Schema

qdrant-hasvectorcondition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/HasVectorCondition",
  "title": "HasVectorCondition",
  "description": "Filter points which have specific vector assigned",
  "type": "object",
  "required": [
    "has_vector"
  ],
  "properties": {
    "has_vector": {
      "type": "string"
    }
  }
}