iSpring Learn · Schema

AppraisalSessionContentCompetency

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
competencyId string
name string
scaleId string
requiredLevel object
reviewMethod object
indicators array
commentsRequirementLevel object
emptyAnswersEnabled boolean
View JSON Schema on GitHub

JSON Schema

AppraisalSessionContentCompetency.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AppraisalSessionContentCompetency",
  "required": [
    "competencyId",
    "name",
    "scaleId",
    "reviewMethod",
    "indicators",
    "commentsRequirementLevel",
    "emptyAnswersEnabled"
  ],
  "properties": {
    "competencyId": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "scaleId": {
      "type": "string",
      "format": "uuid"
    },
    "requiredLevel": {
      "$ref": "#/components/schemas/AppraisalSessionContentRequiredLevelData"
    },
    "reviewMethod": {
      "$ref": "#/components/schemas/AppraisalSessionContentCompetencyReviewMethod"
    },
    "indicators": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/AppraisalSessionContentIndicatorData"
      },
      "xml": {
        "wrapped": true
      }
    },
    "commentsRequirementLevel": {
      "$ref": "#/components/schemas/AppraisalSessionContentCommentsRequirementLevel"
    },
    "emptyAnswersEnabled": {
      "type": "boolean"
    }
  },
  "type": "object",
  "xml": {
    "name": "appraisalSessionContentCompetency"
  }
}