iSpring Learn · Schema

WorkLeaveStatus

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

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

JSON Schema

WorkLeaveStatus.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "WorkLeaveStatus",
  "required": [
    "workLeaveReason",
    "startDate"
  ],
  "properties": {
    "workLeaveReason": {
      "$ref": "#/components/schemas/WorkLeaveReason"
    },
    "startDate": {
      "type": "string",
      "format": "date"
    },
    "endDate": {
      "type": "string",
      "format": "date"
    }
  },
  "type": "object",
  "xml": {
    "name": "workLeaveStatus",
    "wrapped": true
  }
}