From b79104cc0ae93674b2b54c91cd19c1ce930c3dcc Mon Sep 17 00:00:00 2001
From: "jvanboxtel@wisc.edu" <jvanboxtel@wisc.edu>
Date: Tue, 23 Jul 2019 11:59:41 -0500
Subject: [PATCH] fix for degree audits and degree plans

---
 src/app/dars/dars-view/dars-view.component.ts |    2 +
 .../new-degree-audit-dialog.component.html    |   36 +
 .../new-degree-audit-dialog.component.ts      |   66 +-
 .../new-what-if-audit-dialog.component.html   |    2 +-
 .../new-what-if-audit-dialog.component.ts     |    2 +-
 .../mock-data/degreeprograms-response.json    | 2838 ++++++++++++++++-
 6 files changed, 2935 insertions(+), 11 deletions(-)

diff --git a/src/app/dars/dars-view/dars-view.component.ts b/src/app/dars/dars-view/dars-view.component.ts
index 1654f93..c13793e 100644
--- a/src/app/dars/dars-view/dars-view.component.ts
+++ b/src/app/dars/dars-view/dars-view.component.ts
@@ -73,6 +73,8 @@ export class DARSViewComponent implements OnInit {
             new StartSendingAudit({
               darsInstitutionCode: event.darsInstitutionCode,
               darsDegreeProgramCode: event.darsDegreeProgramCode,
+              degreePlannerPlanName: event.degreePlannerPlanName,
+              whichEnrolledCoursesIncluded: event.whichEnrolledCoursesIncluded,
             }),
           );
         }
diff --git a/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.html b/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.html
index f4b6067..41ced8f 100644
--- a/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.html
+++ b/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.html
@@ -59,6 +59,7 @@
           <mat-form-field>
             <mat-label>Include Courses From</mat-label>
             <mat-select formControlName="includeCoursesFrom">
+              <mat-option value="planned">Previous, current, future, and planned terms</mat-option>
               <mat-option value="future">Previous, current, and future terms</mat-option>
               <mat-option value="current">Previous and current terms</mat-option>
               <mat-option value="previous">Previous terms</mat-option>
@@ -66,6 +67,41 @@
           </mat-form-field>
         </ng-container>
 
+        <ng-container *ngIf="degreePlans$ | async as degreePlans; else loading">
+            <mat-form-field *ngIf="chosenAuditSettings.get('includeCoursesFrom')?.value == 'planned'">
+              <mat-label>Degree Plan</mat-label>
+              <mat-select id="what-if-degree-plan-select" formControlName="degreePlan">
+                <mat-select-trigger *ngIf="chosenAuditSettings.get('degreePlan')?.value; let plan">
+                  <mat-icon
+                    class="primary-star"
+                    *ngIf="plan.primary"
+                    alt="Primary degree plan star"
+                    aria-label="Primary plan selected"
+                    matTooltip="Primary plan selected"
+                    matTooltipPosition="above">
+                    star_rate
+                  </mat-icon>
+                  <span class="plan-name">{{ plan.name }}</span>
+                </mat-select-trigger>
+
+                <mat-option
+                  *ngFor="let plan of degreePlans"
+                  [value]="plan">
+                  <mat-icon
+                    class="primary-star"
+                    *ngIf="plan.primary"
+                    alt="Primary degree plan star"
+                    aria-label="Primary plan selected"
+                    matTooltip="Primary plan selected"
+                    matTooltipPosition="above">
+                    star_rate
+                  </mat-icon>
+                  <span class="plan-name">{{ plan.name }}</span>
+                </mat-option>
+              </mat-select>
+            </mat-form-field>
+        </ng-container>
+
         <div class="step-actions">
           <button mat-button matStepperPrevious>Back</button>
           <button mat-stroked-button matStepperNext [disabled]="!chosenAuditSettings.valid">Next</button>
diff --git a/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.ts b/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.ts
index b3bd474..97c7429 100644
--- a/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.ts
+++ b/src/app/dars/new-degree-audit-dialog/new-degree-audit-dialog.component.ts
@@ -2,7 +2,7 @@ import { Component, OnInit } from '@angular/core';
 import { DarsApiService } from '../services/api.service';
 import { DegreePrograms } from '../models/degree-program';
 import { StudentDegreeProgram } from '../models/student-degree-program';
