export interface Requirement {
  requirementName: string;
  status: { status: string; description: string };
  requirementLinesGroupedByContentType: {
    contentType: string; // I think this can be string literals
    lines: string[];
  };
}

export interface Audit {
  header: {
    catalogYear: string;
    catalogYearLabel: string;
    clientDefinedMessage: string;
    degreeProgram: string;
    degreeProgramLabel: string;
    graduationDate: string;
    graduationDateLabel: string;
    name: string;
    preparedDate: string;
    studentId: string;
    title1: string;
    title2: string;
  };
  topText: string[];
  bottomText: string[];
  completeText: string;
  errorText: any[];
  requirements: Requirement[];
}