iSpring Learn · Schema

TrainingSession

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
id string
title string
startTime string
duration integer
instructor string
dayIds object
View JSON Schema on GitHub

JSON Schema

TrainingSession.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TrainingSession",
  "required": [
    "id",
    "title",
    "startTime",
    "duration",
    "dayIds"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "title": {
      "type": "string"
    },
    "startTime": {
      "type": "string",
      "format": "datetime"
    },
    "duration": {
      "type": "integer"
    },
    "instructor": {
      "type": "string"
    },
    "dayIds": {
      "$ref": "#/components/schemas/ArrayOfIds"
    }
  },
  "type": "object",
  "xml": {
    "name": "trainingSession"
  }
}