Properties
| Name | Type | Description |
|---|---|---|
| first_name | string | The customer's first name. |
| last_name | string | The customer's last name. |
| phone_number | string | The customer's phone number. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/doordash/refs/heads/main/json-schema/doordash-customer-schema.json",
"title": "Customer",
"description": "Customer schema 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"
}
}
}