Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| descriptor | string | |
| reviewPeriod | object | |
| template | object | |
| overallRating | object | |
| status | string | The review status (e.g., In Progress, Manager Evaluation, Completed). |
| manager | object | |
| completedDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PerformanceReview",
"title": "PerformanceReview",
"type": "object",
"properties": {
"id": {
"type": "string",
"example": "abc123"
},
"descriptor": {
"type": "string",
"example": "example_value"
},
"reviewPeriod": {
"$ref": "#/components/schemas/ResourceReference"
},
"template": {
"$ref": "#/components/schemas/ResourceReference"
},
"overallRating": {
"$ref": "#/components/schemas/ResourceReference"
},
"status": {
"type": "string",
"description": "The review status (e.g., In Progress, Manager Evaluation, Completed).",
"example": "example_value"
},
"manager": {
"$ref": "#/components/schemas/ResourceReference"
},
"completedDate": {
"type": "string",
"format": "date",
"example": "2026-01-15"
}
}
}