-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_config.py
116 lines (105 loc) · 3.97 KB
/
data_config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Used in candidate.py
candidate_fields = [
"address",
"address2",
"city",
"state",
"country",
"postalCode",
"email",
"firstName",
"lastName",
"workStatus",
"homePhone",
]
# Used in candidate.py
application_fields = [
"disposition",
"gender",
"jobviteChannel",
"race",
"sourceType",
"source",
"veteranStatus",
"workflowState",
"workflowStateEId",
]
# Used in candidate.py
job_fields = [
"department",
"jobType",
"location",
"postingType",
"requisitionId",
"title",
]
# Used in jobs.py
requisition_fields = [
"category",
"eId",
"requisitionId",
"title",
]
# Used in candidate.py
custom_application_fields = {
"are_you_a_former_or_current_kipp_employee": "formerOrCurrentKIPP",
"are_you_an_alumnus_of_a_kipp_school": "KIPPAlumni",
"do_you_hold_a_valid_teacher_certification": "validTeacherCert",
"do_you_speak_a_language_other_than_english_or_spanish": "otherLanguageSpeaker",
"do_you_speak_spanish": "spanishSpeaker",
"for_your_next_position_what_would_be_your_desired_salary_range": "desiredSalary",
"have_you_applied_to_other_kipp_regions_besides_the_bay_area": "otherKIPPRegions",
"how_did_you_hear_about_kipp": "howDidYouHear",
"how_many_years_of_fulltime_classroom_teaching_experience_do_you_have_not_including_student_teaching_internships_tutoring_or_volunteer_work": "teachingExperience",
"how_many_years_of_fulltime_work_experience_do_you_have": "yrsExperience",
"if_you_have_completed_a_teacher_licensure_program_please_indicate_what_type_of_program": "teacherLicensureProgram",
"kipp_has_schools_located_in_different_parts_of_the_bay_area__please_select_your_geographic_preferences": "geoPreference",
"please_indicate_the_specific_grade_levels_you_would_like_to_teach": "gradePref",
"please_indicate_the_specific_subject_areas_you_would_like_to_teach": "subjectPref",
"please_specify_which_language": "otherLanguageSpoken",
"when_are_you_available_to_begin_work": "workStartAvailability",
"scouting_report_shared_with_the_following_schools": "scoutingReportShared",
"interviews_conducted_at_the_following_schools": "interviewsConductedAt",
"offers_extended_from_the_following_schools": "offersExtendedFrom",
"shared_with_kipp_bayview_academy_middle": "sharedBayview",
"shared_with_kipp_bayview_elementary": "sharedBayviewES",
"shared_with_kipp_bridge__middle": "sharedBridgeUpper",
"shared_with_kipp_excelencia": "sharedExcelencia",
"shared_with_kipp_heartwood": "sharedHeartwood",
"shared_with_kipp_heritage": "sharedHeritage",
"shared_with_kipp_king": "sharedKing",
"shared_with_sf_college_prep": "sharedSFCP",
"shared_with_ksjc": "sharedSJC",
"shared_with_summit": "sharedSummit",
"shared_with_valiant": "sharedValiant",
"shared_with_kipp_bridge__elementary": "sharedBridgeLower",
"shared_with_navigate": "sharedNavigate",
"shared_with_sf_bay": "sharedSFBay",
"shared_with_prize": "sharedPrize",
"application_owner": "application_owner",
"pay_type": "pay_type",
"fte": "fte",
"assigned_work_location": "assigned_work_location",
"credentialing_score": "credentialing_score",
"paycom_job_title": "paycom_job_title",
"equipment_needed": "equipment_needed",
"likelihood_of_hire": "likelihood_of_hire",
"assigned_pay_location": "assigned_pay_location",
"offer_1": "offer_1",
"offer_2": "offer_2",
"offer_3": "offer_3",
"Annual_Salary": "Annual_Salary",
"Semi_Monthly_Rate": "Semi_Monthly_Rate",
"Hourly_Rate": "Hourly_Rate",
"is_this_a_rehire_promotion_or_internal_transfer": "is_this_a_rehire_promotion_or_internal_transfer"
}
# Used in candidate.py
custom_job_fields = {
"exempt_status": "exempt_status",
}
# Used in candidate.py
fields_format_newlines = [
"scouting_report_shared_with_the_following_schools",
"interviews_conducted_at_the_following_schools",
"offers_extended_from_the_following_schools",
]