-import { Observable, combineLatest } from 'rxjs';
+import { Observable, combineLatest, Subject } from 'rxjs';
 import {
   FormBuilder,
   FormGroup,
@@ -11,7 +11,7 @@ import {
   FormArray,
 } from '@angular/forms';
 import { HonorsOption } from '../models/honors-option';
-import { map, share, filter, flatMap } from 'rxjs/operators';
+import { map, share, filter, flatMap, shareReplay } from 'rxjs/operators';
 import { CourseBase } from '@app/core/models/course';
 import { Store } from '@ngrx/store';
 import { GlobalState } from '@app/core/state';
@@ -30,8 +30,9 @@ const inclusiveRange = (from: number, to: number) => {
 export interface NewDegreeAuditFields {
   darsInstitutionCode: string;
   darsDegreeProgramCode: string;
+  degreePlannerPlanName: string;
   darsHonorsOptionCode: string;
-  includeCoursesFrom: string;
+  whichEnrolledCoursesIncluded: string;
   fixedCredits: {
     termCode: string;
     subjectCode: string;
@@ -54,6 +55,8 @@ export class NewDegreeAuditDialogComponent implements OnInit {
   // API observables
   public degreePrograms$: Observable<StudentDegreeProgram[]>;
   public institutions$: Observable<DegreePrograms>;
+  public degreePlans$: Observable<DegreePlan[]>;
+  public chosenRoadmapId$ = new Subject<number>();
   public honorsOptions$: Observable<HonorsOption[]>;
   public variableCreditCourses$: Observable<
     (CourseBase & { range: number[] })[]
@@ -68,8 +71,9 @@ export class NewDegreeAuditDialogComponent implements OnInit {
     this.chosenProgram = fb.control('', Validators.required);
 
     this.chosenAuditSettings = fb.group({
-      honorsOptions: fb.control('', Validators.required),
+      honorsOptions: fb.control(' ', Validators.required),
       includeCoursesFrom: fb.control('future', Validators.required),
+      degreePlan: fb.control('', Validators.required),
     });
 
     this.chosenCreditSettings = fb.array([]);
@@ -124,6 +128,36 @@ export class NewDegreeAuditDialogComponent implements OnInit {
       share(),
     );
 
+    this.degreePlans$ = this.store.select(degreePlans).pipe(shareReplay());
+
+    this.degreePlans$.subscribe(plans => {
+      const primaryPlan = plans.find(p => p.primary);
+      this.chosenAuditSettings.controls['degreePlan'].setValue(primaryPlan);
+
+      if (primaryPlan) {
+        this.chosenRoadmapId$.next(primaryPlan.roadmapId);
+      }
+    });
+
+    const degreePlanFormControl = this.chosenAuditSettings.get('degreePlan');
+    const includeCoursesFrom = this.chosenAuditSettings.get(
+      'includeCoursesFrom',
+    );
+    if (includeCoursesFrom && degreePlanFormControl) {
+      includeCoursesFrom.valueChanges.subscribe(selected => {
+        if (selected !== 'planned') {
+          degreePlanFormControl.reset();
+          degreePlanFormControl.disable();
+        } else {
+          console.log(degreePlanFormControl);
+          degreePlanFormControl.enable();
+          degreePlanFormControl.valueChanges.subscribe(plan => {
+            this.chosenRoadmapId$.next(plan.roadmapId);
+          });
+        }
+      });
+    }
+
     this.variableCreditCourses$.subscribe(courses => {
       while (this.chosenCreditSettings.length !== 0) {
         this.chosenCreditSettings.removeAt(0);
@@ -156,6 +190,15 @@ export class NewDegreeAuditDialogComponent implements OnInit {
     }
   }
 
+  public degreePlannerPlanName<T>(fallback: T): string | T {
+    const control = this.chosenAuditSettings.get('degreePlan');
+    if (control && control.value !== null) {
+      return control.value.name;
+    } else {
+      return fallback;
+    }
+  }
+
   public darsHonorsOptionCode<T>(fallback: T): string | T {
     const control = this.chosenAuditSettings.get('honorsOptions');
     if (control !== null) {
@@ -165,10 +208,16 @@ export class NewDegreeAuditDialogComponent implements OnInit {
     }
   }
 
+  // If a degree plan name is included in the request we do not need this property
   public includeCoursesFrom<T>(fallback: T): string | T {
-    const control = this.chosenAuditSettings.get('includeCoursesFrom');
-    if (control !== null) {
-      return control.value.toString();
+    const controlDegreePlan = this.chosenAuditSettings.get('degreePlan');
+    if (controlDegreePlan && controlDegreePlan.status === 'DISABLED') {
+      const control = this.chosenAuditSettings.get('includeCoursesFrom');
+      if (control !== null) {
+        return control.value.toString();
+      } else {
+        return fallback;
+      }
     } else {
       return fallback;
     }
@@ -191,8 +240,9 @@ export class NewDegreeAuditDialogComponent implements OnInit {
     this.dialogRef.close({
       darsInstitutionCode: this.darsInstitutionCode(''),
       darsDegreeProgramCode: this.darsDegreeProgramCode(''),
+      degreePlannerPlanName: this.degreePlannerPlanName(''),
       darsHonorsOptionCode: this.darsHonorsOptionCode(''),
-      includeCoursesFrom: this.includeCoursesFrom(''),
+      whichEnrolledCoursesIncluded: this.includeCoursesFrom(''),
       fixedCredits: this.fixedCredits(),
     });
   }
diff --git a/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.html b/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.html
index 6e11fb4..0ececcf 100644
--- a/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.html
+++ b/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.html
@@ -86,6 +86,7 @@
               <mat-option value="previous">Previous terms</mat-option>
             </mat-select>
           </mat-form-field>
+        </ng-container>
 
           <!--
             User picks which of their degree plans to use as a basis for the what-if audit
@@ -124,7 +125,6 @@
               </mat-select>
             </mat-form-field>
           </ng-container>
-        </ng-container>
 
         <div class="step-actions">
           <button mat-button matStepperPrevious>Back</button>
diff --git a/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.ts b/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.ts
index d9dc6b2..bab8c09 100644
--- a/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.ts
+++ b/src/app/dars/new-what-if-audit-dialog/new-what-if-audit-dialog.component.ts
@@ -85,7 +85,7 @@ export class NewWhatIfAuditDialogComponent implements OnInit {
     });
 
     this.chosenAuditSettings = fb.group({
-      honorsOptions: fb.control('.', Validators.required),
+      honorsOptions: fb.control(' ', Validators.required),
       includeCoursesFrom: fb.control('planned', Validators.required),
       degreePlan: fb.control('', Validators.required),
     });
diff --git a/src/assets/mock-data/degreeprograms-response.json b/src/assets/mock-data/degreeprograms-response.json
index 5d9dabc..96f2235 100644
--- a/src/assets/mock-data/degreeprograms-response.json
+++ b/src/assets/mock-data/degreeprograms-response.json
@@ -1 +1,2837 @@
-{"L&S":{"darsInstitutionCode":"L&S","darsInstitutionCodeDescription":"Letters & Science, College of","programs":[{"darsDegreeProgramCode":"BA  916","darsInstitutionCode":"L&S","darsInstitutionCodeDescription":"Letters & Science, College of","darsDegreeProgramDescription":"SOCIAL WELFARE major: COLLEGE of LETTERS & SCIENCE - Bachelor of Arts (B.A.): BA  916"},{"darsDegreeProgramCode":"MAJ 542","darsInstitutionCode":"L&S","darsInstitutionCodeDescription":"Letters & Science, College of","darsDegreeProgramDescription":"CLASSICAL HUMANITIES major : COLLEGE of LETTERS & SCIENCE : MAJ 542"}],"honorsOptions":[{"darsInstitutionCode":"L&S","darsHonorsOptionCode":".","darsHonorsOptionDescription":"Keep current status"},{"darsInstitutionCode":"L&S","darsHonorsOptionCode":"Z","darsHonorsOptionDescription":"Omit Major, Include Liberal Arts"},{"darsInstitutionCode":"L&S","darsHonorsOptionCode":"M","darsHonorsOptionDescription":"Include Honors in Major"}]}}
\ No newline at end of file
+{
+  "EDU": {
+    "darsInstitutionCode": "EDU",
+    "darsInstitutionCodeDescription": "Education, School of",
+    "programs": [
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 258MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - EARTH SCIENCE MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 783MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - PHYSICS MINOR "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "AED 085",
+        "darsDegreeProgramDescription": "ART EDUCATION PROGRAM "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "BFA 081",
+        "darsDegreeProgramDescription": "BACHELOR OF FINE ARTS DEGREE PROGRAM"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 583",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - JAPANESE MAJOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 915MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - SOCIAL STUDIES MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 922MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION: SOCIOLOGY MINOR REQUIREMENTS"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 805MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - POLITICAL SCIENCE MINOR "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 477",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - GERMAN MAJOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 634MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - MATHEMATICS MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 904MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - SPECIALIZED SCIENCE MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "BSES278",
+        "darsDegreeProgramDescription": "B. S. DEGREE IN EDUCATION STUDIES"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "DANCEMIN",
+        "darsDegreeProgramDescription": "DANCE MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 387CF",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION:  MC - EA/CONTENT FOCUS"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 171MIN",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - CHINESE MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "BSAT098",
+        "darsDegreeProgramDescription": "BACHELOR OF SCIENCE - ATHLETIC TRAINING"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "BSPE770",
+        "darsDegreeProgramDescription": "B. S. DEGREE IN PHYSICAL EDUCATION"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "KNS 768EM",
+        "darsDegreeProgramDescription": "KINESIOLOGY: EXERCISE AND MOVEMENT SCIENCE DEGREE PROGRAM"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 635MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - SPECIALIZED MATHEMATICS MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EEDSP 10110",
+        "darsDegreeProgramDescription": "ELEMENTARY AND SPECIAL EDUCATION DUAL MAJOR:"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 486MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - HEALTH MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 636MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - MATHEMATICS/SCIENCE DUAL MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 583MIN",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - JAPANESE MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 936MIN",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - SPANISH MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "DFA 248",
+        "darsDegreeProgramDescription": "BACHELOR OF FINE ARTS - DANCE"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "BSTD971",
+        "darsDegreeProgramDescription": "THEATRE AND DRAMA - BACHELOR OF SCIENCE.DEGREE PROGRAM"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 832MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - PSYCHOLOGY MINOR "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 216",
+        "darsDegreeProgramDescription": "COMMUNICATION SCIENCES AND DISORDERS"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 387SP",
+        "darsDegreeProgramDescription": "ELEMENTARY AND SPECIAL EDUCATION DUAL MAJOR:"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 261MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - ECONOMICS MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 583MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - JAPANESE MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 445",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - FRENCH MAJOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 936",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - SPANISH MAJOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 153MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - CHEMISTRY MINOR "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 248MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - DANCE MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "RPS 868",
+        "darsDegreeProgramDescription": "REHABILITATION PSYCHOLOGY PROGRAM REQUIREMENTS"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 477MIN",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - GERMAN MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "KNS 486MIN",
+        "darsDegreeProgramDescription": "SECONDARY EDUCATION - HEALTH MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "CERT399",
+        "darsDegreeProgramDescription": "CERTIFICATE IN INTRODUCTORY STUDIES IN DANCE/MOVEMENT THERAPY"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "CERT293",
+        "darsDegreeProgramDescription": "EDUCATION AND EDUCATIONAL SERVICES CERTIFICATE"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 445MIN",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - FRENCH MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 598",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - LATIN MAJOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "ART 081",
+        "darsDegreeProgramDescription": "B. S. DEGREE IN ART"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 936MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - SPANISH MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "CERT952",
+        "darsDegreeProgramDescription": "CERTIFICATE IN STUDIO ART"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 406MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - ENGLISH LANGUAGE ARTS MINOR "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 445MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - FRENCH MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "CERT622",
+        "darsDegreeProgramDescription": "PILATES CERTIFICATE"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "KNS 768PE",
+        "darsDegreeProgramDescription": "KINESIOLOGY: TEACHER EDUCATION OPTION "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 477MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - GERMAN MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 112MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - BIOLOGY MINOR"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SPE 101",
+        "darsDegreeProgramDescription": "SPECIAL EDUCATION: CROSS CATEGORICAL DEGREE PROGRAM"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EEDSP 38738",
+        "darsDegreeProgramDescription": "ELEMENTARY AND SPECIAL EDUCATION DUAL MAJOR:"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 405MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - ENGLISH MINOR "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "CERT280",
+        "darsDegreeProgramDescription": "DANCE CERTIFICATE "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "BSTD971AS",
+        "darsDegreeProgramDescription": "THEATRE AND DRAMA: ACTING SPECIALIST OPTION - B.S. DEGREE PROGRAM"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 387EE",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION: EARLY CHILDHOOD/ESL OPTION"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "CERTSTUDIOART",
+        "darsDegreeProgramDescription": "CERTIFICATE IN STUDIO ART"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "CERT295",
+        "darsDegreeProgramDescription": "EDUCATIONAL POLICY STUDIES UNDERGRADUATE CERTIFICATE"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 499MIN",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION - HISTORY MINOR "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "EED 387ME",
+        "darsDegreeProgramDescription": "ELEMENTARY EDUCATION: MIDDLE CHILDHOOD THROUGH EARLY "
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "DAN 248",
+        "darsDegreeProgramDescription": "B.S. DEGREE IN DANCE"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsInstitutionCodeDescription": "Education, School of",
+        "darsDegreeProgramCode": "SED 171",
+        "darsDegreeProgramDescription": "WORLD LANGUAGE EDUCATION - CHINESE MAJOR"
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "EDU",
+        "darsHonorsOptionCode": "M",
+        "darsHonorsOptionDescription": "Include Honors"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      },
+      {
+        "darsInstitutionCode": "EDU",
+        "darsHonorsOptionCode": "D",
+        "darsHonorsOptionDescription": "Omit Honors"
+      }
+    ]
+  },
+  "L&S": {
+    "darsInstitutionCode": "L&S",
+    "darsInstitutionCodeDescription": "Letters & Science, College of",
+    "programs": [
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  018",
+        "darsDegreeProgramDescription": "AFRICAN LANGUAGES & LITERATURE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT205",
+        "darsDegreeProgramDescription": "Certificate in CHICAN@ & LATIN@ STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  517",
+        "darsDegreeProgramDescription": "HISTORY of SCIENCE, MEDICINE & TECHNOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 121",
+        "darsDegreeProgramDescription": "BOTANY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  067",
+        "darsDegreeProgramDescription": "ANTHROPOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT485",
+        "darsDegreeProgramDescription": "Certificate in ITALIAN"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  097",
+        "darsDegreeProgramDescription": "ASTRONOMY-PHYSICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  801",
+        "darsDegreeProgramDescription": "POLISH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  584",
+        "darsDegreeProgramDescription": "JEWISH STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  350",
+        "darsDegreeProgramDescription": "ENVIRONMENTAL STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  090AA",
+        "darsDegreeProgramDescription": "ART HISTORY major, ASIAN ART option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  261",
+        "darsDegreeProgramDescription": "ECONOMICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  579SC",
+        "darsDegreeProgramDescription": "INTERNATIONAL STUDIES major, GLOBAL SECURITY option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT210",
+        "darsDegreeProgramDescription": "Certificate in CLASSICAL STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 584MO",
+        "darsDegreeProgramDescription": "JEWISH STUDIES major, Modern Hebrew Track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BSW 918AR",
+        "darsDegreeProgramDescription": "SOCIAL WORK degree - B.A. Track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT410",
+        "darsDegreeProgramDescription": "Certificate in JEWISH STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  783",
+        "darsDegreeProgramDescription": "PHYSICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT107",
+        "darsDegreeProgramDescription": "Certificate in AFRO-AMERICAN Studies"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT424",
+        "darsDegreeProgramDescription": "Certificate in FOLKLORE"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  261ME",
+        "darsDegreeProgramDescription": "ECONOMICS major, MATH EMPHASIS option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 405CW",
+        "darsDegreeProgramDescription": "ENGLISH major, CREATIVE WRITING option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  146",
+        "darsDegreeProgramDescription": "CARTOGRAPHY & GEOGRAPHIC INFORMATION SYSTEMS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  598",
+        "darsDegreeProgramDescription": "LATIN major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 684",
+        "darsDegreeProgramDescription": "MOLECULAR BIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 875",
+        "darsDegreeProgramDescription": "RELIGIOUS STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  090",
+        "darsDegreeProgramDescription": "ART HISTORY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "AMP 072",
+        "darsDegreeProgramDescription": "APPLIED MATH, ENGINEERING & PHYSICS (AMEP) degree "
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  675",
+        "darsDegreeProgramDescription": "ATMOSPHERIC & OCEANIC SCIENCES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BSW 918SC",
+        "darsDegreeProgramDescription": "SOCIAL WORK degree - B.S. Track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT257",
+        "darsDegreeProgramDescription": "Certificate in DIGITAL STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 708",
+        "darsDegreeProgramDescription": "NEUROBIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 108",
+        "darsDegreeProgramDescription": "CONSERVATION BIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  580",
+        "darsDegreeProgramDescription": "ITALIAN major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT250",
+        "darsDegreeProgramDescription": "Certificate in CRIMINAL JUSTICE"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT450",
+        "darsDegreeProgramDescription": "Certificate in MEDIEVAL STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 579GE",
+        "darsDegreeProgramDescription": "INTERNATIONAL STUDIES major, POLITICS & POLICY in GLOBAL ECON opt"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT330",
+        "darsDegreeProgramDescription": "Certificate in EAST CENTRAL EUROPEAN LANG, LIT, AND CULTURES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  634AP",
+        "darsDegreeProgramDescription": "MATHEMATICS major, APPLIED option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  463",
+        "darsDegreeProgramDescription": "GEOGRAPHY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  121",
+        "darsDegreeProgramDescription": "BOTANY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  112EL",
+        "darsDegreeProgramDescription": "BIOLOGY major, EVOLUTION option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 405LL",
+        "darsDegreeProgramDescription": "ENGLISH major, LANGUAGE & LINGUISTICS option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  810",
+        "darsDegreeProgramDescription": "PORTUGUESE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  092",
+        "darsDegreeProgramDescription": "ASIAN STUDIES major, EAST ASIAN option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  891LL",
+        "darsDegreeProgramDescription": "RUSSIAN major, LANGUAGE & LITERATURE track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT800",
+        "darsDegreeProgramDescription": "Certificate in GENDER & WOMEN'S STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 585",
+        "darsDegreeProgramDescription": "Journalism & Mass Communications:  Additional Major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  542",
+        "darsDegreeProgramDescription": "CLASSICAL HUMANITIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 584ED",
+        "darsDegreeProgramDescription": "JEWISH STUDIES major, EDUCATION track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT110",
+        "darsDegreeProgramDescription": "Certificate in AMERICAN INDIAN STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT120",
+        "darsDegreeProgramDescription": "Certificate in ARCHAEOLOGY"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  621",
+        "darsDegreeProgramDescription": "LINGUISTICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  499",
+        "darsDegreeProgramDescription": "HISTORY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  608",
+        "darsDegreeProgramDescription": "LEGAL STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  993",
+        "darsDegreeProgramDescription": "GENDER & WOMEN'S STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  765",
+        "darsDegreeProgramDescription": "PHILOSOPHY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT432",
+        "darsDegreeProgramDescription": "Certificate in MATERIAL CULTURE STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT208",
+        "darsDegreeProgramDescription": "Certificate in CHINESE PROFESSIONAL COMMUNICATION"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  020",
+        "darsDegreeProgramDescription": "AFRO-AMERICAN STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  201TV",
+        "darsDegreeProgramDescription": "COMMUNICATION ARTS major, RADIO-TV-FILM option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  922AR",
+        "darsDegreeProgramDescription": "SOCIOLOGY major, Concentration in ANALYSIS & RESEARCH"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 499",
+        "darsDegreeProgramDescription": "HISTORY major "
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 832",
+        "darsDegreeProgramDescription": "PSYCHOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  995",
+        "darsDegreeProgramDescription": "ZOOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  684",
+        "darsDegreeProgramDescription": "MOLECULAR BIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  189",
+        "darsDegreeProgramDescription": "CLASSICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 090",
+        "darsDegreeProgramDescription": "ART HISTORY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT229",
+        "darsDegreeProgramDescription": "Certificate in Computer Science (CERT 229)"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  875",
+        "darsDegreeProgramDescription": "RELIGIOUS STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 261ME",
+        "darsDegreeProgramDescription": "ECONOMICS major, MATH EMPHASIS option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 092SE",
+        "darsDegreeProgramDescription": "ASIAN STUDIES major, SOUTHEAST ASIAN option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  153",
+        "darsDegreeProgramDescription": "CHEMISTRY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  936",
+        "darsDegreeProgramDescription": "SPANISH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  414",
+        "darsDegreeProgramDescription": "ENVIRONMENTAL SCIENCES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  579GE",
+        "darsDegreeProgramDescription": "INTERNATIONAL STUDIES major, POLITICS & POLICY in GLOBAL ECON opt"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  805",
+        "darsDegreeProgramDescription": "POLITICAL SCIENCE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  405CW",
+        "darsDegreeProgramDescription": "ENGLISH major, CREATIVE WRITING option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT430",
+        "darsDegreeProgramDescription": "Certificate in LGBT+ STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  470",
+        "darsDegreeProgramDescription": "GEOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  765",
+        "darsDegreeProgramDescription": "PHILOSOPHY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  216",
+        "darsDegreeProgramDescription": "COMMUNICATIVE DISORDERS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT325",
+        "darsDegreeProgramDescription": "Certificate in EAST ASIAN STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  112PL",
+        "darsDegreeProgramDescription": "BIOLOGY major, PLANT option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  608",
+        "darsDegreeProgramDescription": "LEGAL STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 229",
+        "darsDegreeProgramDescription": "COMPUTER SCIENCES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT101",
+        "darsDegreeProgramDescription": "Certificate in AFRICAN STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  103",
+        "darsDegreeProgramDescription": "BIOCHEMISTRY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  477",
+        "darsDegreeProgramDescription": "GERMAN major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 020",
+        "darsDegreeProgramDescription": "AFRO-AMERICAN STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 517",
+        "darsDegreeProgramDescription": "HISTORY of SCIENCE, MEDICINE & TECHNOLOGY major "
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT806",
+        "darsDegreeProgramDescription": "Certificate in POLITICAL ECONOMY, PHILOSOPHY, and POLITICS"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  993",
+        "darsDegreeProgramDescription": "GENDER & WOMEN'S STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT477",
+        "darsDegreeProgramDescription": "Certificate in GERMAN"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 810",
+        "darsDegreeProgramDescription": "PORTUGUESE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  542",
+        "darsDegreeProgramDescription": "CLASSICAL HUMANITIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  092SE",
+        "darsDegreeProgramDescription": "ASIAN STUDIES major, SOUTHEAST ASIAN option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  832",
+        "darsDegreeProgramDescription": "PSYCHOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  579GE",
+        "darsDegreeProgramDescription": "INTERNATIONAL STUDIES major, POLITICS & POLICY in GLOBAL ECON opt"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  216",
+        "darsDegreeProgramDescription": "COMMUNICATIVE DISORDERS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 634AP",
+        "darsDegreeProgramDescription": "MATHEMATICS major, APPLIED option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "JBA 585",
+        "darsDegreeProgramDescription": "Journalism & Mass Communications:  Bachelor of Arts"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT435",
+        "darsDegreeProgramDescription": "Certificate in MIDDLE EAST STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  405",
+        "darsDegreeProgramDescription": "ENGLISH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  225",
+        "darsDegreeProgramDescription": "COMPARATIVE LITERATURE AND FOLKLORE STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  090",
+        "darsDegreeProgramDescription": "ART HISTORY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT660",
+        "darsDegreeProgramDescription": "Certificate in RELIGIOUS STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 584",
+        "darsDegreeProgramDescription": "JEWISH STUDIES major "
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT355",
+        "darsDegreeProgramDescription": "Certificate in EUROPEAN STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  875",
+        "darsDegreeProgramDescription": "RELIGIOUS STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  405LL",
+        "darsDegreeProgramDescription": "ENGLISH major, LANGUAGE & LINGUISTICS option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  922",
+        "darsDegreeProgramDescription": "SOCIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 995",
+        "darsDegreeProgramDescription": "ZOOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  584ED",
+        "darsDegreeProgramDescription": "JEWISH STUDIES major, EDUCATION track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  916",
+        "darsDegreeProgramDescription": "SOCIAL WELFARE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  900",
+        "darsDegreeProgramDescription": "SCANDINAVIAN STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  225",
+        "darsDegreeProgramDescription": "COMPARATIVE LITERATURE AND FOLKLORE STUDIES  major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  677",
+        "darsDegreeProgramDescription": "MICROBIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 067",
+        "darsDegreeProgramDescription": "ANTHROPOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 112",
+        "darsDegreeProgramDescription": "BIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  580",
+        "darsDegreeProgramDescription": "ITALIAN major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT201",
+        "darsDegreeProgramDescription": "Certificate in ASIAN AMERICAN STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  445",
+        "darsDegreeProgramDescription": "FRENCH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  584ED",
+        "darsDegreeProgramDescription": "JEWISH STUDIES major, EDUCATION track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  708",
+        "darsDegreeProgramDescription": "NEUROBIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 189",
+        "darsDegreeProgramDescription": "CLASSICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  621",
+        "darsDegreeProgramDescription": "LINGUISTICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  949",
+        "darsDegreeProgramDescription": "STATISTICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 801",
+        "darsDegreeProgramDescription": "POLISH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  108",
+        "darsDegreeProgramDescription": "CONSERVATION BIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  634",
+        "darsDegreeProgramDescription": "MATHEMATICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 553",
+        "darsDegreeProgramDescription": "LATIN AMERICAN, CARIBBEAN & IBERIAN STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 922AR",
+        "darsDegreeProgramDescription": "SOCIOLOGY major, Concentration in ANALYSIS & RESEARCH"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  405LL",
+        "darsDegreeProgramDescription": "ENGLISH major, LANGUAGE & LINGUISTICS option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT316",
+        "darsDegreeProgramDescription": "Certificate in FRENCH"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  092SE",
+        "darsDegreeProgramDescription": "ASIAN STUDIES major, SOUTHEAST ASIAN option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 470",
+        "darsDegreeProgramDescription": "GEOLOGY & GEOPHYSICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 201RS",
+        "darsDegreeProgramDescription": "COMMUNICATION ARTS major, COM SCIENCE & RHETORICAL STUDIES option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 171",
+        "darsDegreeProgramDescription": "CHINESE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  112PL",
+        "darsDegreeProgramDescription": "BIOLOGY major, PLANT option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 580",
+        "darsDegreeProgramDescription": "ITALIAN major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 949",
+        "darsDegreeProgramDescription": "STATISTICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  092",
+        "darsDegreeProgramDescription": "ASIAN STUDIES major, EAST ASIAN option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT380",
+        "darsDegreeProgramDescription": "Certificate in INTEGRATED LIBERAL STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  891",
+        "darsDegreeProgramDescription": "RUSSIAN major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  598",
+        "darsDegreeProgramDescription": "LATIN major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  634AP",
+        "darsDegreeProgramDescription": "MATHEMATICS major, APPLIED option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  504",
+        "darsDegreeProgramDescription": "HISTORY/HISTORY of SCIENCE [joint] major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 675",
+        "darsDegreeProgramDescription": "ATMOSPHERIC & OCEANIC SCIENCES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  684",
+        "darsDegreeProgramDescription": "MOLECULAR BIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  708",
+        "darsDegreeProgramDescription": "NEUROBIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 092",
+        "darsDegreeProgramDescription": "ASIAN STUDIES major, EAST ASIAN option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  090AA",
+        "darsDegreeProgramDescription": "ART HISTORY major, ASIAN ART option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 112PL",
+        "darsDegreeProgramDescription": "BIOLOGY major, PLANT option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 922",
+        "darsDegreeProgramDescription": "SOCIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT935",
+        "darsDegreeProgramDescription": "Certificate in SOUTHEAST ASIAN STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 900",
+        "darsDegreeProgramDescription": "SCANDINAVIAN STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 350",
+        "darsDegreeProgramDescription": "ENVIRONMENTAL STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 579CU",
+        "darsDegreeProgramDescription": "INTERNATIONAL STUDIES major, CULTURE in the AGE of GLOBALIZATION"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 018",
+        "darsDegreeProgramDescription": "AFRICAN LANGUAGES & LITERATURE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 891LL",
+        "darsDegreeProgramDescription": "RUSSIAN major, LANGUAGE & LITERATURE track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  067",
+        "darsDegreeProgramDescription": "ANTHROPOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  517",
+        "darsDegreeProgramDescription": "HISTORY of SCIENCE, MEDICINE & TECHNOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  112",
+        "darsDegreeProgramDescription": "BIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  936",
+        "darsDegreeProgramDescription": "SPANISH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  922AR",
+        "darsDegreeProgramDescription": "SOCIOLOGY major, Concentration in ANALYSIS & RESEARCH"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  414",
+        "darsDegreeProgramDescription": "ENVIRONMENTAL SCIENCES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 583",
+        "darsDegreeProgramDescription": "JAPANESE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 112NB",
+        "darsDegreeProgramDescription": "BIOLOGY major, NEUROBIOLOGY option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  201RS",
+        "darsDegreeProgramDescription": "COMMUNICATION ARTS major, COM SCIENCE & RHETORICAL STUDIES option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "JBS 585",
+        "darsDegreeProgramDescription": "Journalism & Mass Communications:  Bachelor of Science"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  584MO",
+        "darsDegreeProgramDescription": "JEWISH STUDIES major, Modern Hebrew Track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  103",
+        "darsDegreeProgramDescription": "BIOCHEMISTRY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  097",
+        "darsDegreeProgramDescription": "ASTRONOMY-PHYSICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  463",
+        "darsDegreeProgramDescription": "GEOGRAPHY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  553",
+        "darsDegreeProgramDescription": "LATIN AMERICAN, CARIBBEAN & IBERIAN STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  584",
+        "darsDegreeProgramDescription": "JEWISH STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  108",
+        "darsDegreeProgramDescription": "CONSERVATION BIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT720",
+        "darsDegreeProgramDescription": "Certificate in Teaching English as a Second Language (CERT 720)"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 783",
+        "darsDegreeProgramDescription": "PHYSICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 405",
+        "darsDegreeProgramDescription": "ENGLISH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  801",
+        "darsDegreeProgramDescription": "POLISH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 805",
+        "darsDegreeProgramDescription": "POLITICAL SCIENCE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  949",
+        "darsDegreeProgramDescription": "STATISTICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT715",
+        "darsDegreeProgramDescription": "Certificate in SOUTH ASIAN STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 153",
+        "darsDegreeProgramDescription": "CHEMISTRY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  583",
+        "darsDegreeProgramDescription": "JAPANESE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  229",
+        "darsDegreeProgramDescription": "COMPUTER SCIENCES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  900",
+        "darsDegreeProgramDescription": "SCANDINAVIAN STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  201RS",
+        "darsDegreeProgramDescription": "COMMUNICATION ARTS major - Comm Science & Rhetorical Studies opt"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  261",
+        "darsDegreeProgramDescription": "ECONOMICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  121",
+        "darsDegreeProgramDescription": "BOTANY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  922",
+        "darsDegreeProgramDescription": "SOCIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  405CW",
+        "darsDegreeProgramDescription": "ENGLISH major, CREATIVE WRITING option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  146",
+        "darsDegreeProgramDescription": "CARTOGRAPHY & GEOGRAPHIC INFORMATION SYSTEMS major "
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 891LC",
+        "darsDegreeProgramDescription": "RUSSIAN major, LANGUAGE & CIVILIZATION track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 504",
+        "darsDegreeProgramDescription": "HISTORY/HISTORY of SCIENCE [joint] major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  810",
+        "darsDegreeProgramDescription": "PORTUGUESE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  112",
+        "darsDegreeProgramDescription": "BIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  405",
+        "darsDegreeProgramDescription": "ENGLISH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 677",
+        "darsDegreeProgramDescription": "MICROBIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  499",
+        "darsDegreeProgramDescription": "HISTORY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  171",
+        "darsDegreeProgramDescription": "CHINESE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 765",
+        "darsDegreeProgramDescription": "PHILOSOPHY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 916",
+        "darsDegreeProgramDescription": "SOCIAL WELFARE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT405",
+        "darsDegreeProgramDescription": "Certificate in HEALTH in the HUMANITIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  584MO",
+        "darsDegreeProgramDescription": "JEWISH STUDIES major, Modern Hebrew Track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 216",
+        "darsDegreeProgramDescription": "COMMUNICATIVE DISORDERS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  553",
+        "darsDegreeProgramDescription": "LATIN AMERICAN, CARIBBEAN & IBERIAN STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT703",
+        "darsDegreeProgramDescription": "Certificate in RUSSIAN, EASTERN EUROPEAN & CENTRAL ASIAN STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 634",
+        "darsDegreeProgramDescription": "MATHEMATICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 414",
+        "darsDegreeProgramDescription": "ENVIRONMENTAL SCIENCES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 445",
+        "darsDegreeProgramDescription": "FRENCH major "
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  201TV",
+        "darsDegreeProgramDescription": "COMMUNICATION ARTS major - Radio, TV & Film option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  112EL",
+        "darsDegreeProgramDescription": "BIOLOGY major, EVOLUTION option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 225",
+        "darsDegreeProgramDescription": "COMPARATIVE LITERATURE AND FOLKLORE STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  171",
+        "darsDegreeProgramDescription": "CHINESE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT783",
+        "darsDegreeProgramDescription": "Certificate in Physics (CERT 783)"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 090AA",
+        "darsDegreeProgramDescription": "ART HISTORY major, ASIAN ART option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  891LC",
+        "darsDegreeProgramDescription": "RUSSIAN major, LANGUAGE & CIVILIZATION track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  677",
+        "darsDegreeProgramDescription": "MICROBIOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 103",
+        "darsDegreeProgramDescription": "BIOCHEMISTRY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT040",
+        "darsDegreeProgramDescription": null
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 579SC",
+        "darsDegreeProgramDescription": "INTERNATIONAL STUDIES major, GLOBAL SECURITY option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  916",
+        "darsDegreeProgramDescription": "SOCIAL WELFARE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 477",
+        "darsDegreeProgramDescription": "GERMAN major "
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  579CU",
+        "darsDegreeProgramDescription": "INTERNATIONAL STUDIES major, CULTURE in the AGE of GLOBALIZATION"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  891LL",
+        "darsDegreeProgramDescription": "RUSSIAN major, LANGUAGE & LITERATURE track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  189",
+        "darsDegreeProgramDescription": "CLASSICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  445",
+        "darsDegreeProgramDescription": "FRENCH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  229",
+        "darsDegreeProgramDescription": "COMPUTER SCIENCES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  634",
+        "darsDegreeProgramDescription": "MATHEMATICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  020",
+        "darsDegreeProgramDescription": "AFRO-AMERICAN STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  579SC",
+        "darsDegreeProgramDescription": "INTERNATIONAL STUDIES major, GLOBAL SECURITY option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  153",
+        "darsDegreeProgramDescription": "CHEMISTRY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT634",
+        "darsDegreeProgramDescription": "Certificate in MATHEMATICS"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 621",
+        "darsDegreeProgramDescription": "LINGUISTICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 993",
+        "darsDegreeProgramDescription": "GENDER & WOMEN'S STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  995",
+        "darsDegreeProgramDescription": "ZOOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  579CU",
+        "darsDegreeProgramDescription": "INTERNATIONAL STUDIES major, CULTURE in the AGE of GLOBALIZATION"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  018",
+        "darsDegreeProgramDescription": "AFRICAN LANGUAGES & LITERATURE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  504",
+        "darsDegreeProgramDescription": "HISTORY/HISTORY of SCIENCE [joint] major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT582",
+        "darsDegreeProgramDescription": "Certificate in JAPANESE PROFESSIONAL COMMUNICATION"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  583",
+        "darsDegreeProgramDescription": "JAPANESE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT900",
+        "darsDegreeProgramDescription": "Certificate in SCANDINAVIAN STUDIES"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "CERT384",
+        "darsDegreeProgramDescription": "Certificate in INTEG ST in SCI, ENGIN, AND SOCIETY (ISSuES)"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  783",
+        "darsDegreeProgramDescription": "PHYSICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  112NB",
+        "darsDegreeProgramDescription": "BIOLOGY major, NEUROBIOLOGY option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  832",
+        "darsDegreeProgramDescription": "PSYCHOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  470",
+        "darsDegreeProgramDescription": "GEOLOGY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  805",
+        "darsDegreeProgramDescription": "POLITICAL SCIENCE major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  891",
+        "darsDegreeProgramDescription": "RUSSIAN major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 261",
+        "darsDegreeProgramDescription": "ECONOMICS major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 936",
+        "darsDegreeProgramDescription": "SPANISH major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 463",
+        "darsDegreeProgramDescription": "GEOGRAPHY major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 146",
+        "darsDegreeProgramDescription": "CARTOGRAPHY & GEOGRAPHIC INFORMATION SYSTEMS major "
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 201TV",
+        "darsDegreeProgramDescription": "COMMUNICATION ARTS major, RADIO-TV-FILM option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  350",
+        "darsDegreeProgramDescription": "ENVIRONMENTAL STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  477",
+        "darsDegreeProgramDescription": "GERMAN major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 608",
+        "darsDegreeProgramDescription": "LEGAL STUDIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 112EL",
+        "darsDegreeProgramDescription": "BIOLOGY major, EVOLUTION option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 598",
+        "darsDegreeProgramDescription": "LATIN major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BA  675",
+        "darsDegreeProgramDescription": "ATMOSPHERIC & OCEANIC SCIENCES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 542",
+        "darsDegreeProgramDescription": "CLASSICAL HUMANITIES major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  261ME",
+        "darsDegreeProgramDescription": "ECONOMICS major, MATH EMPHASIS option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  891LC",
+        "darsDegreeProgramDescription": "RUSSIAN major, LANGUAGE & CIVILIZATION track"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "BS  112NB",
+        "darsDegreeProgramDescription": "BIOLOGY major, NEUROBIOLOGY option"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsInstitutionCodeDescription": "Letters & Science, College of",
+        "darsDegreeProgramCode": "MAJ 097",
+        "darsDegreeProgramDescription": "ASTRONOMY-PHYSICS major"
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "L&S",
+        "darsHonorsOptionCode": "L",
+        "darsHonorsOptionDescription": "Include Honors in Liberal Arts"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsHonorsOptionCode": "C",
+        "darsHonorsOptionDescription": "Include Both Major and Liberal Arts Honors"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsHonorsOptionCode": "X",
+        "darsHonorsOptionDescription": "Omit Honors in Liberal Arts"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsHonorsOptionCode": "M",
+        "darsHonorsOptionDescription": "Include Honors in Major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsHonorsOptionCode": "D",
+        "darsHonorsOptionDescription": "Omit Honors in Major"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsHonorsOptionCode": "Y",
+        "darsHonorsOptionDescription": "Include Major, Omit Liberal Arts"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsHonorsOptionCode": "Z",
+        "darsHonorsOptionDescription": "Omit Major, Include Liberal Arts"
+      },
+      {
+        "darsInstitutionCode": "L&S",
+        "darsHonorsOptionCode": "B",
+        "darsHonorsOptionDescription": "Omit Both Major and Liberal Arts Honors"
+      }
+    ]
+  },
+  "HEC": {
+    "darsInstitutionCode": "HEC",
+    "darsInstitutionCodeDescription": "Human Ecology, School of",
+    "programs": [
+      {
+        "darsInstitutionCode": "HEC",
+        "darsInstitutionCodeDescription": "Human Ecology, School of",
+        "darsDegreeProgramCode": "HTF 965",
+        "darsDegreeProgramDescription": "TEXTILES & FASHION DESIGN MAJOR"
+      },
+      {
+        "darsInstitutionCode": "HEC",
+        "darsInstitutionCodeDescription": "Human Ecology, School of",
+        "darsDegreeProgramCode": "HTF 965FI",
+        "darsDegreeProgramDescription": "TEXTILES & FASHION DESIGN MAJOR"
+      },
+      {
+        "darsInstitutionCode": "HEC",
+        "darsInstitutionCodeDescription": "Human Ecology, School of",
+        "darsDegreeProgramCode": "HEC 605",
+        "darsDegreeProgramDescription": "INTERIOR ARCHITECTURE MAJOR"
+      },
+      {
+        "darsInstitutionCode": "HEC",
+        "darsInstitutionCodeDescription": "Human Ecology, School of",
+        "darsDegreeProgramCode": "HPF 735FP",
+        "darsDegreeProgramDescription": "PERSONAL FINANCE - FINANCIAL PLANNING CONCENTRATION"
+      },
+      {
+        "darsInstitutionCode": "HEC",
+        "darsInstitutionCodeDescription": "Human Ecology, School of",
+        "darsDegreeProgramCode": "HPF 735CF",
+        "darsDegreeProgramDescription": "PERSONAL FINANCE - CONSUMER FINANCE CONCENTRATION"
+      },
+      {
+        "darsInstitutionCode": "HEC",
+        "darsInstitutionCodeDescription": "Human Ecology, School of",
+        "darsDegreeProgramCode": "HEC 879",
+        "darsDegreeProgramDescription": "RETAILING & CONSUMER BEHAVIOR MAJOR"
+      },
+      {
+        "darsInstitutionCode": "HEC",
+        "darsInstitutionCodeDescription": "Human Ecology, School of",
+        "darsDegreeProgramCode": "HID 605",
+        "darsDegreeProgramDescription": "INTERIOR ARCHITECTURE MAJOR"
+      },
+      {
+        "darsInstitutionCode": "HEC",
+        "darsInstitutionCodeDescription": "Human Ecology, School of",
+        "darsDegreeProgramCode": "HEC 540",
+        "darsDegreeProgramDescription": "HUMAN DEVELOPMENT & FAMILY STUDIES"
+      },
+      {
+        "darsInstitutionCode": "HEC",
+        "darsInstitutionCodeDescription": "Human Ecology, School of",
+        "darsDegreeProgramCode": "HEC 412",
+        "darsDegreeProgramDescription": "COMMUNITY & NONPROFIT LEADERSHIP"
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "HEC",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      },
+      {
+        "darsInstitutionCode": "HEC",
+        "darsHonorsOptionCode": "X",
+        "darsHonorsOptionDescription": "Omit Honors"
+      },
+      {
+        "darsInstitutionCode": "HEC",
+        "darsHonorsOptionCode": "M",
+        "darsHonorsOptionDescription": "Include Honors"
+      }
+    ]
+  },
+  "ALS": {
+    "darsInstitutionCode": "ALS",
+    "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+    "programs": [
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 931",
+        "darsDegreeProgramDescription": "SOIL SCIENCES MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "PAE 038",
+        "darsDegreeProgramDescription": "PRE-BIOLOGICAL SYSTEMS ENGINEERING"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 021",
+        "darsDegreeProgramDescription": "AGRICULTURAL AND APPLIED ECONOMICS MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ABE 038MS",
+        "darsDegreeProgramDescription": "BIOLOGICAL SYSTEMS ENGINEERING - MACHINERY SYSTEMS SPECIALIZATION"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ADI 717",
+        "darsDegreeProgramDescription": "BS DIETETICS (NUTRITIONAL SCIENCES MAJOR)"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "PAE 038SS",
+        "darsDegreeProgramDescription": "PRE-BIOLOGICAL SYSTEMS ENGINEERING -STRUCTURAL SYSTEMS SPECIALZTN"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ABM 022",
+        "darsDegreeProgramDescription": "AGRICULTURAL BUSINESS MANAGEMENT DEGREE"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 991",
+        "darsDegreeProgramDescription": "WILDLIFE ECOLOGY MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "PAE 038NR",
+        "darsDegreeProgramDescription": "PRE-BIOLOGICAL SYSTEMS ENGINEERING - NATURAL RESOURCES SPECIALZTN"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 112PL",
+        "darsDegreeProgramDescription": "BIOLOGY MAJOR - PLANT BIOLOGY OPTION"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "PAE 038MS",
+        "darsDegreeProgramDescription": "PRE-BIOLOGICAL SYSTEMS ENGINEERING - MACHINERY SYSTEMS SPECIALZTN"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ABE 038NR",
+        "darsDegreeProgramDescription": "BIOLOGICAL SYSTEMS ENGINEERING - NATURAL RESOURCES SPECIALIZATION"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "T.ALS 112",
+        "darsDegreeProgramDescription": "BIOLOGY MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 112",
+        "darsDegreeProgramDescription": "BIOLOGY MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 677",
+        "darsDegreeProgramDescription": "MICROBIOLOGY MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 814",
+        "darsDegreeProgramDescription": "POULTRY SCIENCE MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ABE 038SS",
+        "darsDegreeProgramDescription": "BIOLOGICAL SYSTEMS ENGINEERING -STRUCTURAL SYSTEMS SPECIALIZATION"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALA 594",
+        "darsDegreeProgramDescription": "LANDSCAPE ARCHITECTURE DEGREE (PROFESSIONAL PROGRAM)"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 065",
+        "darsDegreeProgramDescription": "ANIMAL SCIENCES MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "PDI 717",
+        "darsDegreeProgramDescription": "PRE-DIETETICS PROGRAM"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 112NB",
+        "darsDegreeProgramDescription": "BIOLOGY MAJOR - NEUROBIOLOGY OPTION"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 000",
+        "darsDegreeProgramDescription": "NO DECLARED MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ABE 038FB",
+        "darsDegreeProgramDescription": "BIOLOGICAL SYSTEMS ENGINEERING - FOOD & BIOPROCESS SPECIALIZATION"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 796",
+        "darsDegreeProgramDescription": "PLANT PATHOLOGY MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "CERT251",
+        "darsDegreeProgramDescription": "CERTIFICATE IN DEVELOPMENT ECONOMICS"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "CERT397",
+        "darsDegreeProgramDescription": "CERTIFICATE IN GLOBAL HEALTH"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 247",
+        "darsDegreeProgramDescription": "DAIRY SCIENCE MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 443",
+        "darsDegreeProgramDescription": "FOREST SCIENCE MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 886",
+        "darsDegreeProgramDescription": "COMMUNITY AND ENVIRONMENTAL SOCIOLOGY MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 054",
+        "darsDegreeProgramDescription": "AGRONOMY MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 459",
+        "darsDegreeProgramDescription": "GENETICS MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 103",
+        "darsDegreeProgramDescription": "BIOCHEMISTRY MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 409",
+        "darsDegreeProgramDescription": "ENTOMOLOGY MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 717",
+        "darsDegreeProgramDescription": "NUTRITIONAL SCIENCES MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ABE 038",
+        "darsDegreeProgramDescription": "BIOLOGICAL SYSTEMS ENGINEERING - GENERAL PROGRAM"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "PAE 038FB",
+        "darsDegreeProgramDescription": "PRE-BIOLOGICAL SYSTEMS ENGINEERING - FOOD & BIOPROCESS SPECIALZTN"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 045",
+        "darsDegreeProgramDescription": "LIFE SCIENCES COMMUNICATION MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 531",
+        "darsDegreeProgramDescription": "HORTICULTURE MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 112EL",
+        "darsDegreeProgramDescription": "BIOLOGY MAJOR - EVOLUTIONARY BIOLOGY OPTION"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ADIP717",
+        "darsDegreeProgramDescription": "BS DIETETICS (NUTRITIONAL SCIENCES MAJOR)"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "ALS 414",
+        "darsDegreeProgramDescription": "ENVIRONMENTAL SCIENCES MAJOR"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "CERT156",
+        "darsDegreeProgramDescription": "CERTIFICATE IN BUSINESS MANAGEMENT FOR AG & LIFE SCIENCES"
+      },
+      {
+        "darsInstitutionCode": "ALS",
+        "darsInstitutionCodeDescription": "Agricultural and Life Sciences, College of",
+        "darsDegreeProgramCode": "CERT437",
+        "darsDegreeProgramDescription": null
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "ALS",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      }
+    ]
+  },
+  "IES": {
+    "darsInstitutionCode": "IES",
+    "darsInstitutionCodeDescription": "Environmental Studies, Nelson Institute for",
+    "programs": [
+      {
+        "darsInstitutionCode": "IES",
+        "darsInstitutionCodeDescription": "Environmental Studies, Nelson Institute for",
+        "darsDegreeProgramCode": "CERT350",
+        "darsDegreeProgramDescription": "Certificate in ENVIRONMENTAL STUDIES"
+      },
+      {
+        "darsInstitutionCode": "IES",
+        "darsInstitutionCodeDescription": "Environmental Studies, Nelson Institute for",
+        "darsDegreeProgramCode": "CERT719",
+        "darsDegreeProgramDescription": "Certificate in SUSTAINABILITY"
+      },
+      {
+        "darsInstitutionCode": "IES",
+        "darsInstitutionCodeDescription": "Environmental Studies, Nelson Institute for",
+        "darsDegreeProgramCode": "CC=8+",
+        "darsDegreeProgramDescription": null
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "IES",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      }
+    ]
+  },
+  "BUS": {
+    "darsInstitutionCode": "BUS",
+    "darsInstitutionCodeDescription": "Business, School of",
+    "programs": [
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 882",
+        "darsDegreeProgramDescription": "Risk Management and Insurance Major"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 623MH",
+        "darsDegreeProgramDescription": "MHR Major - Management and Human Resources Emphasis"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 004",
+        "darsDegreeProgramDescription": "Accounting Major"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 623MG",
+        "darsDegreeProgramDescription": "MHR Major - Management Emphasis"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 423",
+        "darsDegreeProgramDescription": "Finance Major"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 575AS",
+        "darsDegreeProgramDescription": "Int'l Business - Asia Track Major (Must complete 2nd major)"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 623EN",
+        "darsDegreeProgramDescription": "MHR Major - Entrepreneurship Emphasis"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "CERT150",
+        "darsDegreeProgramDescription": "Certificate in Business for Non-Business Students"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 623EM",
+        "darsDegreeProgramDescription": "MHR Major - Entrepreneurship and Management Emphasis"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 859",
+        "darsDegreeProgramDescription": "Real Estate Major"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "CERT353",
+        "darsDegreeProgramDescription": "Certificate in Entrepreneurship for Non-Business Students"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 569",
+        "darsDegreeProgramDescription": "Information Systems Major"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 846",
+        "darsDegreeProgramDescription": "Operations and Technology Management Major"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 575EU",
+        "darsDegreeProgramDescription": "Int'l Business - European Track Major (Must complete 2nd major)"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 623HR",
+        "darsDegreeProgramDescription": "MHR Major - Human Resources Emphasis"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 623EH",
+        "darsDegreeProgramDescription": "MHR Major - Entrepreneurship and Human Resources Emphasis"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 575LA",
+        "darsDegreeProgramDescription": "Int'l Business - Latin Amer Track Major (Must complete 2nd major)"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "PRB 000",
+        "darsDegreeProgramDescription": "Pre-Business  -  Undecided Major"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 625",
+        "darsDegreeProgramDescription": "Marketing Major"
+      },
+      {
+        "darsInstitutionCode": "BUS",
+        "darsInstitutionCodeDescription": "Business, School of",
+        "darsDegreeProgramCode": "BUS 009",
+        "darsDegreeProgramDescription": "Actuarial Science Major"
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "BUS",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      }
+    ]
+  },
+  "DCS": {
+    "darsInstitutionCode": "DCS",
+    "darsInstitutionCodeDescription": "Continuing Studies, Division of",
+    "programs": [
+      {
+        "darsInstitutionCode": "DCS",
+        "darsInstitutionCodeDescription": "Continuing Studies, Division of",
+        "darsDegreeProgramCode": "UNCS212",
+        "darsDegreeProgramDescription": "Capstone Certificate in Communication Sciences and Disorders"
+      },
+      {
+        "darsInstitutionCode": "DCS",
+        "darsInstitutionCodeDescription": "Continuing Studies, Division of",
+        "darsDegreeProgramCode": "UNCS565",
+        "darsDegreeProgramDescription": "Capstone Cert. in Infant, Early Childhood, & Family Mental Health"
+      },
+      {
+        "darsInstitutionCode": "DCS",
+        "darsInstitutionCodeDescription": "Continuing Studies, Division of",
+        "darsDegreeProgramCode": "UNCS453",
+        "darsDegreeProgramDescription": "Capstone Certificate in Fundamentals of Clinical Research"
+      },
+      {
+        "darsInstitutionCode": "DCS",
+        "darsInstitutionCodeDescription": "Continuing Studies, Division of",
+        "darsDegreeProgramCode": "UNCS830",
+        "darsDegreeProgramDescription": "Capstone Certificate in Post-Graduate Psychiatric Nursing"
+      },
+      {
+        "darsInstitutionCode": "DCS",
+        "darsInstitutionCodeDescription": "Continuing Studies, Division of",
+        "darsDegreeProgramCode": "UNCS358",
+        "darsDegreeProgramDescription": "Capstone Certificate in Geographic Information Systems"
+      },
+      {
+        "darsInstitutionCode": "DCS",
+        "darsInstitutionCodeDescription": "Continuing Studies, Division of",
+        "darsDegreeProgramCode": "UNCS393",
+        "darsDegreeProgramDescription": "Capstone Certificate in Power Conversion and Control"
+      },
+      {
+        "darsInstitutionCode": "DCS",
+        "darsInstitutionCodeDescription": "Continuing Studies, Division of",
+        "darsDegreeProgramCode": "UNCS214",
+        "darsDegreeProgramDescription": "Capstone Certificate in Computer Science for Professionals"
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "DCS",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      }
+    ]
+  },
+  "NUR": {
+    "darsInstitutionCode": "NUR",
+    "darsInstitutionCodeDescription": "Nursing, School of",
+    "programs": [
+      {
+        "darsInstitutionCode": "NUR",
+        "darsInstitutionCodeDescription": "Nursing, School of",
+        "darsDegreeProgramCode": "PRN 712",
+        "darsDegreeProgramDescription": "NURSING - ADMISSIONS AND PROGRAM REQUIREMENTS"
+      },
+      {
+        "darsInstitutionCode": "NUR",
+        "darsInstitutionCodeDescription": "Nursing, School of",
+        "darsDegreeProgramCode": "NUR 712",
+        "darsDegreeProgramDescription": "BASIC NURSING PROGRAM"
+      },
+      {
+        "darsInstitutionCode": "NUR",
+        "darsInstitutionCodeDescription": "Nursing, School of",
+        "darsDegreeProgramCode": "NCP 715",
+        "darsDegreeProgramDescription": "COLLABORATIVE NURSING PROGRAM"
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "NUR",
+        "darsHonorsOptionCode": "X",
+        "darsHonorsOptionDescription": "Omit Honors"
+      },
+      {
+        "darsInstitutionCode": "NUR",
+        "darsHonorsOptionCode": "M",
+        "darsHonorsOptionDescription": "Include Honors"
+      },
+      {
+        "darsInstitutionCode": "NUR",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      }
+    ]
+  },
+  "EGR": {
+    "darsInstitutionCode": "EGR",
+    "darsInstitutionCodeDescription": "Engineering, College of",
+    "programs": [
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 711",
+        "darsDegreeProgramDescription": "Nuclear Engineering"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 400",
+        "darsDegreeProgramDescription": "Engineering Mechanics"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 465",
+        "darsDegreeProgramDescription": "Geological Engineering"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 382",
+        "darsDegreeProgramDescription": "Electrical Engineering"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "EGR 340",
+        "darsDegreeProgramDescription": "Certificate"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "EGR 460",
+        "darsDegreeProgramDescription": "Certificate"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "EGR 135",
+        "darsDegreeProgramDescription": "Certificate"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 633",
+        "darsDegreeProgramDescription": "Material Science and Engineering"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 174",
+        "darsDegreeProgramDescription": "Civil Engineering"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 403",
+        "darsDegreeProgramDescription": "Engineering Physics"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 148",
+        "darsDegreeProgramDescription": "Chemical Engineering"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "EGR 706",
+        "darsDegreeProgramDescription": "Certificate"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "EGR 345",
+        "darsDegreeProgramDescription": "Certificate"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 226",
+        "darsDegreeProgramDescription": "Computer Engineering"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 643",
+        "darsDegreeProgramDescription": "Mechanical Engineering"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 115",
+        "darsDegreeProgramDescription": "Biomedical Engineering"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "EGR 457",
+        "darsDegreeProgramDescription": "Certificate"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "ENG 564",
+        "darsDegreeProgramDescription": "Industrial Engineering"
+      },
+      {
+        "darsInstitutionCode": "EGR",
+        "darsInstitutionCodeDescription": "Engineering, College of",
+        "darsDegreeProgramCode": "EGR 390",
+        "darsDegreeProgramDescription": "Certificate"
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "EGR",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      }
+    ]
+  },
+  "PHM": {
+    "darsInstitutionCode": "PHM",
+    "darsInstitutionCodeDescription": "Pharmacy Undergraduate Programs ",
+    "programs": [
+      {
+        "darsInstitutionCode": "PHM",
+        "darsInstitutionCodeDescription": "Pharmacy Undergraduate Programs ",
+        "darsDegreeProgramCode": "TOX 750",
+        "darsDegreeProgramDescription": "PHARMACOLOGY & TOXICOLOGY major"
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "PHM",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      }
+    ]
+  },
+  "MSN": {
+    "darsInstitutionCode": "MSN",
+    "darsInstitutionCodeDescription": "Intercollege",
+    "programs": [
+      {
+        "darsInstitutionCode": "MSN",
+        "darsInstitutionCodeDescription": "Intercollege",
+        "darsDegreeProgramCode": "UTRN-L0001",
+        "darsDegreeProgramDescription": "Intercollege "
+      }
+    ],
+    "honorsOptions": [
+      {
+        "darsInstitutionCode": "MSN",
+        "darsHonorsOptionCode": " ",
+        "darsHonorsOptionDescription": "Keep current status"
+      }
+    ]
+  }
+}
-- 
GitLab