iSpring Learn · Schema

AppraisalSessionEmployeeResults

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
employeeId string
sessionId string
competencyResults array
indicatorResults array
View JSON Schema on GitHub

JSON Schema

AppraisalSessionEmployeeResults.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AppraisalSessionEmployeeResults",
  "required": [
    "employeeId",
    "sessionId",
    "competencyResults",
    "indicatorResults"
  ],
  "properties": {
    "employeeId": {
      "type": "string",
      "format": "uuid"
    },
    "sessionId": {
      "type": "string",
      "format": "uuid"
    },
    "competencyResults": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AppraisalSessionEmployeeCompetencyResults"
      },
      "xml": {
        "wrapped": true
      }
    },
    "indicatorResults": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AppraisalSessionEmployeeIndicatorResults"
      },
      "xml": {
        "wrapped": true
      }
    }
  },
  "type": "object",
  "xml": {
    "name": "appraisalSessionEmployeeResults"
  }
}