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
@@ -1584,7 +1588,7 @@ public LookupProfessionCodesResponse lookupProfessions(List<Integer> codeIds) th
1584
1588
* Compare two professions based on the skills associated with each.
1585
1589
* @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
1590
* @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
-
* @param outputLanguage The language to use for the returned descriptions.
1591
+
* @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>
1588
1592
* @return The API response body
1589
1593
* @throws SovrenException Thrown when an API error occurs
1590
1594
*/
@@ -1607,20 +1611,22 @@ public CompareProfessionsResponse compareProfessions(int profession1, int profes
1607
1611
/**
1608
1612
* Compare a given set of skills to the skills related to a given profession.
1609
1613
* @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.
1610
-
* @param skillIds The skill IDs which should be compared against the given profession. The list can contain up to 50 skills.
1614
+
* @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>
1615
+
* @param skills The skills which should be compared against the given profession. The list can contain up to 50 skills.
1611
1616
* @return The API response body
1612
1617
* @throws SovrenException Thrown when an API error occurs
@@ -1636,17 +1642,34 @@ public CompareSkillsToProfessionResponse compareSkillsToProfessions(int professi
1636
1642
* Compare the skills of a candidate to the skills related to a job using the Ontology API.
1637
1643
* @param resume The resume containing the skills of the candidate
1638
1644
* @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
+
* @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.
1639
1647
* @return The API response body
1640
1648
* @throws SovrenException Thrown when an API error occurs
/** Request body for a 'CompareSkillsToProfession' request */
11
12
publicclassCompareSkillsToProfessionRequest {
12
-
/** The skill IDs which should be compared against the given profession. The list can contain up to 50 skills. */
13
-
publicList<String> SkillIds;
13
+
/** The skills which should be compared against the given profession. The list can contain up to 50 skills. */
14
+
publicList<SkillScore> Skills;
14
15
/** 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. */
15
16
publicintProfessionCodeId;
17
+
/** The language to use for the returned descriptions. */
0 commit comments