Qdrant · Schema

GeoPoint

Geo point payload schema

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
lon number
lat number
View JSON Schema on GitHub

JSON Schema

qdrant-geopoint-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeoPoint",
  "title": "GeoPoint",
  "description": "Geo point payload schema",
  "type": "object",
  "required": [
    "lat",
    "lon"
  ],
  "properties": {
    "lon": {
      "type": "number",
      "format": "double"
    },
    "lat": {
      "type": "number",
      "format": "double"
    }
  }
}