iSpring Learn · Schema

CourseTreeItem

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
contentItemId string
title string
type string
description string
addedDate string
viewUrl string
parentId string
isShared boolean
View JSON Schema on GitHub

JSON Schema

CourseTreeItem.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CourseTreeItem",
  "required": [
    "contentItemId",
    "title",
    "type",
    "description",
    "addedDate",
    "viewUrl",
    "parentId",
    "isShared"
  ],
  "properties": {
    "contentItemId": {
      "type": "string",
      "format": "uuid"
    },
    "title": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "addedDate": {
      "type": "string",
      "format": "date-time"
    },
    "viewUrl": {
      "type": "string",
      "format": "url"
    },
    "parentId": {
      "type": "string",
      "format": "uuid"
    },
    "isShared": {
      "type": "boolean"
    }
  },
  "type": "object",
  "xml": {
    "name": "contentItem"
  }
}