Qdrant · Schema

ValuesCount

Values count filter request

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
lt integer point.key.length() < values_count.lt
gt integer point.key.length() > values_count.gt
gte integer point.key.length() >= values_count.gte
lte integer point.key.length() <= values_count.lte
View JSON Schema on GitHub

JSON Schema

qdrant-valuescount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ValuesCount",
  "title": "ValuesCount",
  "description": "Values count filter request",
  "type": "object",
  "properties": {
    "lt": {
      "description": "point.key.length() < values_count.lt",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "gt": {
      "description": "point.key.length() > values_count.gt",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "gte": {
      "description": "point.key.length() >= values_count.gte",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    },
    "lte": {
      "description": "point.key.length() <= values_count.lte",
      "type": "integer",
      "format": "uint",
      "minimum": 0,
      "nullable": true
    }
  }
}