The Job Summary Object
The job summary object is the slim representation returned by the List Jobs endpoint. It is useful for job history, dashboards, and reconciliation. Fetch a single Job Object when you need the full result or error payload.
Object Shape
Section titled “Object Shape”{ "jobId": "job_01HY3K4M7QR9VP2N8WYJF5GTB", "jobType": "screen_analysis", "status": "succeeded", "triggerType": "manual", "createdAt": "2026-04-15T12:00:00Z", "updatedAt": "2026-04-15T12:00:12Z"}Fields
Section titled “Fields”| Field | Type | Description |
|---|---|---|
jobId | string | Stable job id. Use with Get Job. |
jobType | string | Job type discriminator. v1 defines screen_analysis. |
status | string | One of running, succeeded, or failed. |
triggerType | string | manual for API/dashboard-submitted work or automatic for platform-created work. |
createdAt | string | ISO 8601 UTC timestamp of when the job was submitted. |
updatedAt | string | ISO 8601 UTC timestamp of the last status transition. |