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
Description
The job description
public string Description { get; set; }
Property Value
Employer
The employer/company for this position. Will be null if IsSelfEmployed is true
public Employer Employer { get; set; }
Property Value
EndDate
The end date listed for this position
public TxDate EndDate { get; set; }
Property Value
Id
The id of this position (one-based, so POS-1 is the first, etc)
public string Id { get; set; }
Property Value
IsCurrent
true if the job/position is listed as current on the resume
public bool IsCurrent { get; set; }
Property Value
IsSelfEmployed
true if the candidate was self-employed at this job/position
public bool IsSelfEmployed { get; set; }
Property Value
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
JobTitle
The job title for this position/job
public JobTitle JobTitle { get; set; }
Property Value
JobType
The type of job. One of:
directHire
contract
temp
volunteer
internship
UNSPECIFIED
public string JobType { get; set; }
Property Value
NormalizedProfession
Normalized profession of the JobTitle
public ParsingNormalizedProfession NormalizedProfession { get; set; }
Property Value
NumberEmployeesSupervised
How many employees were supervised in this position/job
public TxPrimitive<int> NumberEmployeesSupervised { get; set; }
Property Value
RelatedToByCompanyName
public List<string> RelatedToByCompanyName { get; set; }
Property Value
RelatedToByDates
public List<string> RelatedToByDates { get; set; }
Property Value
StartDate
The start date listed for this position
public TxDate StartDate { get; set; }
Property Value
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
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
TaxonomyPercentage
The percentage of this job described by the TaxonomyName
[Obsolete("You should use Professions Normalization instead.")]
public int TaxonomyPercentage { get; set; }