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/SovrenClient.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -1550,7 +1550,7 @@ public NormalizeProfessionsResponse normalizeProfessions(List<String> jobTitles)
1550
1550
1551
1551
/**
1552
1552
* Get details for the given professions in the taxonomy.
1553
-
* @param codeIds The profession code IDs to get details about from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a>.
1553
+
* @param codeIds The profession code IDs to get details about from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a>.
1554
1554
* @param outputLanguage The language to use for professions descriptions (default is en). Must be an allowed <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-languages">ISO code</a>. <br>Default is 'en'.
1555
1555
* @return The API response body
1556
1556
* @throws SovrenException Thrown when an API error occurs
@@ -1572,7 +1572,7 @@ public LookupProfessionCodesResponse lookupProfessions(List<Integer> codeIds, St
1572
1572
1573
1573
/**
1574
1574
* Get details for the given professions in the taxonomy.
1575
-
* @param codeIds The profession code IDs to get details about from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a>.
1575
+
* @param codeIds The profession code IDs to get details about from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a>.
1576
1576
* @return The API response body
1577
1577
* @throws SovrenException Thrown when an API error occurs
1578
1578
*/
@@ -1582,8 +1582,8 @@ public LookupProfessionCodesResponse lookupProfessions(List<Integer> codeIds) th
1582
1582
1583
1583
/**
1584
1584
* Compare two professions based on the skills associated with each.
1585
-
* @param profession1 A profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a> to compare.
1586
-
* @param profession2 A profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a> to compare.
1585
+
* @param profession1 A profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare.
1586
+
* @param profession2 A profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare.
1587
1587
* @return The API response body
1588
1588
* @throws SovrenException Thrown when an API error occurs
1589
1589
*/
@@ -1605,7 +1605,7 @@ public CompareProfessionsResponse compareProfessions(int profession1, int profes
1605
1605
1606
1606
/**
1607
1607
* Compare a given set of skills to the skills related to a given profession.
1608
-
* @param professionCodeId The profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a> to compare the skill set to.
1608
+
* @param professionCodeId The profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare the skill set to.
1609
1609
* @param skillIds The skill IDs which should be compared against the given profession. The list can contain up to 50 skills.
1610
1610
* @return The API response body
1611
1611
* @throws SovrenException Thrown when an API error occurs
@@ -1634,7 +1634,7 @@ public CompareSkillsToProfessionResponse compareSkillsToProfessions(int professi
1634
1634
/**
1635
1635
* Compare the skills of a candidate to the skills related to a job using the Ontology API.
1636
1636
* @param resume The resume containing the skills of the candidate
1637
-
* @param professionCodeId The profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a> to compare the skill set to.
1637
+
* @param professionCodeId The profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare the skill set to.
1638
1638
* @return The API response body
1639
1639
* @throws SovrenException Thrown when an API error occurs
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/api/dataenrichment/ontology/request/CompareProfessionsRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,6 @@
9
9
10
10
/** Request body for a 'CompareProfessions' request */
11
11
publicclassCompareProfessionsRequest {
12
-
/** The two profession code IDs from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a> to compare. This list must have 2 values. */
12
+
/** The two profession code IDs from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare. This list must have 2 values. */
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/api/dataenrichment/ontology/request/CompareSkillsToProfessionRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,6 @@
11
11
publicclassCompareSkillsToProfessionRequest {
12
12
/** The skill IDs which should be compared against the given profession. The list can contain up to 50 skills. */
13
13
publicList<String> SkillIds;
14
-
/** The profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a> to compare the skill set to. */
14
+
/** The profession code ID from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> to compare the skill set to. */
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/api/dataenrichment/ontology/request/SuggestSkillsRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
10
10
/** Request body for a 'SuggestSkills' request */
11
11
publicclassSuggestSkillsRequest {
12
-
/** The profession code IDs from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a> for which the service should return related skills. The list can contain up to 10 profession codes. */
12
+
/** The profession code IDs from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a> for which the service should return related skills. The list can contain up to 10 profession codes. */
13
13
publicList<Integer> ProfessionCodeIds;
14
14
/** The maximum amount of suggested skills returned. If not specified this parameter defaults to 10. This limit cannot exceed 10. */
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/api/dataenrichment/ontology/response/ProfessionExclusiveSkills.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
5
5
/** An exclusive skill per profession. */
6
6
publicclassProfessionExclusiveSkills {
7
-
/** The code ID of the profession in the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a>. */
7
+
/** The code ID of the profession in the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a>. */
8
8
publicintProfessionCodeId;
9
9
/** A list of skills that are relative to this profession, but not the other. */
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/api/dataenrichment/ontology/response/SuggestedProfession.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -14,6 +14,6 @@ public class SuggestedProfession {
14
14
publicList<SkillScore> MissingSkills;
15
15
/** A value from [0 - 1] indicating how relative the given skills are to this profession. */
16
16
publicfloatScore;
17
-
/** The code ID of the profession in the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a>. */
17
+
/** The code ID of the profession in the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a>. */
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/api/dataenrichment/professions/request/LookupProfessionCodesRequest.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
10
10
/** Request body for a 'LookupProfessions' request */
11
11
publicclassLookupProfessionCodesRequest {
12
-
/** The profession code IDs to get details about from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a>. */
12
+
/** The profession code IDs to get details about from the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a>. */
13
13
publicList<Integer> CodeIds;
14
14
/** The language to use for professions descriptions (default is en). Must be an allowed <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-languages">ISO code</a>. */
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/dataenrichment/BasicProfession.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
packagecom.sovren.models.dataenrichment;
2
2
3
3
/**
4
-
* A profession ID/description from the Sovren Professions Taxonomy.
4
+
* A profession ID/description from the Professions Taxonomy.
5
5
*/
6
6
publicclassBasicProfession {
7
7
/**
8
-
* The unique code ID of the profession in the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Sovren Professions Taxonomy</a>.
8
+
* The unique code ID of the profession in the <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#professions-taxonomies">Professions Taxonomy</a>.
0 commit comments