# M1_DIGEST --- title: M1_DIGEST description: A standardized academic transcript format based on the EDI (Electronic Data Interchange) 130 standard. This schema represents a comprehensive student academic record/transcript that includes course information, grades, academic achievements, and other educational data exchanged between academic institutions. --- A summary object computed based on the academic record of the student. {% json-schema schema={ "title": "M1_DIGEST Schema", "type": "object", "required": [ "degree_type", "years_in_school", "min_grade", "cgpa", "last_term_gpa", "credits_earned" ], "properties": { "degree_type": { "type": "string", "description": "Granular level of study. Enum `HIGH-SCHOOL-DIPLOMA`, `ASSOCIATE`, `BACHELORS`, `MASTERS`, `MASTERS-RESEARCH`, `DOCTORAL`, `CERTIFICATE`, `DIPLOMA`, `NON-DEGREE`, `PROFESSIONAL`, `UNDERGRADUATE`" }, "years_in_school": { "type": "number", "format": "double", "description": "Number of years that the Individual has been enrolled, including any breaks between enrollments. Non-zero, non-negative, rounded to two decimals" }, "min_grade": { "type": "string", "description": "Lowest grade earned on a course taken" }, "cgpa": { "type": "number", "format": "double", "description": "Weighted CGPA, in the 0 to 4 scale, for the combination of courses attended at the transcript-issuing school" }, "last_term_gpa": { "type": "number", "format": "double", "description": "GPA, in the 0 to 4 scale, for the last term of attendance" }, "credits_earned": { "type": "number", "format": "double", "description": "Total credits earned including transferred credits, converted to a standard semester credit hour system" } }, "example": { "degree_type": "BACHELORS", "years_in_school": 4, "min_grade": "D", "cgpa": 3, "last_term_gpa": 2, "credits_earned": 65 }, "$schema": "http://json-schema.org/draft-07/schema#" } /%}