Qdrant · Schema

GeoRadius

Geo filter request Matches coordinates inside the circle of `radius` and center with coordinates `center`

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
center object
radius number Radius of the area in meters
View JSON Schema on GitHub

JSON Schema

qdrant-georadius-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeoRadius",
  "title": "GeoRadius",
  "description": "Geo filter request\n\nMatches coordinates inside the circle of `radius` and center with coordinates `center`",
  "type": "object",
  "required": [
    "center",
    "radius"
  ],
  "properties": {
    "center": {
      "$ref": "#/components/schemas/GeoPoint"
    },
    "radius": {
      "description": "Radius of the area in meters",
      "type": "number",
      "format": "double"
    }
  }
}