You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/job/JobDegree.java
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,4 +15,7 @@ public class JobDegree {
15
15
16
16
/** The type of the educational degree*/
17
17
publicStringType;
18
+
19
+
/** The normalized, local education level based on the job's country. Returns the Code ID based on the table found <a href="https://sovren.com/technical-specs/latest/rest-api/job-order-parser/api/?h=Value.JobData.Degrees[i].LocalEducationLevel">here</a>.*/
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/job/ParsedJob.java
+14-2Lines changed: 14 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ public class ParsedJob extends ParsedDocument {
53
53
/** The required educational degree, if listed. Used by Sovren for AI Matching*/
54
54
publicStringRequiredDegree;
55
55
56
-
/** The start date for the job, if listed.*/
56
+
/** The start date of the job.*/
57
57
publicSovrenPrimitive<LocalDate> StartDate;
58
58
59
59
/** The end date for the job, if listed.*/
@@ -62,8 +62,11 @@ public class ParsedJob extends ParsedDocument {
62
62
/** Section containing information about the job. Job description strictly includes duties, tasks, and responsibilities for the role with as little irrelevant text as possible.*/
63
63
publicStringJobDescription;
64
64
65
-
/** Any requirement listed by the job*/
65
+
/** Full text of any requirements listed by the job.*/
66
66
publicStringJobRequirements;
67
+
68
+
/** Full text of any benefits listed by the job.*/
69
+
publicStringBenefits;
67
70
68
71
/** The job titles found in the job. Used by Sovren for AI Matching*/
69
72
publicJobTitlesJobTitles;
@@ -107,6 +110,15 @@ public class ParsedJob extends ParsedDocument {
107
110
/** The maximum number of working hours per week*/
0 commit comments