Qdrant · Schema

DatetimeRange

Range filter request

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
lt string point.key < range.lt
gt string point.key > range.gt
gte string point.key >= range.gte
lte string point.key <= range.lte
View JSON Schema on GitHub

JSON Schema

qdrant-datetimerange-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatetimeRange",
  "title": "DatetimeRange",
  "description": "Range filter request",
  "type": "object",
  "properties": {
    "lt": {
      "description": "point.key < range.lt",
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "gt": {
      "description": "point.key > range.gt",
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "gte": {
      "description": "point.key >= range.gte",
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "lte": {
      "description": "point.key <= range.lte",
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  }
}