iSpring Learn · Schema

UpdateUser

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
departmentId string
role object
roleId string
roles array
fields object
groupIds object
manageableDepartmentIds object
View JSON Schema on GitHub

JSON Schema

UpdateUser.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "UpdateUser",
  "properties": {
    "departmentId": {
      "type": "string"
    },
    "role": {
      "$ref": "#/components/schemas/UserRoleEnum"
    },
    "roleId": {
      "type": "string",
      "format": "uuid"
    },
    "roles": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/UserRole"
      }
    },
    "fields": {
      "$ref": "#/components/schemas/UserProfileFields"
    },
    "groupIds": {
      "$ref": "#/components/schemas/ArrayOfIds"
    },
    "manageableDepartmentIds": {
      "$ref": "#/components/schemas/ArrayOfIds"
    }
  },
  "type": "object",
  "xml": {
    "name": "request"
  }
}