com.textkernel.tx.models.skills.NormalizedSkill Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tx-java Show documentation
Show all versions of tx-java Show documentation
The official Java SDK for the Textkernel Tx v10 API.
The newest version!
package com.textkernel.tx.models.skills;
import java.util.List;
/** Normalized skill concept representing one or more raw skills that were extracted. */
public class NormalizedSkill {
/** Name of the normalized skill.*/
public String Name;
/** Id of this skill in the skills taxonomy. */
public String Id;
/** Type of skill. Possible values are Professional, IT, or Soft. */
public String Type;
/** Array of raw skills that were extracted that normalized to this skill. */
public List RawSkills;
}