LinkedIn · Schema

InterviewFeedbackData

BusinessCareersMarketingProfessional NetworkingRecruitingSocial MediaFortune 1000

Properties

Name Type Description
feedback string
evaluations array
interviewer object
atsCreatedAt integer
View JSON Schema on GitHub

JSON Schema

linkedin-interviewfeedbackdata-schema.json Raw ↑
{
  "$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
    }
  }
}