-
Notifications
You must be signed in to change notification settings - Fork 0
/
cv.ts
97 lines (86 loc) · 1.88 KB
/
cv.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
export interface cv {
basics: Basics;
work: ExtraWork[];
extraWork: ExtraWork[];
volunteer: ExtraWork[];
education: Education[];
awards: Award[];
publications: Publication[];
skills: Skill[];
languages: Language[];
interests: Interest[];
references: Reference[];
}
export interface Award {
title: string;
date: string;
awarder: string;
summary: string;
}
export interface Basics {
name: string;
label: string;
picture: string;
email: string;
website: string;
summary: string;
location: Location;
profiles: Profile[];
}
export interface Location {
address: string;
postalCode: string;
city: string;
countryCode: string;
region: string;
}
export interface Profile {
network: string;
username: string;
url: string;
}
export interface Education {
institution: string;
area: string;
location: string;
studyType: string;
startDate: string;
endDate: string;
gpa: string;
courses: string[];
}
export interface ExtraWork {
company: string;
position: string;
website: string;
location: string;
startDate: string;
endDate: string;
summary: string;
organization?: string;
highlights?: string[];
}
export interface Interest {
name: string;
keywords: string[];
}
export interface Language {
language: string;
fluency: string;
}
export interface Publication {
name: string;
publisher: string;
releaseDate: string;
website: string;
summary: string;
}
export interface Reference {
name: string;
reference: string;
}
export interface Skill {
name: string;
level: string;
keywords: string[];
}