Skip to main content
This page describes the schema for Job Status.

JobStatus

lastRun
JobRun
Information about the most recent job execution attempt. See JobRun.
lastSuccessfulRun
JobRun
Information about the most recent successful job execution. See JobRun.

JobRun

jobRunId
String!
required
Unique identifier for this specific job execution.
jobId
String!
required
Identifier for the job definition that was executed.
jobType
String!
required
The type of job that was executed (e.g., CRAWL_METADATA for connection refresh operations).
userId
String!
required
Identifier of the user who initiated the job execution.
status
JobRunStatus!
required
The current status of the job execution. See JobRunStatus.
startedAt
String
ISO 8601 timestamp when the job execution started.
endedAt
String
ISO 8601 timestamp when the job execution completed (successfully or with failure).
summary
String
Human-readable summary of the job execution result.
conciseErrorMessage
String
Brief error message if the job failed, null if successful.
createdAt
String!
required
ISO 8601 timestamp when the job execution record was created.

JobRunStatus

The status of a job execution. This parameter can have one of the following values:
StatusDescription
JOB_RUN_STATUS_UNKNOWNStatus is unknown or not set
JOB_RUN_STATUS_QUEUEDJob is queued and waiting to be executed
JOB_RUN_STATUS_RUNNINGJob is currently executing
JOB_RUN_STATUS_SUCCESSJob completed successfully
JOB_RUN_STATUS_FAILEDJob failed with errors
JOB_RUN_STATUS_SKIPPEDJob was skipped

Additional Resources

I