Group
Show / Hide Table of Contents

Class SkillScore

A skill related to the given profession.

Inheritance
System.Object
SkillScore
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Textkernel.Tx.Models.API.DataEnrichment.Ontology.Response
Assembly: Textkernel.Tx.SDK.dll
Syntax
public class SkillScore

Properties

| Improve this Doc View Source

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.

Declaration
public string Description { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Id

The ID of the skill in the skills taxonomy.

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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.

Declaration
public float Score { get; set; }
Property Value
Type Description
System.Single
  • Improve this Doc
  • View Source
☀
☾
In This Article
Back to top
Generated by DocFX
☀
☾