Weaviate · Schema

GeoCoordinates

Weaviate GeoCoordinates schema

Vector DatabaseAIMachine LearningSemantic SearchOpen SourceGraphQLKubernetes

Properties

Name Type Description
latitude number The latitude of the point on earth in decimal form.
longitude number The longitude of the point on earth in decimal form.
View JSON Schema on GitHub

JSON Schema

weaviate-geo-coordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/weaviate/json-schema/weaviate-geo-coordinates-schema.json",
  "title": "GeoCoordinates",
  "description": "Weaviate GeoCoordinates schema",
  "type": "object",
  "properties": {
    "latitude": {
      "type": "number",
      "format": "float",
      "description": "The latitude of the point on earth in decimal form."
    },
    "longitude": {
      "type": "number",
      "format": "float",
      "description": "The longitude of the point on earth in decimal form."
    }
  }
}