For Developers
Subjects Overview
A Subject is a topic of study. It is associated with a Department and a Course.
Properties
Property | Type | Description |
---|---|---|
id | string | The UUID for the subject. $filter operators: equals in not in |
created_date | Date | When the subject was first seen by Edlink. |
updated_date | Date | When the subject was last changed in Edlink. $filter operators: equals gt lt gte lte |
properties | object | Non-standard properties that may be of interest to the developer. |
name | string | The name of the subject. |
code | string | Code for the subject. |
ceds_code | string | CEDS Course Subject Area. |
description | string | A description of the subject. |
identifiers | Identifier[] | Additional IDs associated with the object. |
department_id | string | The UUID of the associated Department. |
JSON Example
{
"id": "00000000-0000-0000-0000-000000000000",
"created_date": "2021-07-13T17:45:27.570Z",
"updated_date": "2021-07-13T17:45:27.570Z",
"properties": {},
"name": "Mathematics",
"code": "MATH",
"ceds_code": "02",
"description": "A description of the subject.",
"department_id": "00000000-0000-0000-0000-000000000000"
}