iSpring Learn · Schema

Assignment

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
assignmentId string
title string
instructorId string
courseFields array
View JSON Schema on GitHub

JSON Schema

Assignment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Assignment",
  "required": [
    "assignmentId",
    "title"
  ],
  "properties": {
    "assignmentId": {
      "type": "string",
      "format": "uuid"
    },
    "title": {
      "type": "string"
    },
    "instructorId": {
      "type": "string",
      "format": "uuid"
    },
    "courseFields": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CourseFieldValue"
      }
    }
  },
  "type": "object",
  "xml": {
    "name": "assignment"
  }
}