iSpring Learn · Schema

Training

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
title string
organizer string
sessions object
type string
View JSON Schema on GitHub

JSON Schema

Training.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Training",
  "required": [
    "title",
    "organizer",
    "sessions",
    "type"
  ],
  "properties": {
    "title": {
      "type": "string"
    },
    "organizer": {
      "type": "string",
      "format": "uuid"
    },
    "sessions": {
      "$ref": "#/components/schemas/ArrayOfIds"
    },
    "type": {
      "type": "string"
    }
  },
  "type": "object",
  "xml": {
    "name": "training"
  }
}