Channel Geo Point Structure

The coordinates (latitude and longitude) for a given address.

Type: object Properties: 2 Required: 2
Fortune 500FranchisingHospitalityNYSE QSRQuick Service RestaurantsRestaurants

GeoPoint is a JSON Structure definition published by Restaurant Brands International, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

latitude longitude

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/restaurant-brands/refs/heads/main/json-structure/channel-geo-point-structure.json",
  "name": "GeoPoint",
  "description": "The coordinates (latitude and longitude) for a given address.",
  "type": "object",
  "properties": {
    "latitude": {
      "description": "Latitude",
      "type": "double",
      "example": 25.782379
    },
    "longitude": {
      "description": "Latitude",
      "type": "double",
      "example": -80.289207
    }
  },
  "required": [
    "latitude",
    "longitude"
  ]
}