Qdrant · Schema

DatetimeIndexParams

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
type object
is_principal boolean If true - use this key to organize storage of the collection data. This option assumes that this key will be used in majority of filtered requests.
on_disk boolean If true, store the index on disk. Default: false.
enable_hnsw boolean Enable HNSW graph building for this payload field. If true, builds additional HNSW links (Need payload_m > 0). Default: true.
View JSON Schema on GitHub

JSON Schema

qdrant-datetimeindexparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DatetimeIndexParams",
  "title": "DatetimeIndexParams",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/DatetimeIndexType"
    },
    "is_principal": {
      "description": "If true - use this key to organize storage of the collection data. This option assumes that this key will be used in majority of filtered requests.",
      "type": "boolean",
      "nullable": true
    },
    "on_disk": {
      "description": "If true, store the index on disk. Default: false.",
      "type": "boolean",
      "nullable": true
    },
    "enable_hnsw": {
      "description": "Enable HNSW graph building for this payload field. If true, builds additional HNSW links (Need payload_m > 0). Default: true.",
      "type": "boolean",
      "nullable": true
    }
  }
}