iSpring Learn · Schema

CriterionGroupResultData

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
groupId string
checklistId string
groupTitle string
sessionId string
result number
totalPoints number
points number
employeeId string
observerId string
View JSON Schema on GitHub

JSON Schema

CriterionGroupResultData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CriterionGroupResultData",
  "required": [
    "groupId",
    "groupTitle",
    "checklistId",
    "sessionId",
    "employeeId",
    "observerId"
  ],
  "properties": {
    "groupId": {
      "type": "string",
      "format": "uuid"
    },
    "checklistId": {
      "type": "string",
      "format": "uuid"
    },
    "groupTitle": {
      "type": "string"
    },
    "sessionId": {
      "type": "string",
      "format": "uuid"
    },
    "result": {
      "type": "number",
      "format": "float"
    },
    "totalPoints": {
      "type": "number",
      "format": "float"
    },
    "points": {
      "type": "number",
      "format": "float"
    },
    "employeeId": {
      "type": "string",
      "format": "uuid"
    },
    "observerId": {
      "type": "string",
      "format": "uuid"
    }
  },
  "type": "object",
  "xml": {
    "name": "criterionGroupResultData"
  }
}