iSpring Learn · Schema

CompetencyIndicator

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
indicatorId string
name string
levels array
View JSON Schema on GitHub

JSON Schema

CompetencyIndicator.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CompetencyIndicator",
  "required": [
    "indicatorId",
    "name",
    "levels"
  ],
  "properties": {
    "indicatorId": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "levels": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CompetencyIndicatorLevel"
      },
      "xml": {
        "wrapped": true
      }
    }
  },
  "type": "object",
  "xml": {
    "name": "competencyIndicator"
  }
}