Skip to main content

Performance Review

Description

Performance review is an assessment of an employee's performance, often providing feedback on strengths, areas for improvement, and goal setting.

Schema Information

{
"type": "object",
"title": "Performance Review",
"$schema": "http://json-schema.org/draft-07/schema#",
"required": [
"employeeName",
"reviewDate",
"reviewerName"
],
"properties": {
"remarks": {
"type": "string"
},
"strengths": {
"type": "string"
},
"employeeID": {
"type": "string"
},
"reviewDate": {
"type": "string",
"format": "date"
},
"employeeName": {
"type": "string"
},
"reviewPeriod": {
"type": "string"
},
"reviewerName": {
"type": "string"
},
"performanceRating": {
"type": "string"
},
"areasForImprovement": {
"type": "string"
},
"additionalInformation": {
"type": "object"
}
},
"additionalProperties": false
}