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
@@ -1643,7 +1642,7 @@ public CompareSkillsToProfessionResponse compareSkillsToProfessions(int professi
1643
1642
* @param resume The resume containing the skills of the candidate
1644
1643
* @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.
1645
1644
* @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>
1646
-
* @param weightSkillsByExperience The language to use for the returned descriptions.
1645
+
* @param weightSkillsByExperience Whether or not to give a higher weight to skills that the candidate has more experience with.
1647
1646
* @return The API response body
1648
1647
* @throws SovrenException Thrown when an API error occurs
1649
1648
*/
@@ -1653,23 +1652,7 @@ public CompareSkillsToProfessionResponse compareSkillsToProfessions(
thrownewIllegalArgumentException("The resume must be parsed with V2 skills selected, and with skills normalization enabled.");
1774
+
}
1775
+
1772
1776
/**
1773
1777
* Suggest professions based on the <b>skills</b> within a given resume.
1774
1778
* @param resume The professions are suggested based on the <b>skills</b> within this resume.
1775
1779
* @param limit The maximum amount of professions returned. If not sure what value should be, provide 10 as default limit.
1776
1780
* @param returnMissingSkills Flag to enable returning a list of missing skills per suggested profession.
1781
+
* @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/#professions-languages">ISO code</a>
1782
+
* @param weightSkillsByExperience Whether or not to give a higher weight to skills that the candidate has more experience with.
1777
1783
* @return The API response body
1778
1784
* @throws SovrenException Thrown when an API error occurs
thrownewIllegalArgumentException("The resume must be parsed with V2 skills selected, and with skills normalization enabled.");
1790
1796
}
1791
1797
1798
+
/**
1799
+
* Suggest professions based on the <b>skills</b> within a given resume.
1800
+
* @param resume The professions are suggested based on the <b>skills</b> within this resume. Defaults limit returned to 10 and does not return missing skills. Use another overload to specify these parameters.
1801
+
* @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/#professions-languages">ISO code</a>
1802
+
* @return The API response body
1803
+
* @throws SovrenException Thrown when an API error occurs
* Suggest professions based on the <b>skills</b> within a given resume.
1794
1811
* @param resume The professions are suggested based on the <b>skills</b> within this resume. Defaults limit returned to 10 and does not return missing skills. Use another overload to specify these parameters.
1795
1812
* @return The API response body
1796
1813
* @throws SovrenException Thrown when an API error occurs
* Suggest professions based on the <b>skills</b> within a given job.
1804
1821
* @param job The professions are suggested based on the <b>skills</b> within this job.
1805
1822
* @param limit The maximum amount of professions returned. If not sure what value should be, provide 10 as default limit.
1806
1823
* @param returnMissingSkills Flag to enable returning a list of missing skills per suggested profession.
1824
+
* @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/#professions-languages">ISO code</a>
1807
1825
* @return The API response body
1808
1826
* @throws SovrenException Thrown when an API error occurs
thrownewIllegalArgumentException("The job must be parsed with V2 skills selected, and with skills normalization enabled");
1821
1839
}
1822
1840
1823
1841
/**
1824
1842
* Suggest professions based on the <b>skills</b> within a given job.
1825
1843
* @param job The professions are suggested based on the <b>skills</b> within this job. Defaults limit returned to 10 and does not return missing skills. Use another overload to specify these parameters.
1844
+
* @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/#professions-languages">ISO code</a>
1826
1845
* @return The API response body
1827
1846
* @throws SovrenException Thrown when an API error occurs
* Suggest professions based on a given set of skill IDs.
1835
-
* @param skillIds The skill IDs used to return the most relevant professions. The list can contain up to 50 skill IDs.
1853
+
* Suggest professions based on the <b>skills</b> within a given job.
1854
+
* @param job The professions are suggested based on the <b>skills</b> within this job. Defaults limit returned to 10 and does not return missing skills. Use another overload to specify these parameters.
1855
+
* @return The API response body
1856
+
* @throws SovrenException Thrown when an API error occurs
* Suggest professions based on a given set of skills.
1864
+
* @param skillIds The skills used to return the most relevant professions. The list can contain up to 50 skills.
1836
1865
* @param limit The maximum amount of professions returned. If not sure what value should be, provide 10 as default limit.
1837
1866
* @param returnMissingSkills Flag to enable returning a list of missing skills per suggested profession.
1867
+
* @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/#professions-languages">ISO code</a>
1838
1868
* @return The API response body
1839
1869
* @throws SovrenException Thrown when an API error occurs
@@ -1857,10 +1892,14 @@ public SuggestProfessionsResponse suggestProfessions(List<String> skillIds, int
1857
1892
/**
1858
1893
* Suggest professions based on a given set of skill IDs.
1859
1894
* @param skillIds The skill IDs used to return the most relevant professions. The list can contain up to 50 skill IDs. Defaults limit returned to 10 and does not return missing skills. Use another overload to specify these parameters.
1895
+
* @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/#professions-languages">ISO code</a>
1860
1896
* @return The API response body
1861
1897
* @throws SovrenException Thrown when an API error occurs
Copy file name to clipboardExpand all lines: src/main/java/com/sovren/models/api/dataenrichment/ontology/response/SkillScore.java
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -13,4 +13,9 @@ public class SkillScore {
13
13
publicStringId;
14
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