doordash · Schema

Location

Location schema from DoorDash API

Properties

Name Type Description
lat number Latitude coordinate.
lng number Longitude coordinate.
View JSON Schema on GitHub

JSON Schema

doordash-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-schema/doordash-location-schema.json",
  "title": "Location",
  "description": "Location schema from DoorDash API",
  "type": "object",
  "properties": {
    "lat": {
      "type": "number",
      "format": "double",
      "description": "Latitude coordinate.",
      "example": 37.422
    },
    "lng": {
      "type": "number",
      "format": "double",
      "description": "Longitude coordinate.",
      "example": -122.084
    }
  }
}