doordash · JSON Structure

Doordash Location Structure

Location structure from DoorDash API

Type: object Properties: 2

Location is a JSON Structure definition published by doordash, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

lat lng

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/doordash/refs/heads/main/json-structure/doordash-location-structure.json",
  "name": "Location",
  "description": "Location structure from DoorDash API",
  "type": "object",
  "properties": {
    "lat": {
      "type": "double",
      "description": "Latitude coordinate.",
      "example": 37.422
    },
    "lng": {
      "type": "double",
      "description": "Longitude coordinate.",
      "example": -122.084
    }
  }
}