Table of Contents

Class SkillScore

Namespace
Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response
Assembly
Textkernel.Tx.SDK.dll

A skill related to the given profession.

public class SkillScore
Inheritance
SkillScore
Inherited Members

Properties

Description

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.

public string Description { get; set; }

Property Value

string

Id

The ID of the skill in the skills taxonomy.

public string Id { get; set; }

Property Value

string

Score

In a request:
The weight that will be applied to the skill. Must be in the range [0 - 1]. These values are relative, so

SkillA.Score = 0.2; SkillB.Score = 0.4;
is equivalent to
SkillA.Score = 0.5; SkillB.Score = 1.0;

In a response:
A value from [0 - 1] indicating how relative this skill is to the given skills/professions.
public float Score { get; set; }

Property Value

float