iSpring Learn · Schema

Day

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
dayId string
sessionId string
trainingId string
startTime string
duration integer Duration in seconds
location string
url string
View JSON Schema on GitHub

JSON Schema

Day.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Day",
  "required": [
    "dayId",
    "sessionId",
    "trainingId",
    "startTime"
  ],
  "properties": {
    "dayId": {
      "type": "string",
      "format": "uuid"
    },
    "sessionId": {
      "type": "string",
      "format": "uuid"
    },
    "trainingId": {
      "type": "string",
      "format": "uuid"
    },
    "startTime": {
      "type": "string",
      "format": "datetime"
    },
    "duration": {
      "description": "Duration in seconds",
      "type": "integer"
    },
    "location": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  },
  "type": "object",
  "xml": {
    "name": "Day"
  }
}