iSpring Learn · Schema

Department

eLearningLMSLearning Management SystemTrainingCoursesEnrollmentsUsersGroupsReportingWebhooksSCORMCorporate Training

Properties

Name Type Description
departmentId string
name string
parentDepartmentId string
code string
subordination object
coSubordination object
View JSON Schema on GitHub

JSON Schema

Department.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Department",
  "required": [
    "departmentId",
    "name",
    "subordination",
    "coSubordination"
  ],
  "properties": {
    "departmentId": {
      "type": "string",
      "format": "uuid"
    },
    "name": {
      "type": "string"
    },
    "parentDepartmentId": {
      "type": "string",
      "format": "uuid"
    },
    "code": {
      "type": "string"
    },
    "subordination": {
      "$ref": "#/components/schemas/Subordination"
    },
    "coSubordination": {
      "$ref": "#/components/schemas/Subordination"
    }
  },
  "type": "object",
  "xml": {
    "name": "department"
  }
}