doordash · JSON Structure

Doordash Store Request Structure

StoreRequest structure from DoorDash API

Type: object Properties: 4 Required: 3

StoreRequest is a JSON Structure definition published by doordash, describing 4 properties, of which 3 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

external_store_id name phone_number address

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-store-request-structure.json",
  "name": "StoreRequest",
  "description": "StoreRequest structure from DoorDash API",
  "type": "object",
  "properties": {
    "external_store_id": {
      "type": "string",
      "description": "A unique external identifier for the store.",
      "example": "D-12345"
    },
    "name": {
      "type": "string",
      "description": "The name of the store.",
      "example": "Acme Pickup Store"
    },
    "phone_number": {
      "type": "string",
      "description": "The phone number for the store.",
      "example": "+15555551234"
    },
    "address": {
      "type": "string",
      "description": "The full street address of the store.",
      "example": "901 Market St, San Francisco, CA 94105"
    }
  },
  "required": [
    "external_store_id",
    "name",
    "address"
  ]
}