{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/grubhub/refs/heads/main/json-structure/grubhub-ingestionjobstatus-structure.json", "name": "IngestionJobStatus", "description": "Status of a menu ingestion or override job.", "type": "object", "properties": { "job_id": { "type": "string", "description": "The unique identifier for the job." }, "status": { "type": "string", "description": "The current status of the job.", "enum": [ "PENDING", "PROCESSING", "COMPLETED", "FAILED" ] }, "errors": { "type": "array", "description": "List of errors encountered during processing, if any.", "items": { "type": "object", "properties": { "code": { "type": "string", "description": "Error code." }, "message": { "type": "string", "description": "Human-readable error message." } } } } } }