doordash · JSON Structure

Doordash Address Suggestion Structure

AddressSuggestion structure from DoorDash API

Type: object Properties: 6

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

Properties

full_address street city state zip_code country

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-address-suggestion-structure.json",
  "name": "AddressSuggestion",
  "description": "AddressSuggestion structure from DoorDash API",
  "type": "object",
  "properties": {
    "full_address": {
      "type": "string",
      "description": "The complete suggested address string.",
      "example": "901 Market St, San Francisco, CA 94105"
    },
    "street": {
      "type": "string",
      "description": "The street portion of the address.",
      "example": "example"
    },
    "city": {
      "type": "string",
      "description": "The city name.",
      "example": "San Francisco"
    },
    "state": {
      "type": "string",
      "description": "The state or province.",
      "example": "CA"
    },
    "zip_code": {
      "type": "string",
      "description": "The postal or ZIP code.",
      "example": "94105"
    },
    "country": {
      "type": "string",
      "description": "The country code.",
      "example": "US"
    }
  }
}