com.textkernel.tx.models.api.parsing.ProfessionsSettings Maven / Gradle / Ivy
Show all versions of tx-java Show documentation
// Copyright © 2023 Textkernel BV. All rights reserved.
// This file is provided for use by, or on behalf of, Textkernel licensees
// within the terms of their license of Textkernel products or Textkernel customers
// within the Terms of Service pertaining to the Textkernel SaaS products.
package com.textkernel.tx.models.api.parsing;
import com.textkernel.tx.models.api.dataenrichment.professions.ProfessionNormalizationVersions;
import com.textkernel.tx.models.api.matching.request.SearchMatchSettings;
/**
* Enable normalization of job titles using our proprietary taxonomy and international standards.
*/
public class ProfessionsSettings {
/**
* When true, the most recent 3 job titles will be normalized. This includes a proprietary value from our profession taxonomy, plus ONET and ISCO mappings. Read more about the benefits of using a professions taxonomy.
*
* When enabling professions normalization, additional charges apply.
*
* The following languages are supported: English, Chinese (Simplified), Dutch, French, German, Italian, Polish, Portuguese, and Spanish. For documents in other languages, no normalized values will be returned.
*
* For AI Matching, normalized professions are automatically indexed and used if enabled. To also leverage profession
* normalization for user-created searches, enable {@link SearchMatchSettings#NormalizeJobTitles}.
*
* The profession taxonomy and the mappings are compatible with the taxonomies used in Textkernel's Data Enrichment APIs and Jobfeed,
* enabling standardization of taxonomies across all of your data and benchmarking against jobs posted online.
*/
public boolean Normalize;
/**
* Specifies the versions to use when normalizing professions if more than one is available for a taxonomy.
*/
public ProfessionNormalizationVersions Version;
}