iSpring Learn · Schema

ChangeCompetencyData

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
name string
description string
scaleId string
reviewMethod object
commentsRequirementLevel object
emptyAnswersEnabled boolean
View JSON Schema on GitHub

JSON Schema

ChangeCompetencyData.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ChangeCompetencyData",
  "required": [
    "name",
    "scaleId",
    "reviewMethod",
    "commentsRequirementLevel",
    "emptyAnswersEnabled"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "scaleId": {
      "type": "string",
      "format": "uuid"
    },
    "reviewMethod": {
      "$ref": "#/components/schemas/CompetencyReviewMethod"
    },
    "commentsRequirementLevel": {
      "$ref": "#/components/schemas/CompetencyCommentsRequirementLevel"
    },
    "emptyAnswersEnabled": {
      "type": "boolean"
    }
  },
  "type": "object"
}