-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathprofessionalProfile.json
More file actions
181 lines (181 loc) · 6.39 KB
/
professionalProfile.json
File metadata and controls
181 lines (181 loc) · 6.39 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"$schema": "http://json-schema.org/draft-07/schema#",
"schemaId": "550e8400-e29b-41d4-a716-446655440009",
"title": "ProfessionalProfile",
"type": "object",
"properties": {
"displayName": {
"type": "string",
"description": "The user's display name"
},
"headline": {
"type": "string",
"description": "A short professional headline or tagline"
},
"bio": {
"type": "string",
"description": "Professional biography or summary"
},
"avatar": {
"type": "string",
"description": "ID for the user's profile picture"
},
"banner": {
"type": "string",
"description": "file ID for the user's profile banner"
},
"cvFileId": {
"type": "string",
"description": "file ID for the user's CV/resume document"
},
"videoIntroFileId": {
"type": "string",
"description": "file ID for the user's video introduction"
},
"email": {
"type": "string",
"format": "email",
"description": "Professional contact email"
},
"phone": {
"type": "string",
"description": "Professional contact phone number"
},
"website": {
"type": "string",
"format": "uri",
"description": "Personal or professional website URL"
},
"location": {
"type": "string",
"description": "Professional location or city"
},
"isPublic": {
"type": "boolean",
"description": "Whether the professional profile is publicly visible"
},
"workExperience": {
"type": "array",
"description": "List of work experience entries",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the entry"
},
"company": {
"type": "string",
"description": "Company or organization name"
},
"role": {
"type": "string",
"description": "Job title or role"
},
"description": {
"type": "string",
"description": "Description of responsibilities and achievements"
},
"startDate": {
"type": "string",
"format": "date",
"description": "Start date of the position"
},
"endDate": {
"type": "string",
"format": "date",
"description": "End date of the position (omit if current)"
},
"location": {
"type": "string",
"description": "Location of the position"
},
"sortOrder": {
"type": "integer",
"description": "Display order"
}
},
"required": ["company", "role", "startDate", "sortOrder"]
}
},
"education": {
"type": "array",
"description": "List of education entries",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the entry"
},
"institution": {
"type": "string",
"description": "Educational institution name"
},
"degree": {
"type": "string",
"description": "Degree or qualification obtained"
},
"fieldOfStudy": {
"type": "string",
"description": "Field or area of study"
},
"startDate": {
"type": "string",
"format": "date",
"description": "Start date"
},
"endDate": {
"type": "string",
"format": "date",
"description": "End date (omit if ongoing)"
},
"description": {
"type": "string",
"description": "Additional details about the education"
},
"sortOrder": {
"type": "integer",
"description": "Display order"
}
},
"required": ["institution", "degree", "startDate", "sortOrder"]
}
},
"skills": {
"type": "array",
"description": "List of professional skills",
"items": {
"type": "string"
}
},
"socialLinks": {
"type": "array",
"description": "List of social media or professional links",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Unique identifier for the link"
},
"platform": {
"type": "string",
"description": "Platform name (e.g. LinkedIn, GitHub, Twitter)"
},
"url": {
"type": "string",
"format": "uri",
"description": "URL to the profile on the platform"
},
"label": {
"type": "string",
"description": "Optional display label"
}
},
"required": ["platform", "url"]
}
}
},
"required": ["displayName"]
}