grubhub · JSON Structure

Grubhub Contact Structure

Contact information for a merchant.

Type: object Properties: 3

Contact 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

name email 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-contact-structure.json",
  "name": "Contact",
  "description": "Contact information for a merchant.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The contact person's name."
    },
    "email": {
      "type": "string",
      "format": "email",
      "description": "The contact email address."
    },
    "phone": {
      "type": "string",
      "description": "The contact phone number."
    }
  }
}