iSpring Learn · Schema

AppraisalSessionEmployeeDetailedCard

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
employeeId string
reviewers array
View JSON Schema on GitHub

JSON Schema

AppraisalSessionEmployeeDetailedCard.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AppraisalSessionEmployeeDetailedCard",
  "required": [
    "employeeId",
    "reviewers"
  ],
  "properties": {
    "employeeId": {
      "type": "string",
      "format": "uuid"
    },
    "reviewers": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AppraisalSessionReviewer"
      }
    }
  },
  "type": "object"
}