iSpring Learn · Schema

CourseModule

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
moduleId string
itemId string
courseId string
title string
description string
authorId string
addedDate string
type object
trainingType object
viewUrl string
sequentialNumber integer
View JSON Schema on GitHub

JSON Schema

CourseModule.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CourseModule",
  "required": [
    "moduleId",
    "itemId",
    "courseId",
    "title",
    "description",
    "authorId",
    "addedDate",
    "type",
    "sequentialNumber"
  ],
  "properties": {
    "moduleId": {
      "type": "string",
      "format": "uuid"
    },
    "itemId": {
      "type": "string",
      "format": "uuid"
    },
    "courseId": {
      "type": "string",
      "format": "uuid"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "authorId": {
      "type": "string",
      "format": "uuid"
    },
    "addedDate": {
      "type": "string",
      "format": "date-time"
    },
    "type": {
      "$ref": "#/components/schemas/ModuleItemType"
    },
    "trainingType": {
      "$ref": "#/components/schemas/TrainingType"
    },
    "viewUrl": {
      "type": "string",
      "format": "url"
    },
    "sequentialNumber": {
      "type": "integer"
    }
  },
  "type": "object",
  "xml": {
    "name": "module"
  }
}