So in most of the data (CPD DB), we have a field called appointment_date (date).
In the salary data, we have a few somewhat confusing fields:
Age @ Hire (integer)
Start Date(9161) (date)
SPP (date)
Org Hire (date)
We need to answer two questions:
- which of
Org Hire and Start Date(9161) correspond to appointment_date in the rest of the data?
- which of
Org Hire and Start Date(9161) correspond to age @ hire?
In the response letter for the salary FOIA request from Chicago Dept HR, we get the following information:
- "Age at hire means the age the individual was when they started employment with the City"
- "A police officer is considered an employee of the City of Chicago the day they enter the Policy Academy"
- Start Date (9161) is the day an individual began as a police officer, by entering the academy"
- "SPP stands for start date in present position"
- "Org Hire stands for the first date an individual started employment in any dept within the City of Chicago"
So based on this, I would assume that Start Date(9161) should correspond to appointment_date in the rest of the data, since the rest of the data is from a CPD DB (so I would guess they won't have data on earlier hire dates with the City). Based on the explanations above, I would guess Age @ Hire is their age at the Org Hire date.
But in my own investigation, I found that Org Hire date matches more closely with appointment_date from profiles in the CPD database.
Currently the salary linking uses Org Hire as appointment_date, and compares Age @ Hire to Org Hire to get birthyear. But we may want to revisit that at some point.
So in most of the data (CPD DB), we have a field called
appointment_date(date).In the salary data, we have a few somewhat confusing fields:
Age @ Hire(integer)Start Date(9161)(date)SPP(date)Org Hire(date)We need to answer two questions:
Org HireandStart Date(9161)correspond toappointment_datein the rest of the data?Org HireandStart Date(9161)correspond toage @ hire?In the response letter for the salary FOIA request from Chicago Dept HR, we get the following information:
So based on this, I would assume that
Start Date(9161)should correspond toappointment_datein the rest of the data, since the rest of the data is from a CPD DB (so I would guess they won't have data on earlier hire dates with the City). Based on the explanations above, I would guessAge @ Hireis their age at theOrg Hiredate.But in my own investigation, I found that
Org Hiredate matches more closely withappointment_datefrom profiles in the CPD database.Currently the salary linking uses
Org Hireasappointment_date, and comparesAge @ HiretoOrg Hireto get birthyear. But we may want to revisit that at some point.