Qdrant · Schema

GeoBoundingBox

Geo filter request Matches coordinates inside the rectangle, described by coordinates of lop-left and bottom-right edges

AIArtificial IntelligenceVector Databases

Properties

Name Type Description
top_left object
bottom_right object
View JSON Schema on GitHub

JSON Schema

qdrant-geoboundingbox-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeoBoundingBox",
  "title": "GeoBoundingBox",
  "description": "Geo filter request\n\nMatches coordinates inside the rectangle, described by coordinates of lop-left and bottom-right edges",
  "type": "object",
  "required": [
    "bottom_right",
    "top_left"
  ],
  "properties": {
    "top_left": {
      "$ref": "#/components/schemas/GeoPoint"
    },
    "bottom_right": {
      "$ref": "#/components/schemas/GeoPoint"
    }
  }
}