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
+14-11Lines changed: 14 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -1678,13 +1678,15 @@ public CompareSkillsToProfessionResponse compareSkillsToProfessions(
1678
1678
* Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions.
1679
1679
* @param professionCodeIds The code IDs of the professions to suggest skills for.
1680
1680
* @param limit The maximum amount of suggested skills returned. The maximum amount allowed is 10. If not sure what value should be, provide 10 as default limit.
1681
+
* @param outputLanguage The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#skills-languages">ISO code</a>
1681
1682
* @return The API response body
1682
1683
* @throws SovrenException Thrown when an API error occurs
@@ -1699,21 +1701,22 @@ public SuggestSkillsResponse suggestSkillsFromProfessions(List<Integer> professi
1699
1701
/**
1700
1702
* Suggests skills related to given professions. The service returns salient skills that are strongly associated with the professions.
1701
1703
* @param professionCodeIds The code IDs of the professions to suggest skills for.
1704
+
* @param outputLanguage The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#skills-languages">ISO code</a>
1702
1705
* @return The API response body
1703
1706
* @throws SovrenException Thrown when an API error occurs
* Suggests skills related to a resume based on the recent professions in the resume.
1711
1714
* @param resume The resume to suggest skills for (based on the professions in the resume).
1712
-
* @param limit The maximum amount of suggested skills returned. The maximum amount allowed is 10. If not sure what value should be, provide 10 as default limit.
1715
+
* @param outputLanguage The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#skills-languages">ISO code</a>
1713
1716
* @return The API response body
1714
1717
* @throws SovrenException Thrown when an API error occurs
* Suggests skills related to a job based on the profession title in the job.
1744
1747
* @param job The resume to suggest skills for (based on the professions in the resume).
1745
-
* @param limit The maximum amount of suggested skills returned. The maximum amount allowed is 10. If not sure what value should be, provide 10 as default limit.
1748
+
* @param outputLanguage The language to use for the returned descriptions. If not provided, no descriptions are returned. Must be one of the supported <a href="https://sovren.com/technical-specs/latest/rest-api/data-enrichment/overview/#skills-languages">ISO code</a>
1746
1749
* @return The API response body
1747
1750
* @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/SuggestSkillsFromProfessionsRequest.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,4 +13,6 @@ public class SuggestSkillsFromProfessionsRequest {
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. */
15
15
publicintLimit = 10;
16
+
/** The language to use for the returned descriptions. */
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/api/dataenrichment/ontology/response/SkillScore.java
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -11,4 +11,6 @@ public class SkillScore {
11
11
publicfloatScore;
12
12
/** The ID of the skill in the skills taxonomy. */
13
13
publicStringId;
14
+
/** The description of the skill in the Skills Taxonomy. Will only be returned if OutputLanguage is specified in the request. This has no effect in a request body. */
0 commit comments