grubhub · JSON Structure

Grubhub Address Structure

A physical address.

Type: object Properties: 6

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

Properties

street_address city state zip 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/grubhub/refs/heads/main/json-structure/grubhub-address-structure.json",
  "name": "Address",
  "description": "A physical address.",
  "type": "object",
  "properties": {
    "street_address": {
      "type": "string",
      "description": "The street address line."
    },
    "city": {
      "type": "string",
      "description": "The city name."
    },
    "state": {
      "type": "string",
      "description": "The state abbreviation."
    },
    "zip": {
      "type": "string",
      "description": "The ZIP code."
    },
    "latitude": {
      "type": "double",
      "description": "The latitude coordinate."
    },
    "longitude": {
      "type": "double",
      "description": "The longitude coordinate."
    }
  }
}