Weaviate · Schema

GeoCoordinates

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-geocoordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeoCoordinates",
  "title": "GeoCoordinates",
  "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."
    }
  }
}