{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/InterviewFeedbackData", "title": "InterviewFeedbackData", "type": "object", "properties": { "feedback": { "type": "string", "example": "Strong technical skills demonstrated." }, "evaluations": { "type": "array", "items": { "$ref": "#/components/schemas/Evaluation" } }, "interviewer": { "$ref": "#/components/schemas/PersonName" }, "atsCreatedAt": { "type": "integer", "format": "int64", "example": 1702693664000 } } }