iSpring Learn · Schema

WorkLeaveStatusData

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
userId string
workLeaveReason object
startDate string
endDate string
View JSON Schema on GitHub

JSON Schema

WorkLeaveStatusData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "WorkLeaveStatusData",
  "required": [
    "userId",
    "workLeaveReason"
  ],
  "properties": {
    "userId": {
      "type": "string",
      "format": "uuid"
    },
    "workLeaveReason": {
      "$ref": "#/components/schemas/WorkLeaveReason"
    },
    "startDate": {
      "type": "string",
      "format": "date"
    },
    "endDate": {
      "type": "string",
      "format": "date"
    }
  },
  "type": "object"
}