Section

Object referring to classes. Every class has several students and teachers. Every teacher related to a class can be related to a course at the same time.

  • Section entity object
{
    "name": "7º Ano A - Português", // Section name (unique per school)
    "sis_id": "123123", // Identifier used within the academic system
    "code": "125054", // Section code (only per school)
    "level": "7º Série", // Level name
    "term_code": "2022", // Term code (if not present, using current active in HUB)
    "period": 1, // Section period (morning(1) | afternoon(2) | night(3) | full time(4))
    "status": "active" // Object status (active, arquived, suspended)
}

To see: data dictionary

Relationships

Students

SectionStudent entity object

{
    "sis_id": "4124123423", // Link identification (unique per submission)
    "section": {
        "code": "125054", // Section code
    },
    "student": {
        "code": "125054", // Mandatory and unique field. User registration (RA)
    }
    "term_code":"2022" // If not present, using current term active in HUB
}

Teachers

  • SectionTeacher entity object
{
    "sis_id": "4124123423", // Link identification (unique per submission)
    "section": {
        "code": "125054", // Section code
    },
    "teacher": {
        "code": "125054", // Mandatory and unique field. User registration (RA)
    },
    "subject": {
        "code": "MAT" // Subject code (mandatory and unique)
    },
    "term_code":"2022" // If not present, using current term active in HUB
}

It is possible to use the term_code to inform the period that the teacher is related to the class, in this case, the start and end date are replaced by the start and end date of the period. If you enter start_date, end_date, and term_code, term_code will be ignored.

To see: data dictionary