iSpring Learn · Schema

AppraisalSessionReview

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
reviewId string
sessionId string
employeeId string
reviewerId string
status object
completionDate string
View JSON Schema on GitHub

JSON Schema

AppraisalSessionReview.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AppraisalSessionReview",
  "required": [
    "reviewId",
    "sessionId",
    "employeeId",
    "reviewerId",
    "status",
    "completionDate"
  ],
  "properties": {
    "reviewId": {
      "type": "string",
      "format": "uuid"
    },
    "sessionId": {
      "type": "string",
      "format": "uuid"
    },
    "employeeId": {
      "type": "string",
      "format": "uuid"
    },
    "reviewerId": {
      "type": "string",
      "format": "uuid"
    },
    "status": {
      "$ref": "#/components/schemas/AppraisalSessionReviewStatus"
    },
    "completionDate": {
      "type": "string",
      "format": "dateTime"
    }
  },
  "type": "object",
  "xml": {
    "name": "appraisalSessionReview"
  }
}