File size: 8,820 Bytes
e0a3391
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Redrob Candidate Profile Schema",
  "description": "Schema for a single candidate profile in the Intelligent Candidate Discovery & Ranking Challenge dataset.",
  "type": "object",
  "required": [
    "candidate_id",
    "profile",
    "career_history",
    "education",
    "skills",
    "redrob_signals"
  ],
  "properties": {
    "candidate_id": {
      "type": "string",
      "pattern": "^CAND_[0-9]{7}$",
      "description": "Unique identifier for the candidate. Format: CAND_XXXXXXX (7 digits)."
    },
    "profile": {
      "type": "object",
      "required": [
        "anonymized_name",
        "headline",
        "summary",
        "location",
        "country",
        "years_of_experience",
        "current_title",
        "current_company",
        "current_company_size",
        "current_industry"
      ],
      "properties": {
        "anonymized_name": { "type": "string", "description": "Anonymized full name." },
        "headline": { "type": "string", "description": "One-line professional headline." },
        "summary": { "type": "string", "description": "Multi-sentence professional summary." },
        "location": { "type": "string", "description": "City, region/state." },
        "country": { "type": "string" },
        "years_of_experience": { "type": "number", "minimum": 0, "maximum": 50 },
        "current_title": { "type": "string" },
        "current_company": { "type": "string" },
        "current_company_size": {
          "type": "string",
          "enum": ["1-10", "11-50", "51-200", "201-500", "501-1000", "1001-5000", "5001-10000", "10001+"]
        },
        "current_industry": { "type": "string" }
      }
    },
    "career_history": {
      "type": "array",
      "minItems": 1,
      "maxItems": 10,
      "items": {
        "type": "object",
        "required": ["company", "title", "start_date", "end_date", "duration_months", "is_current", "industry", "company_size", "description"],
        "properties": {
          "company": { "type": "string" },
          "title": { "type": "string" },
          "start_date": { "type": "string", "format": "date" },
          "end_date": { "type": ["string", "null"], "format": "date" },
          "duration_months": { "type": "integer", "minimum": 0 },
          "is_current": { "type": "boolean" },
          "industry": { "type": "string" },
          "company_size": {
            "type": "string",
            "enum": ["1-10", "11-50", "51-200", "201-500", "501-1000", "1001-5000", "5001-10000", "10001+"]
          },
          "description": { "type": "string", "description": "Role responsibilities and achievements." }
        }
      }
    },
    "education": {
      "type": "array",
      "minItems": 0,
      "maxItems": 5,
      "items": {
        "type": "object",
        "required": ["institution", "degree", "field_of_study", "start_year", "end_year"],
        "properties": {
          "institution": { "type": "string" },
          "degree": { "type": "string" },
          "field_of_study": { "type": "string" },
          "start_year": { "type": "integer", "minimum": 1970, "maximum": 2030 },
          "end_year": { "type": "integer", "minimum": 1970, "maximum": 2035 },
          "grade": { "type": ["string", "null"], "description": "GPA / percentage / class." },
          "tier": {
            "type": "string",
            "enum": ["tier_1", "tier_2", "tier_3", "tier_4", "unknown"],
            "description": "Internal tiering for institution prestige."
          }
        }
      }
    },
    "skills": {
      "type": "array",
      "minItems": 0,
      "items": {
        "type": "object",
        "required": ["name", "proficiency", "endorsements"],
        "properties": {
          "name": { "type": "string" },
          "proficiency": {
            "type": "string",
            "enum": ["beginner", "intermediate", "advanced", "expert"]
          },
          "endorsements": { "type": "integer", "minimum": 0 },
          "duration_months": { "type": "integer", "minimum": 0, "description": "Months the candidate has used this skill" }
        }
      }
    },
    "certifications": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["name", "issuer", "year"],
        "properties": {
          "name": { "type": "string" },
          "issuer": { "type": "string" },
          "year": { "type": "integer" }
        }
      }
    },
    "languages": {
      "type": "array",
      "items": {
        "type": "object",
        "required": ["language", "proficiency"],
        "properties": {
          "language": { "type": "string" },
          "proficiency": {
            "type": "string",
            "enum": ["basic", "conversational", "professional", "native"]
          }
        }
      }
    },
    "redrob_signals": {
      "type": "object",
      "description": "Simulated platform activity and engagement signals from the Redrob ecosystem.",
      "required": [
        "profile_completeness_score",
        "signup_date",
        "last_active_date",
        "open_to_work_flag",
        "profile_views_received_30d",
        "applications_submitted_30d",
        "recruiter_response_rate",
        "avg_response_time_hours",
        "skill_assessment_scores",
        "connection_count",
        "endorsements_received",
        "notice_period_days",
        "expected_salary_range_inr_lpa",
        "preferred_work_mode",
        "willing_to_relocate",
        "github_activity_score",
        "search_appearance_30d",
        "saved_by_recruiters_30d",
        "interview_completion_rate",
        "offer_acceptance_rate",
        "verified_email",
        "verified_phone",
        "linkedin_connected"
      ],
      "properties": {
        "profile_completeness_score": {
          "type": "number",
          "minimum": 0,
          "maximum": 100,
          "description": "Percentage of profile completeness."
        },
        "signup_date": { "type": "string", "format": "date" },
        "last_active_date": { "type": "string", "format": "date" },
        "open_to_work_flag": { "type": "boolean" },
        "profile_views_received_30d": { "type": "integer", "minimum": 0 },
        "applications_submitted_30d": { "type": "integer", "minimum": 0 },
        "recruiter_response_rate": {
          "type": "number",
          "minimum": 0,
          "maximum": 1,
          "description": "Fraction of recruiter messages the candidate has responded to."
        },
        "avg_response_time_hours": { "type": "number", "minimum": 0 },
        "skill_assessment_scores": {
          "type": "object",
          "description": "Dict of skill_name -> score 0-100. Assessments completed on Redrob platform.",
          "additionalProperties": { "type": "number", "minimum": 0, "maximum": 100 }
        },
        "connection_count": { "type": "integer", "minimum": 0 },
        "endorsements_received": { "type": "integer", "minimum": 0 },
        "notice_period_days": { "type": "integer", "minimum": 0, "maximum": 180 },
        "expected_salary_range_inr_lpa": {
          "type": "object",
          "required": ["min", "max"],
          "properties": {
            "min": { "type": "number", "minimum": 0 },
            "max": { "type": "number", "minimum": 0 }
          },
          "description": "Expected salary in INR Lakhs Per Annum."
        },
        "preferred_work_mode": {
          "type": "string",
          "enum": ["remote", "hybrid", "onsite", "flexible"]
        },
        "willing_to_relocate": { "type": "boolean" },
        "github_activity_score": {
          "type": "number",
          "minimum": -1,
          "maximum": 100,
          "description": "0-100 score based on commits, PRs, stars in last 12 months. -1 if no GitHub linked."
        },
        "search_appearance_30d": {
          "type": "integer",
          "minimum": 0,
          "description": "Number of times profile appeared in recruiter searches in last 30 days."
        },
        "saved_by_recruiters_30d": {
          "type": "integer",
          "minimum": 0,
          "description": "Number of recruiters who saved this profile in last 30 days."
        },
        "interview_completion_rate": {
          "type": "number",
          "minimum": 0,
          "maximum": 1,
          "description": "Fraction of scheduled interviews actually attended."
        },
        "offer_acceptance_rate": {
          "type": "number",
          "minimum": -1,
          "maximum": 1,
          "description": "Historical offer acceptance rate. -1 if no offer history."
        },
        "verified_email": { "type": "boolean" },
        "verified_phone": { "type": "boolean" },
        "linkedin_connected": { "type": "boolean" }
      }
    }
  }
}