This event triggers when a job successfully transitions from one stage to another within its state machine. This may occur when:
Successful document classification leading to extraction.
Successful extraction leading to indexing.
JSON Payload
{
"event_id": "(UUID format) - Unique identifier for the event.",
"event_type": "Describes the type of event that occurred.",
"event_time": "(floating-point numeric timestamp) - Unix timestamp representing the time when the event occurred, rounded to whole seconds.",
"event": {
"event_name": "Name of the specific event.",
"event_type": "Type of the event, often matching or related to the outer event_type.",
"company_id": "(UUID format) - Unique identifier for the company involved in the event.",
"company_name": "Name of the company involved in the event.",
"job_id": "(UUID format) - Unique identifier for the job whose stage is being updated.",
"stage": "Current stage of the job process, such as 'processing', indicating the job's progress or current activity.",
"creation_date": "(ISO 8601 date format) - Date and time when the job was initially created.",
"update_date": "(ISO 8601 date format) - Date and time when the job's stage or event details were last updated."
}
}