iSpring Learn · Schema

AppraisalSession

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
sessionId string
name string
description string
managerId string
profileId string
status object
startDate string
endDate string
View JSON Schema on GitHub

JSON Schema

AppraisalSession.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AppraisalSession",
  "required": [
    "sessionId",
    "name",
    "description",
    "managerId",
    "profileId",
    "status",
    "startDate"
  ],
  "properties": {
    "sessionId": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "managerId": {
      "type": "string",
      "format": "uuid"
    },
    "profileId": {
      "type": "string",
      "format": "uuid"
    },
    "status": {
      "$ref": "#/components/schemas/AppraisalSessionStatus"
    },
    "startDate": {
      "type": "string",
      "format": "dateTime"
    },
    "endDate": {
      "type": "string",
      "format": "dateTime"
    }
  },
  "type": "object",
  "xml": {
    "name": "appraisalSession"
  }
}