grubhub · Schema

Contact

Contact information for a merchant.

Properties

Name Type Description
name string The contact person's name.
email string The contact email address.
phone string The contact phone number.
View JSON Schema on GitHub

JSON Schema

grubhub-contact-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Contact",
  "title": "Contact",
  "type": "object",
  "description": "Contact information for a merchant.",
  "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."
    }
  }
}