grubhub · JSON Structure

Grubhub Onboardingissue Structure

An issue report for the merchant onboarding process.

Type: object Properties: 3 Required: 2

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

Properties

merchant_id issue_type description

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-onboardingissue-structure.json",
  "name": "OnboardingIssue",
  "description": "An issue report for the merchant onboarding process.",
  "type": "object",
  "properties": {
    "merchant_id": {
      "type": "string",
      "description": "The merchant identifier experiencing the issue."
    },
    "issue_type": {
      "type": "string",
      "description": "The category of the onboarding issue."
    },
    "description": {
      "type": "string",
      "description": "Detailed description of the issue encountered."
    }
  },
  "required": [
    "merchant_id",
    "description"
  ]
}