RChilli Resume Parser returns candidate information in a structured JSON response. Each section of the response contains standard fields that can be mapped directly to fields in your ATS, career portal, HRMS, or candidate application form.
For example, personal details are returned under the ResumeParserData.Name object, which includes values such as:
- FullName: Candidate’s complete name as found in the resume. It will not contain the title name.
- TitleName: Candidate’s title, if available. It will be in the same case as in the resume
- FirstName: Candidate’s first name
- MiddleName: Candidate’s middle name, if available
- LastName: Candidate’s last name
- FormattedName: Candidate’s name in formatted/proper case. It will not contain the title name.
- ConfidenceScore: Parser confidence score for the extracted name
RChilli JSON Response:
|
"Name": { "FullName": "JOHN DOE PAUL", "TitleName": "Mr.", "FirstName": "JOHN", "MiddleName": "DOE", "LastName": "PAUL", "FormattedName": "John Doe Paul", "ConfidenceScore": 10 } |
Below are commonly used standard fields and their corresponding response mappings:
| ATS / Form Field | RChilli Response Field |
|---|---|
| Full Name | ResumeParserData.Name.FullName |
| Title Name | ResumeParserData.Name.TitleName |
| First Name | ResumeParserData.Name.FirstName |
| Middle Name | ResumeParserData.Name.MiddleName |
| Last Name | ResumeParserData.Name.LastName |
| Formatted Name | ResumeParserData.Name.FormattedName |
Important Notes
- RChilli Resume Parser automatically identifies the resume language and extracts the available information accordingly.
- The same standard response fields are used irrespective of the language present in the resume.
- If a value is not available in the resume, the corresponding field may be returned as blank.
- FullName and FormattedName do not include the candidate title/prefix (such as Mr., Ms., Dr., etc.).
- FormattedName is returned in proper case format for standardized display purposes.
- Clients should map their custom ATS or application form fields to the relevant standard RChilli response fields during integration.
- Field extraction accuracy depends on the structure, readability, and content availability in the uploaded resume.
KC Link: RChilli Knowledge Center - Resume Parser Schema Personal Information
For more information contact RChilli Support.
Comments
0 comments
Please sign in to leave a comment.