Skip to content

Commit

Permalink
Add graduate degree type collection
Browse files Browse the repository at this point in the history
  • Loading branch information
msutkowski committed Sep 24, 2020
1 parent 3204549 commit 3f69fe7
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions src/collections.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
CitizenshipStatus,
KnownCreditRatings,
ProvidedCreditRating,
GraduateDegreeType,
} from './types';
export const EMPLOYMENT_PAY_FREQUENCIES: EmploymentPayFrequency[] = [
'weekly',
Expand Down Expand Up @@ -67,3 +68,34 @@ export const CITIZENSHIP_STATUSES: CitizenshipStatus[] = [
'other',
'unknown',
];

export const GRADUATE_DEGREE_TYPES: GraduateDegreeType[] = [
'doctor_of_medicine',
'doctor_of_osteopathic_medicine',
'doctor_of_optometry',
'doctor_of_dental_medicine',
'dentariae_medicinae_doctoris',
'doctor_of_dental_surgery',
'doctor_of_veterinary_medicine',
'doctor_of_pharmacy',
'veterinariae_medicinae_doctoris',
'master_of_arts',
'master_of_science',
'master_of_research',
'master_of_research_project',
'master_of_studies',
'master_of_business_administration',
'master_of_library_science',
'master_of_public_administration',
'master_of_public_health',
'master_of_laws',
'master_of_arts_liberal_studies',
'master_of_fine_arts',
'master_of_music',
'master_of_education',
'master_of_engineering',
'master_of_architecture',
'juris_doctor',
'other',
'unknown',
];

0 comments on commit 3f69fe7

Please sign in to comment.