iSpring Learn · Schema

UserRole

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
roleId string
manageableDepartmentIds object
roleType object
View JSON Schema on GitHub

JSON Schema

UserRole.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UserRole",
  "required": [
    "roleId"
  ],
  "properties": {
    "roleId": {
      "type": "string",
      "format": "uuid"
    },
    "manageableDepartmentIds": {
      "$ref": "#/components/schemas/ArrayOfIds"
    },
    "roleType": {
      "$ref": "#/components/schemas/UserRoleEnum"
    }
  },
  "type": "object",
  "xml": {
    "name": "userRole",
    "wrapped": true
  }
}