Organization

An organization within the Rokwire Core Building Block API.

EducationHigher EducationUniversityOpen DataCoursesLibraryUnited States

Properties

Name Type Description
id string Unique identifier of the organization.
name string Human-readable name of the organization.
type string Size classification of the organization.
config object Organization configuration object.
View JSON Schema on GitHub

JSON Schema

university-of-illinois-urbana-champaign-organization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.rokwire.illinois.edu/core/schemas/organization.json",
  "title": "Organization",
  "description": "An organization within the Rokwire Core Building Block API.",
  "type": "object",
  "required": ["id", "name", "type"],
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "Unique identifier of the organization."
    },
    "name": {
      "type": "string",
      "description": "Human-readable name of the organization."
    },
    "type": {
      "type": "string",
      "enum": ["micro", "small", "medium", "large", "huge"],
      "description": "Size classification of the organization."
    },
    "config": {
      "type": "object",
      "description": "Organization configuration object."
    }
  }
}