iSpring Learn · Schema

DateRange

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
startDate string
endDate string
View JSON Schema on GitHub

JSON Schema

DateRange.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DateRange",
  "required": [
    "startDate",
    "endDate"
  ],
  "properties": {
    "startDate": {
      "type": "string",
      "format": "dateTime"
    },
    "endDate": {
      "type": "string",
      "format": "dateTime"
    }
  },
  "type": "object",
  "xml": {
    "name": "dateRange"
  }
}