iSpring Learn · Schema

CompetencyGroup

The root group has an empty parentId

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
groupId string
name string
parentId string
competencyIds array
View JSON Schema on GitHub

JSON Schema

CompetencyGroup.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CompetencyGroup",
  "description": "The root group has an empty parentId",
  "required": [
    "groupId",
    "name",
    "parentId",
    "competencyIds"
  ],
  "properties": {
    "groupId": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "parentId": {
      "type": "string",
      "format": "uuid"
    },
    "competencyIds": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      },
      "xml": {
        "wrapped": true
      }
    }
  },
  "type": "object",
  "xml": {
    "name": "competencyGroup"
  }
}