iSpring Learn · Schema

CompetencyProfile

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
profileId string
name string
description string
competencies array
indicators array
View JSON Schema on GitHub

JSON Schema

CompetencyProfile.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "CompetencyProfile",
  "required": [
    "profileId",
    "name",
    "description",
    "competencies",
    "indicators"
  ],
  "properties": {
    "profileId": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "competencies": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ProfileCompetencyData"
      },
      "xml": {
        "wrapped": true
      }
    },
    "indicators": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ProfileIndicatorData"
      },
      "xml": {
        "wrapped": true
      }
    }
  },
  "type": "object",
  "xml": {
    "name": "competencyProfile"
  }
}