/** * OneRoster Primitives * * Enums and literal types specific to the OneRoster protocol. * For shared Timeback primitives (TimebackGrade, TimebackSubject), see `@timeback/types`. */ /** * OneRoster assessment result score status values. * @see https://www.imsglobal.org/oneroster-v11-final-specification */ export type ScoreStatus = 'exempt' | 'fully graded' | 'not submitted' | 'partially graded' | 'submitted'; /** * OneRoster organization types. * @see https://www.imsglobal.org/oneroster-v11-final-specification */ export type OrganizationType = 'department' | 'school' | 'district' | 'local' | 'state' | 'national'; /** * OneRoster user role types. * @see https://www.imsglobal.org/oneroster-v11-final-specification */ export type OneRosterUserRole = 'administrator' | 'aide' | 'guardian' | 'parent' | 'proctor' | 'relative' | 'student' | 'teacher'; //# sourceMappingURL=primitives.d.ts.map