-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathinputs.json
More file actions
23 lines (23 loc) · 801 Bytes
/
inputs.json
File metadata and controls
23 lines (23 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"type": "object",
"properties": {
"jobDescription": {
"type": "string",
"description": "The interview question or job description context for evaluation",
"required": true,
"example": "Tell me about a time you handled a conflict in your team."
},
"resume": {
"type": "string",
"description": "The candidate's resume or background information",
"required": true,
"example": "5 years of experience in software engineering, worked at XYZ company..."
},
"userAnswer": {
"type": "string",
"description": "The candidate's interview answer to be evaluated",
"required": true,
"example": "In my previous role, I encountered a situation where two team members disagreed on the technical approach..."
}
}
}