grubhub · JSON Structure

Grubhub Eligibilityresponse Structure

Merchant eligibility status for onboarding.

Type: object Properties: 3

EligibilityResponse 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

merchant_id eligible requirements

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-eligibilityresponse-structure.json",
  "name": "EligibilityResponse",
  "description": "Merchant eligibility status for onboarding.",
  "type": "object",
  "properties": {
    "merchant_id": {
      "type": "string",
      "description": "The merchant identifier."
    },
    "eligible": {
      "type": "boolean",
      "description": "Whether the merchant is eligible for onboarding."
    },
    "requirements": {
      "type": "array",
      "description": "List of requirements that must be met for onboarding.",
      "items": {
        "type": "object",
        "properties": {
          "requirement": {
            "type": "string",
            "description": "Description of the requirement."
          },
          "met": {
            "type": "boolean",
            "description": "Whether this requirement has been met."
          }
        }
      }
    }
  }
}