iSpring Learn · Schema

NewDepartment

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
name string
parentDepartmentId string
code string
View JSON Schema on GitHub

JSON Schema

NewDepartment.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NewDepartment",
  "required": [
    "name",
    "parentDepartmentId"
  ],
  "properties": {
    "name": {
      "type": "string"
    },
    "parentDepartmentId": {
      "type": "string",
      "format": "uuid"
    },
    "code": {
      "type": "string"
    }
  },
  "type": "object",
  "xml": {
    "name": "request"
  }
}