grubhub · JSON Structure

Grubhub Ingestionjobstatus Structure

Status of a menu ingestion or override job.

Type: object Properties: 3

IngestionJobStatus 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

job_id status errors

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