| id | uuid | primary key | Unique identifier for each process entry |
| company_id | uuid | not null | ID of the company associated with the process entry |
| unique_identifier_id | uuid | not null | ID of the component instance on which the process was performed |
| process_id | uuid | not null | ID of the process that was executed |
| timestamp | timestamp with time zone | not null, default now() | Time when the process entry was created |
| station_id | uuid | nullable | ID of the station where the process was performed (if applicable) |
| is_pass | boolean | nullable | Indicates whether the process passed or failed (null if not yet determined) |
| operator_id | uuid | nullable | ID of the operator who performed the process (if applicable) |
| process_revision | bigint | nullable | Revision number of the process at the time of execution |
| upload_error | boolean | default true | Indicates if there was an error during the upload of this entry |
| cycle_time | number | nullable | Time taken to complete the process (if applicable) |
| override_user_id | uuid | nullable | ID of the user who overrode any automatic determinations (if applicable) |