iSpring Learn · Schema

AnswerBreakdownResult

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
userId string
enrollmentId string
quizVersion string
attemptDate string
isAttemptPassed boolean
attemptScore number
passingScore number
questionNumber integer
questionTitle string
questionType string
questionScore number
questionGroup string
statementTitle string
answerText string
customAnswerText string
isAnswerCorrect boolean
answerScore number
View JSON Schema on GitHub

JSON Schema

AnswerBreakdownResult.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AnswerBreakdownResult",
  "required": [
    "userId",
    "enrollmentId",
    "quizVersion",
    "attemptDate",
    "isAttemptPassed",
    "attemptScore",
    "passingScore",
    "questionNumber",
    "questionTitle",
    "questionType",
    "questionScore",
    "answerText",
    "isAnswerCorrect",
    "answerScore"
  ],
  "properties": {
    "userId": {
      "type": "string",
      "format": "uuid"
    },
    "enrollmentId": {
      "type": "string",
      "format": "uuid"
    },
    "quizVersion": {
      "type": "string"
    },
    "attemptDate": {
      "type": "string",
      "format": "datetime"
    },
    "isAttemptPassed": {
      "type": "boolean"
    },
    "attemptScore": {
      "type": "number",
      "format": "float"
    },
    "passingScore": {
      "type": "number",
      "format": "float"
    },
    "questionNumber": {
      "type": "integer"
    },
    "questionTitle": {
      "type": "string"
    },
    "questionType": {
      "type": "string"
    },
    "questionScore": {
      "type": "number",
      "format": "float"
    },
    "questionGroup": {
      "type": "string"
    },
    "statementTitle": {
      "type": "string"
    },
    "answerText": {
      "type": "string"
    },
    "customAnswerText": {
      "type": "string"
    },
    "isAnswerCorrect": {
      "type": "boolean"
    },
    "answerScore": {
      "type": "number",
      "format": "float"
    }
  },
  "type": "object",
  "xml": {
    "name": "result",
    "wrapped": true
  }
}