doordash · JSON Structure

Doordash Customer Structure

Customer structure from DoorDash API

Type: object Properties: 3

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

Properties

first_name last_name phone_number

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-customer-structure.json",
  "name": "Customer",
  "description": "Customer structure from DoorDash API",
  "type": "object",
  "properties": {
    "first_name": {
      "type": "string",
      "description": "The customer's first name.",
      "example": "Acme Pickup Store"
    },
    "last_name": {
      "type": "string",
      "description": "The customer's last name.",
      "example": "Acme Pickup Store"
    },
    "phone_number": {
      "type": "string",
      "description": "The customer's phone number.",
      "example": "+15555551234"
    }
  }
}