AcademicOrganization

An Academic Organization at Waterloo is similar to a department

EducationHigher EducationUniversityOpen DataCanadaResearch

Properties

Name Type Description
code stringnull Unique Code of this Academic Organization
name stringnull The Name for this Academic Organization, most often the display name
description stringnull The short description for this Academic Organization
descriptionFormal stringnull The formal description for this Academic Organization, most often used in official capacity
associatedCampusCode stringnull The Code for the Campus that this Academic Organization is assigned to
View JSON Schema on GitHub

JSON Schema

university-of-waterloo-academicorganization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/university-of-waterloo/json-schema/university-of-waterloo-academicorganization-schema.json",
  "title": "AcademicOrganization",
  "description": "An Academic Organization at Waterloo is similar to a department",
  "type": "object",
  "properties": {
    "code": {
      "type": [
        "string",
        "null"
      ],
      "description": "Unique Code of this Academic Organization"
    },
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "The Name for this Academic Organization, most often the display name"
    },
    "description": {
      "type": [
        "string",
        "null"
      ],
      "description": "The short description for this Academic Organization"
    },
    "descriptionFormal": {
      "type": [
        "string",
        "null"
      ],
      "description": "The formal description for this Academic Organization, most often used in official capacity"
    },
    "associatedCampusCode": {
      "type": [
        "string",
        "null"
      ],
      "description": "The Code for the Campus that this Academic Organization is assigned to"
    }
  },
  "additionalProperties": false
}