Weaviate · Schema

WhereFilterGeoRange

Filter within a distance of a georange.

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
geoCoordinates object
distance object
View JSON Schema on GitHub

JSON Schema

weaviate-where-filter-geo-range-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-where-filter-geo-range-schema.json",
  "title": "WhereFilterGeoRange",
  "description": "Filter within a distance of a georange.",
  "type": "object",
  "properties": {
    "geoCoordinates": {
      "$ref": "#/components/schemas/GeoCoordinates"
    },
    "distance": {
      "type": "object",
      "properties": {
        "max": {
          "type": "number",
          "format": "float64"
        }
      }
    }
  }
}