Skip to content

Commit b8f0bcc

Browse files
author
Zach Ebner
committed
Adding RawMinimum and RawMaximum fields to Job Salary
1 parent c27b1f9 commit b8f0bcc

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

src/main/java/com/sovren/models/job/ParsedJob.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public class ParsedJob extends ParsedDocument {
5959
/** The end date for the job, if listed.*/
6060
public SovrenPrimitive<LocalDate> EndDate;
6161

62-
/** The full job description*/
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.*/
6363
public String JobDescription;
6464

6565
/** Any requirement listed by the job*/

src/main/java/com/sovren/models/job/PayRange.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ public class PayRange {
1818
/** The normalized maximum yearly salary*/
1919
public SovrenPrimitive<Integer> Maximum;
2020

21+
/** The raw, un-normalized, minimum value. This is returned as is in the text, so there is no guarantee that it will evaluate to a valid number and not a string.*/
22+
public String RawMinimum;
23+
24+
/** The raw, un-normalized, maximum value. This is returned as is in the text, so there is no guarantee that it will evaluate to a valid number and not a string.*/
25+
public String RawMaximum;
26+
2127
/** Currency code (ISO 4217) applied to the {@link #Minimum} and {@link #Maximum}*/
2228
public String Currency;
2329
}

0 commit comments

Comments
 (0)