Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
{
   authType : type of external id 
   externalUserId : id
}

...

EvaulationRounds

Code Block
languagejson
{
   roundId : numeric #round-number as stored in the database
   automaticQuestionScore : numeric # Total score for autograded questions
   finalGrade : decimal # final gradevalue for this round
   jaggedAnalysisStatus : string # name of the status of this evaluationround
   roundGrades : * array of RoundGrade
   questions : * array of Question
}

...

RoundGrades

Code Block
languagetext
{
  evaluatorIdevaluatorUserId : the evalutor giving the grade
  gradetotalScore : total score of the round gradeper givenevaluator
}

Question

Code Block
languagetext
{
  questionNumber : string # The position of the question in questionSet
  questionId : numeric # Inspera's internal question-id
  userQuestionId : numeric # 
  questionWeight : numeric # 
  evaluations : array of Evaluation
}

...