Qdrant · Schema

GeoDistanceParams

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
origin object
to string Payload field with the destination geo point
View JSON Schema on GitHub

JSON Schema

qdrant-geodistanceparams-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeoDistanceParams",
  "title": "GeoDistanceParams",
  "type": "object",
  "required": [
    "origin",
    "to"
  ],
  "properties": {
    "origin": {
      "$ref": "#/components/schemas/GeoPoint"
    },
    "to": {
      "description": "Payload field with the destination geo point",
      "type": "string"
    }
  }
}