iSpring Learn · Schema

TrainingParticipantAttendance

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
participantId string
isAttended boolean
duration integer Duration in seconds
View JSON Schema on GitHub

JSON Schema

TrainingParticipantAttendance.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "TrainingParticipantAttendance",
  "required": [
    "participantId",
    "isAttended"
  ],
  "properties": {
    "participantId": {
      "type": "string",
      "format": "uuid"
    },
    "isAttended": {
      "type": "boolean"
    },
    "duration": {
      "description": "Duration in seconds",
      "type": "integer"
    }
  },
  "type": "object",
  "xml": {
    "name": "trainingParticipantAttendance"
  }
}