iSpring Learn · Schema

Reenroll

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
accessDate string
dueDateType object
dueDate string
duePeriod integer
lockAfterDueDate boolean
View JSON Schema on GitHub

JSON Schema

Reenroll.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Reenroll",
  "required": [
    "accessDate",
    "dueDateType"
  ],
  "properties": {
    "accessDate": {
      "type": "string",
      "format": "date"
    },
    "dueDateType": {
      "$ref": "#/components/schemas/DueDateType"
    },
    "dueDate": {
      "type": "string",
      "format": "date"
    },
    "duePeriod": {
      "type": "integer"
    },
    "lockAfterDueDate": {
      "type": "boolean"
    }
  },
  "type": "object",
  "xml": {
    "name": "request"
  }
}