grubhub · JSON Structure

Grubhub Customer Structure

Customer information associated with an order.

Type: object Properties: 3

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

Properties

first_name last_name phone

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/grubhub/refs/heads/main/json-structure/grubhub-customer-structure.json",
  "name": "Customer",
  "description": "Customer information associated with an order.",
  "type": "object",
  "properties": {
    "first_name": {
      "type": "string",
      "description": "The customer's first name."
    },
    "last_name": {
      "type": "string",
      "description": "The customer's last name."
    },
    "phone": {
      "type": "string",
      "description": "The customer's phone number."
    }
  }
}