Table of Contents

Class Position

Namespace
Textkernel.Tx.Models.Resume.Employment
Assembly
Textkernel.Tx.SDK.dll

A position/job on a resume

public class Position
Inheritance
Position
Inherited Members

Properties

Bullets

Bullet points found in the Description (available when

OutputFormat.CreateBullets = true
is set in the Configuration string on the request)
public List<Bullet> Bullets { get; set; }

Property Value

List<Bullet>

Description

The job description

public string Description { get; set; }

Property Value

string

Employer

The employer/company for this position. Will be null if IsSelfEmployed is true

public Employer Employer { get; set; }

Property Value

Employer

EndDate

The end date listed for this position

public TxDate EndDate { get; set; }

Property Value

TxDate

Id

The id of this position (one-based, so POS-1 is the first, etc)

public string Id { get; set; }

Property Value

string

IsCurrent

true if the job/position is listed as current on the resume

public bool IsCurrent { get; set; }

Property Value

bool

IsSelfEmployed

true if the candidate was self-employed at this job/position

public bool IsSelfEmployed { get; set; }

Property Value

bool

JobLevel

The level determined by length of experience and job titles. One of:
Entry Level
Experienced(non-manager)
Senior(more than 5 years experience)
Manager
Senior Manager(more than 5 years management experience)
Executive(VP, Dept.Head)
Senior Executive(President, C-level)

public string JobLevel { get; set; }

Property Value

string

JobTitle

The job title for this position/job

public JobTitle JobTitle { get; set; }

Property Value

JobTitle

JobType

The type of job. One of:
directHire
contract
temp
volunteer
internship
UNSPECIFIED

public string JobType { get; set; }

Property Value

string

NormalizedProfession

Normalized profession of the JobTitle

public ParsingNormalizedProfession NormalizedProfession { get; set; }

Property Value

ParsingNormalizedProfession

NumberEmployeesSupervised

How many employees were supervised in this position/job

public TxPrimitive<int> NumberEmployeesSupervised { get; set; }

Property Value

TxPrimitive<int>

RelatedToByCompanyName

A list of Ids that have the same Employer as this Position

public List<string> RelatedToByCompanyName { get; set; }

Property Value

List<string>

RelatedToByDates

A list of Id that have overlapping dates with this Position

public List<string> RelatedToByDates { get; set; }

Property Value

List<string>

StartDate

The start date listed for this position

public TxDate StartDate { get; set; }

Property Value

TxDate

SubTaxonomyName

The name of the skills subtaxonomy that this position was categorized as based on skills found in the job description.

[Obsolete("You should use Professions Normalization instead.")]
public string SubTaxonomyName { get; set; }

Property Value

string

TaxonomyName

The name of the skills taxonomy that this position was categorized as based on skills found in the job description.

[Obsolete("You should use Professions Normalization instead.")]
public string TaxonomyName { get; set; }

Property Value

string

TaxonomyPercentage

The percentage of this job described by the TaxonomyName

[Obsolete("You should use Professions Normalization instead.")]
public int TaxonomyPercentage { get; set; }

Property Value

int