{ "$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." } } } } } }