iSpring Learn · Schema

Quiz

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
quizId string
quizTitle string
contentItemId string
parentCourseIds object
View JSON Schema on GitHub

JSON Schema

Quiz.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Quiz",
  "required": [
    "quizId",
    "quizTitle",
    "contentItemId",
    "parentCourseIds"
  ],
  "properties": {
    "quizId": {
      "type": "string",
      "format": "uuid"
    },
    "quizTitle": {
      "type": "string"
    },
    "contentItemId": {
      "type": "string",
      "format": "uuid"
    },
    "parentCourseIds": {
      "$ref": "#/components/schemas/ArrayOfIds"
    }
  },
  "type": "object",
  "xml": {
    "name": "result",
    "wrapped": true
  }
}