Core Module
Academic Excellence
Without Compromise.
Transform institutional learning with a unified system that handles everything from session planning to global result processing.
Curriculum & Sessions
Manage multi-year academic cycles, sessions, and terms with granular control over enrollment periods and holidays.
- Dynamic Session Creation
- Term & Holiday Calendars
- Course Catalog Management
- Elective Subject Enrollment
-- Academics Schema v4.0
CREATE TABLE student_grades (
id UUID PRIMARY KEY,
student_id UUID REFERENCES students(id),
exam_id UUID REFERENCES exams(id),
score NUMERIC(5,2),
grade VARCHAR(2),
comments TEXT,
audit_id UUID REFERENCES audit_logs(id)
);
CREATE TABLE curriculums (
id UUID PRIMARY KEY,
tenant_id UUID NOT NULL,
code VARCHAR(20) UNIQUE,
framework_type VARCHAR(50)
);
Module: academics_core_v4.sql
Assessment & Examinations
Comprehensive exam lifecycle management, from scheduling and invigilation to complex grading scales and weighting.
- Custom Grading Systems
- GPA & CGPA Calculation
- Digital Result Slips
- Continuous Assessment (CA)
-- Academics Schema v4.0
CREATE TABLE student_grades (
id UUID PRIMARY KEY,
student_id UUID REFERENCES students(id),
exam_id UUID REFERENCES exams(id),
score NUMERIC(5,2),
grade VARCHAR(2),
comments TEXT,
audit_id UUID REFERENCES audit_logs(id)
);
CREATE TABLE curriculums (
id UUID PRIMARY KEY,
tenant_id UUID NOT NULL,
code VARCHAR(20) UNIQUE,
framework_type VARCHAR(50)
);
Module: academics_core_v4.sql
Student Information System (SIS)
A 360-degree view of the student journey, including academic history, attendance, disciplinary records, and health data.
- Unified Student Profiles
- Family & Emergency Contacts
- Document Management
- Transfer & Alumni Tracking
-- Academics Schema v4.0
CREATE TABLE student_grades (
id UUID PRIMARY KEY,
student_id UUID REFERENCES students(id),
exam_id UUID REFERENCES exams(id),
score NUMERIC(5,2),
grade VARCHAR(2),
comments TEXT,
audit_id UUID REFERENCES audit_logs(id)
);
CREATE TABLE curriculums (
id UUID PRIMARY KEY,
tenant_id UUID NOT NULL,
code VARCHAR(20) UNIQUE,
framework_type VARCHAR(50)
);
Module: academics_core_v4.sql