Otter · Schema

Marketintel_Coordinates

The geographical coordinates of a location.

RestaurantOrder ManagementDeliveryOnline OrderingMenu ManagementAnalytics

Properties

Name Type Description
coordinatesType string Coordinates type
location object The longitude and latitude of a location.
View JSON Schema on GitHub

JSON Schema

public-api-marketintel-coordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Marketintel_Coordinates",
  "description": "The geographical coordinates of a location.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-marketintel-coordinates-schema.json",
  "type": "object",
  "properties": {
    "coordinatesType": {
      "type": "string",
      "description": "Coordinates type",
      "enum": [
        "WGS84",
        "GCJ02"
      ],
      "example": "WGS84"
    },
    "location": {
      "type": "object",
      "description": "The longitude and latitude of a location.",
      "$ref": "https://raw.githubusercontent.com/api-evangelist/otter/refs/heads/main/json-schema/public-api-location-schema.json"
    }
  }
}