iSpring Learn · Schema

Role

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
roleId string
type string
title string
description string
View JSON Schema on GitHub

JSON Schema

Role.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Role",
  "required": [
    "roleId",
    "type",
    "title",
    "description"
  ],
  "properties": {
    "roleId": {
      "type": "string",
      "format": "uuid"
    },
    "type": {
      "type": "string"
    },
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    }
  },
  "type": "object",
  "xml": {
    "name": "role"
  }
}