iSpring Learn · Schema

AssignmentAttempt

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
attemptId string
enrollmentId string
userId string
comment string
attachments array
View JSON Schema on GitHub

JSON Schema

AssignmentAttempt.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AssignmentAttempt",
  "required": [
    "attemptId",
    "enrollmentId",
    "userId",
    "comment"
  ],
  "properties": {
    "attemptId": {
      "type": "string",
      "format": "uuid"
    },
    "enrollmentId": {
      "type": "string",
      "format": "uuid"
    },
    "userId": {
      "type": "string",
      "format": "uuid"
    },
    "comment": {
      "type": "string"
    },
    "attachments": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AssignmentAttemptAttachment"
      }
    }
  },
  "type": "object",
  "xml": {
    "name": "attempt"
  }
}