Rules
NoneExtracted data
Copy
document_type: 'resume' | 'not_resume';
person: {
name: {
source: string | null;
extracted: string | null;
status: 'match' | 'mismatch' | 'not_present';
},
contact: {
email: string | null;
phone: string | null;
location: string | null;
}
},
resume: {
experience: {
role_title: string | null;
employment_type: "ft" | "pt" | "contract" | "prn" | "travel" | "temp" | "other";
start_date: string | null; // YYYY-MM-DD
end_date: string | null; // YYYY-MM-DD
facility: string | null;
state: string | null; // 2 letter state code
specialty: NurseSpecialty | null; // SEE BELOW
license: LicenseType | null; // SEE BELOW
}[]
education: {
institution: string | null;
level: 'high_school' | 'associate' | 'undergraduate' | 'masters' | 'doctoral' | 'professional' | 'other';
degree: DegreeType | null; // SEE BELOW
start_date: string | null; // YYYY-MM-DD
graduation_date: string | null; // YYYY-MM-DD
status: "current" | "completed" | null;
}[],
skills: string[] // skills extracted from the resume
licenses: LicenseType[];
aggregated?: Record<LicenseType, number | null> | null;
}
License types
Copy
- "CNA" // Certified Nursing Assistant
- "LPN" // Licensed Practical Nurse
- "RN" // Registered Nurse
Degrees
Copy
- "AA" // Associate of Arts
- "AS" // Associate of Science
- "AAS" // Associate of Applied Science
- "BA" // Bachelor of Arts
- "BFA" // Bachelor of Fine Arts
- "BS" // Bachelor of Science
- "BSN" // Bachelor of Science in Nursing
- "MA" // Master of Arts
- "MFA" // Master of Fine Arts
- "MS" // Master of Science
- "MSN" // Master of Science in Nursing
- "MBA" // Master of Business Administration
- "MEd" // Master of Education
- "MPA" // Master of Public Administration
- "MPH" // Master of Public Health
- "PhD" // Doctor of Philosophy
- "EdD" // Doctor of Education
- "MD" // Doctor of Medicine
- "DO" // Doctor of Osteopathic Medicine
- "DDS" // Doctor of Dental Surgery
- "DVM" // Doctor of Veterinary Medicine
- "JD" // Juris Doctor (Law)
- "DNP" // Doctor of Nursing Practice
- "PharmD"; // Doctor of Pharmacy
Nurse Specialties
Copy
- "MS" // Medical-Surgical
- "ICU" // Intensive Care Unit
- "ED" // Emergency Department
- "PEDS" // Pediatrics
- "LD" // Labor & Delivery
- "NICU" // Neonatal Intensive Care Unit
- "OR" // Operating Room
- "PACU" // Post-Anesthesia Care Unit
- "ONC" // Oncology
- "CARD" // Cardiology
- "NEURO" // Neurology
- "ORTHO" // Orthopedics
- "GER" // Geriatrics
- "PSYCH" // Psychiatry/Mental Health
- "REHAB" // Rehabilitation
- "WC" // Wound Care
- "PH" // Public Health
- "SN" // School Nursing
- "HH" // Home Health
- "HP" // Hospice/Palliative Care
- "AC" // Ambulatory Care
- "OH" // Occupational Health
- "TH" // Telehealth
- "NP" // Nurse Practitioner
- "CNS" // Clinical Nurse Specialist
- "CRNA" // Certified Registered Nurse Anesthetist
- "CNM" // Certified Nurse Midwife
- "NE" // Nurse Education
- "NA" // Nurse Administration
- "NI" // Nurse Informatics
- "LNC" // Legal Nurse Consulting
- "RN"; // Research Nursing
Issues
| Issue | Description | Decision |
|---|---|---|
missing_education_and_work_experience | No education or work experience found | rejected |
