Resume Parser Overview
The table below provides an overview of each field in the Resume Parser Response.
Field | Type | Description |
---|---|---|
basic | Basic Object | An object containing basic personal and contact information of the profile. |
Basic.first_name | String | The first name of the individual (e.g., "Michael"). |
Basic.last_name | String | The last name of the individual (e.g., "Anderson"). |
Basic.email | String | The email address of the individual (e.g., "[email protected]"). |
Basic.phone_number | String | The phone number of the individual (e.g., "(555) 123-4567"). |
Basic.location | String | The location of the individual (e.g., "Reading, PA 78765"). |
Basic.portfolio_website_url | String (URL) | The URL of the individual’s portfolio website (can be empty if not provided). |
Basic.linkedin_url | String (URL) | The LinkedIn URL of the individual (can be empty if not provided). |
Basic.github_url | String (URL) | The GitHub URL of the individual (can be empty if not provided). |
Basic.university | String | The name of the university attended (e.g., "UNIVERSITY ABC, Vancouver, Canada"). |
Basic.graduation_year | String | The year of graduation (can be empty if not provided). |
Basic.majors | String | The major(s) or field of study (e.g., "Bachelor of Science, Metals and Materials Engineering"). |
summary | String | A summary or bio describing the individual’s professional background and skills. |
work_experiences | Array [WorkExperience Object] | An array of WorkExperience objects representing the individual’s work history. |
WorkExperience.title | String | The job title of the work experience (e.g., "New Product Introduction Technical Program Manager"). |
WorkExperience.company | String | The name of the company for the work experience (e.g., "ABC CORPORATION"). |
WorkExperience.location | String | The location of the work experience (e.g., "Reading, PA"). |
WorkExperience.summary | String | A description of the role, responsibilities, and achievements in the work experience. |
WorkExperience.start | Date Object | Represents the start date of the work experience. |
WorkExperience.start.year | Integer | The year the work experience began (e.g., 2020). |
WorkExperience.start.month | Integer | The month the work experience began (e.g., 0 for unspecified or January). |
WorkExperience.end | Date Object | Represents the end date of the work experience. |
WorkExperience.end.year | Integer | The year the work experience ended (e.g., 2024). |
WorkExperience.end.month | Integer | The month the work experience ended (e.g., 12 for December). |
WorkExperience.duration | Duration Object | Represents the duration of the work experience in years and months. |
WorkExperience.duration.years | Integer | The total number of full years spent in the work experience (e.g., 4). |
WorkExperience.duration.months | Integer | The additional months beyond full years (e.g., 0). |
project_experiences | Array [ProjectExperience Object] | An array of ProjectExperience objects representing the individual’s projects or achievements. |
ProjectExperience.title | String | The title of the project or achievement (e.g., "Certified Project Management Professional"). |
ProjectExperience.description | String | A description of the project or achievement (can be empty if not provided). |
educations | Array [Education Object] | An array of Education objects representing the individual’s educational background. |
Education.school | String | The name of the school or university (e.g., "UNIVERSITY ABC"). |
Education.degree | String | The degree earned (e.g., "Master of Business Administration"). |
Education.field | String | The field of study or major (e.g., "Mechanical Engineering") (can be empty if not provided). |
Education.start | Date Object | Represents the start date of the education. |
Education.start.year | Integer | The year the education began (e.g., 0 for unspecified). |
Education.start.month | Integer | The month the education began (e.g., 0 for unspecified). |
Education.end | Date Object | Represents the end date of the education. |
Education.end.year | Integer | The year the education ended (e.g., 0 for unspecified). |
Education.end.month | Integer | The month the education ended (e.g., 0 for unspecified). |
certifications | Array [Certification Object] | An array of Certification objects representing the individual’s certifications. |
Certification.title | String | The title of the certification (defaults to empty if not provided). |
Certification.provider | String | The provider or issuer of the certification (defaults to empty if not provided). |
languages | Array [Language Object] | An array of Language objects representing the languages known by the individual. |
Language.name | String | The name of the language (e.g., "English"). |
skills | Array [Skill Object] | An array of Skill objects representing the individual’s skills. |
Skill.name | String | The name of the skill (e.g., "Project Management"). |
Updated 6 days ago