Unit Data Type

Subtypes
EducationalInstitution, Department
Properties
name data type constraints description
name_en string  
id number  
designation string  
closed boolean required boolean
name string  
units array of Unit  

Example

{
  "name_en" : "...",
  "id" : 12345,
  "designation" : "...",
  "closed" : true,
  "name" : "...",
  "units" : [ {
    "name_en" : "...",
    "id" : 12345,
    "designation" : "...",
    "closed" : true,
    "name" : "...",
    "units" : [ { }, { } ]
  }, {
    "name_en" : "...",
    "id" : 12345,
    "designation" : "...",
    "closed" : true,
    "name" : "...",
    "units" : [ { }, { } ]
  } ]
}