iSpring Learn · Schema

CoursesModule

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
moduleId string
contentItemId string
courseId string
title string
description string
authorId string
addedDate string
viewUrl string
View JSON Schema on GitHub

JSON Schema

CoursesModule.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CoursesModule",
  "required": [
    "moduleId",
    "contentItemId",
    "courseId",
    "title",
    "description",
    "authorId",
    "addedDate",
    "viewUrl"
  ],
  "properties": {
    "moduleId": {
      "type": "string",
      "format": "uuid"
    },
    "contentItemId": {
      "type": "string",
      "format": "uuid"
    },
    "courseId": {
      "type": "string",
      "format": "uuid"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "authorId": {
      "type": "string",
      "format": "uuid"
    },
    "addedDate": {
      "type": "string",
      "format": "datetime"
    },
    "viewUrl": {
      "type": "string",
      "format": "url"
    }
  },
  "type": "object",
  "xml": {
    "name": "module"
  }
}