Qdrant · Schema

GeoIndexParams

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
type object
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-geoindexparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeoIndexParams",
  "title": "GeoIndexParams",
  "type": "object",
  "required": [
    "type"
  ],
  "properties": {
    "type": {
      "$ref": "#/components/schemas/GeoIndexType"
    },
    "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
    }
  }
}