Flipdish · Schema

GeoPointRequest

Terminal location request

RestaurantOnline OrderingMobile AppsPoint of SaleOrdersMenuPaymentsWebhooks

Properties

Name Type Description
Latitude number Kiosk device latitude
Longitude number Kiosk device longitude
View JSON Schema on GitHub

JSON Schema

devices-geo-point-request-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/devices-geo-point-request-schema.json",
  "title": "GeoPointRequest",
  "description": "Terminal location request",
  "type": "object",
  "properties": {
    "Latitude": {
      "format": "double",
      "description": "Kiosk device latitude",
      "type": "number",
      "example": 1.0
    },
    "Longitude": {
      "format": "double",
      "description": "Kiosk device longitude",
      "type": "number",
      "example": 1.0
    }
  }
}