Clever · Schema

Section

A Clever Section object (analogous to a class) linking teachers and students within a school.

EducationK-12EdTechSingle Sign-OnRosteringIdentitySSOStudent DataLMSSIS

Properties

Name Type Description
id string Unique Clever identifier for the section.
district string Clever identifier of the district.
school string Clever identifier of the school.
course stringnull Clever identifier of the associated course.
term_id stringnull Clever identifier of the associated term.
name string Name of the section.
sis_id string Section identifier from the SIS.
section_number stringnull
period stringnull Period identifier for the section.
subject stringnull Subject category for the section.
grade stringnull Grade level of the section.
teacher stringnull Primary teacher Clever identifier.
teachers array All teacher Clever identifiers for the section.
students array All student Clever identifiers enrolled in the section.
lms_status object LMS synchronization status for the section.
created string
last_modified string
ext object Extension fields.
View JSON Schema on GitHub

JSON Schema

clever-section.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/clever/main/json-schema/clever-section.json",
  "title": "Section",
  "description": "A Clever Section object (analogous to a class) linking teachers and students within a school.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "Unique Clever identifier for the section." },
    "district": { "type": "string", "description": "Clever identifier of the district." },
    "school": { "type": "string", "description": "Clever identifier of the school." },
    "course": { "type": ["string", "null"], "description": "Clever identifier of the associated course." },
    "term_id": { "type": ["string", "null"], "description": "Clever identifier of the associated term." },
    "name": { "type": "string", "description": "Name of the section." },
    "sis_id": { "type": "string", "description": "Section identifier from the SIS." },
    "section_number": { "type": ["string", "null"] },
    "period": { "type": ["string", "null"], "description": "Period identifier for the section." },
    "subject": {
      "type": ["string", "null"],
      "enum": ["english/language arts","math","science","social studies","language","homeroom/advisory","interventions/online learning","technology and engineering","PE and health","arts and music","other",""],
      "description": "Subject category for the section."
    },
    "grade": {
      "type": ["string", "null"],
      "description": "Grade level of the section."
    },
    "teacher": { "type": ["string", "null"], "description": "Primary teacher Clever identifier." },
    "teachers": {
      "type": "array",
      "items": { "type": "string" },
      "description": "All teacher Clever identifiers for the section."
    },
    "students": {
      "type": "array",
      "items": { "type": "string" },
      "description": "All student Clever identifiers enrolled in the section."
    },
    "lms_status": {
      "type": "object",
      "description": "LMS synchronization status for the section."
    },
    "created": { "type": "string", "format": "date-time" },
    "last_modified": { "type": "string", "format": "date-time" },
    "ext": { "type": "object", "description": "Extension fields." }
  },
  "required": ["id", "district", "school", "name"]
}