| id | uuid | primary key | Unique identifier for the record |
| identifier | text | not null | The actual unique identifier string |
| company_id | uuid | not null, foreign key | Reference to the company owning this identifier |
| component_id | uuid | not null, foreign key | Reference to the associated component |
| created_at | timestamp with time zone | not null, default now() | Timestamp of record creation |
| status | text | foreign key | Current status of the identifier |
| metadata | jsonb | | Flexible field for additional data |
| last_updated_at | timestamp with time zone | default now() | Timestamp of the last update |
| completed_at | timestamp with time zone | | Timestamp when the identifier was marked as completed |
| work_order_id | uuid | foreign key | Reference to the associated work order |
| part_number_id | uuid | foreign key | Reference to the associated part number |
| latitude | double precision | | Geographical latitude of the identifier |
| longitude | double precision | | Geographical longitude of the identifier |
| latest_process_entry_id | uuid | foreign key | Reference to the latest process entry for this identifier |