iSpring Learn · Schema

AppraisalSessionEmployeeCard

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

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

JSON Schema

AppraisalSessionEmployeeCard.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AppraisalSessionEmployeeCard",
  "required": [
    "employeeId",
    "reviewerIds"
  ],
  "properties": {
    "employeeId": {
      "type": "string",
      "format": "uuid"
    },
    "reviewerIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      },
      "xml": {
        "wrapped": true
      }
    }
  },
  "type": "object",
  "xml": {
    "name": "appraisalSessionEmployeeCard"
  }
}