112 lines
3.7 KiB
C#
112 lines
3.7 KiB
C#
namespace JobTrackerApi.Models;
|
|
|
|
public sealed class StructuredCvProfile
|
|
{
|
|
public string Version { get; set; } = "1";
|
|
public StructuredCvMetadata Metadata { get; set; } = new();
|
|
public StructuredCvContact Contact { get; set; } = new();
|
|
public List<string> Summary { get; set; } = new();
|
|
public List<StructuredCvJob> Jobs { get; set; } = new();
|
|
public List<StructuredCvEducation> Education { get; set; } = new();
|
|
public List<StructuredCvCertification> Certifications { get; set; } = new();
|
|
public List<StructuredCvProject> Projects { get; set; } = new();
|
|
public List<string> Skills { get; set; } = new();
|
|
public List<StructuredCvLanguage> Languages { get; set; } = new();
|
|
public List<string> Interests { get; set; } = new();
|
|
public List<StructuredCvOtherSection> OtherSections { get; set; } = new();
|
|
public List<StructuredCvSection> Sections { get; set; } = new();
|
|
}
|
|
|
|
public sealed class StructuredCvMetadata
|
|
{
|
|
public int? ProfileVersion { get; set; }
|
|
public int? AppliedExtractionRunId { get; set; }
|
|
public DateTimeOffset? UpdatedAtUtc { get; set; }
|
|
public Dictionary<string, StructuredCvFieldMetadata> Fields { get; set; } = new();
|
|
}
|
|
|
|
public sealed class StructuredCvFieldMetadata
|
|
{
|
|
public double? Confidence { get; set; }
|
|
public string? Method { get; set; }
|
|
public string? SourceSnippet { get; set; }
|
|
public int? SourcePage { get; set; }
|
|
public string? SourceBlockId { get; set; }
|
|
public string? ReviewState { get; set; }
|
|
public DateTimeOffset? LastUpdatedAtUtc { get; set; }
|
|
}
|
|
|
|
public sealed class StructuredCvContact
|
|
{
|
|
public string? FullName { get; set; }
|
|
public string? Headline { get; set; }
|
|
public string? Email { get; set; }
|
|
public string? Phone { get; set; }
|
|
public string? Location { get; set; }
|
|
public string? Website { get; set; }
|
|
public string? LinkedIn { get; set; }
|
|
}
|
|
|
|
public sealed class StructuredCvJob
|
|
{
|
|
public string? Title { get; set; }
|
|
public string? Company { get; set; }
|
|
public string? Location { get; set; }
|
|
public string? Start { get; set; }
|
|
public string? End { get; set; }
|
|
public bool IsCurrent { get; set; }
|
|
public List<string> Bullets { get; set; } = new();
|
|
public List<string> Skills { get; set; } = new();
|
|
}
|
|
|
|
public sealed class StructuredCvEducation
|
|
{
|
|
public string? Qualification { get; set; }
|
|
public string? QualificationLevel { get; set; }
|
|
public string? Institution { get; set; }
|
|
public string? Location { get; set; }
|
|
public string? Start { get; set; }
|
|
public string? End { get; set; }
|
|
public List<string> Details { get; set; } = new();
|
|
}
|
|
|
|
public sealed class StructuredCvCertification
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Issuer { get; set; }
|
|
public string? Location { get; set; }
|
|
public string? Date { get; set; }
|
|
public List<string> Details { get; set; } = new();
|
|
}
|
|
|
|
public sealed class StructuredCvProject
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Role { get; set; }
|
|
public string? Location { get; set; }
|
|
public string? Start { get; set; }
|
|
public string? End { get; set; }
|
|
public List<string> Bullets { get; set; } = new();
|
|
public List<string> Skills { get; set; } = new();
|
|
}
|
|
|
|
public sealed class StructuredCvLanguage
|
|
{
|
|
public string? Name { get; set; }
|
|
public string? Level { get; set; }
|
|
public string? Notes { get; set; }
|
|
}
|
|
|
|
public sealed class StructuredCvOtherSection
|
|
{
|
|
public string? Title { get; set; }
|
|
public List<string> Items { get; set; } = new();
|
|
}
|
|
|
|
public sealed class StructuredCvSection
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public string Content { get; set; } = string.Empty;
|
|
public int WordCount { get; set; }
|
|
}
|