Paytronix · Schema

Coordinates

Coordinates schema from Paytronix Online Ordering API

RestaurantLoyaltyGift CardsOnline OrderingGuest EngagementPaymentsMessaging

Properties

Name Type Description
lat number
lon number
View JSON Schema on GitHub

JSON Schema

online-ordering-api-coordinates-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Coordinates",
  "description": "Coordinates schema from Paytronix Online Ordering API",
  "$id": "https://raw.githubusercontent.com/api-evangelist/paytronix/refs/heads/main/json-schema/online-ordering-api-coordinates-schema.json",
  "type": "object",
  "properties": {
    "lat": {
      "type": "number",
      "format": "double",
      "example": 40.0
    },
    "lon": {
      "type": "number",
      "format": "double",
      "example": -81.0
    }
  }
}