doordash · Schema

StoreRequest

StoreRequest schema from DoorDash API

Properties

Name Type Description
external_store_id string A unique external identifier for the store.
name string The name of the store.
phone_number string The phone number for the store.
address string The full street address of the store.
View JSON Schema on GitHub

JSON Schema

doordash-store-request-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-store-request-schema.json",
  "title": "StoreRequest",
  "description": "StoreRequest schema 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"
  ]
}