Flipdish · Schema

Coordinates

Coordinates

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
Latitude number Latitude
Longitude number Longitude
View JSON Schema on GitHub

JSON Schema

orders-coordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/orders-coordinates-schema.json",
  "title": "Coordinates",
  "description": "Coordinates",
  "type": "object",
  "properties": {
    "Latitude": {
      "format": "double",
      "description": "Latitude",
      "type": "number",
      "example": 1.0
    },
    "Longitude": {
      "format": "double",
      "description": "Longitude",
      "type": "number",
      "example": 1.0
    }
  }
}