iSpring Learn · Schema

AssignmentAttemptGrade

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
attemptId string
score number
comment string
View JSON Schema on GitHub

JSON Schema

AssignmentAttemptGrade.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AssignmentAttemptGrade",
  "required": [
    "attemptId",
    "score"
  ],
  "properties": {
    "attemptId": {
      "type": "string",
      "format": "uuid"
    },
    "score": {
      "type": "number",
      "maximum": 100,
      "minimum": 0
    },
    "comment": {
      "type": "string"
    }
  },
  "type": "object",
  "xml": {
    "name": "attemptGrade"
  }
}