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
@@ -1861,7 +1864,7 @@ public SuggestProfessionsResponse suggestProfessionsFromSkills(ParsedJob job) th
1861
1864
1862
1865
/**
1863
1866
* 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.
1867
+
* @param skills The skills used to return the most relevant professions. The list can contain up to 50 skills.
1865
1868
* @param limit The maximum amount of professions returned. If not sure what value should be, provide 10 as default limit.
1866
1869
* @param returnMissingSkills Flag to enable returning a list of missing skills per suggested profession.
1867
1870
* @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>
@@ -1902,4 +1905,141 @@ public SuggestProfessionsResponse suggestProfessionsFromSkills(List<String> skil
* Returns skills related to a given skill or set of skills. The service returns closely related skills in a sense that
1911
+
* knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably
1912
+
* easier to acquire knowledge about them.
1913
+
* @param skills The skills (and optionally, scores) for which the service should return related skills. The list can contain up to 50 skills.
1914
+
* @param limit The maximum amount of suggested skills returned. The maximum is 25.
1915
+
* @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>
1916
+
* @return The API response body
1917
+
* @throws SovrenException Thrown when an API error occurs
* Returns skills related to a given skill or set of skills. The service returns closely related skills in a sense that
1940
+
* knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably
1941
+
* easier to acquire knowledge about them.
1942
+
* @param skillIds The skill IDs for which the service should return related skills. The list can contain up to 50 skills.
1943
+
* @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>
1944
+
* @return The API response body
1945
+
* @throws SovrenException Thrown when an API error occurs
* Suggests skills related to a job (but not in the job) based on the skills in the job. The service returns closely related skills in a sense that
1953
+
* knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably
1954
+
* easier to acquire knowledge about them.
1955
+
* @param job The job to suggest skills for (based on the skills in the job).
1956
+
* @param limit The maximum amount of suggested skills returned. The maximum is 25.
1957
+
* @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>
1958
+
* @return The API response body
1959
+
* @throws SovrenException Thrown when an API error occurs
thrownewIllegalArgumentException("The job must be parsed with V2 skills selected, and with skills normalization enabled");
1975
+
}
1976
+
1977
+
/**
1978
+
* Suggests skills related to a job (but not in the job) based on the skills in the job. The service returns closely related skills in a sense that
1979
+
* knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably
1980
+
* easier to acquire knowledge about them.
1981
+
* @param job The job to suggest skills for (based on the skills in the job).
1982
+
* @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>
1983
+
* @return The API response body
1984
+
* @throws SovrenException Thrown when an API error occurs
* Suggests skills related to a resume (but not in the resume) based on the skills in the resume. The service returns closely related skills in a sense that
1992
+
* knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably
1993
+
* easier to acquire knowledge about them.
1994
+
* @param resume The resume to suggest skills for (based on the skills in the resume).
1995
+
* @param limit The maximum amount of suggested skills returned. The maximum is 25.
1996
+
* @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>
1997
+
* @param weightSkillsByExperience Whether or not to give a higher weight to skills that the candidate has more experience with.
1998
+
* @return The API response body
1999
+
* @throws SovrenException Thrown when an API error occurs
* Suggests skills related to a resume (but not in the resume) based on the skills in the resume. The service returns closely related skills in a sense that
2011
+
* knowing the provided skills either implies knowledge about the returned related skills, or should make it considerably
2012
+
* easier to acquire knowledge about them.
2013
+
* @param resume The resume to suggest skills for (based on the skills in the resume).
2014
+
* @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>
2015
+
* @return The API response body
2016
+
* @throws SovrenException Thrown when an API error occurs
0 commit comments