@yamlresume/core
    Preparing search index...

    Type Alias EducationItem

    Represents a single educational experience or degree program.

    EducationItemSchema for its schema constraints.

    type EducationItem = {
        area: string;
        computed?: {
            courses: string;
            dateRange: string;
            degreeAreaAndScore: string;
            endDate: string;
            startDate: string;
            summary: string;
        };
        courses?: string[];
        degree: Degree;
        endDate?: string;
        institution: string;
        score?: string;
        startDate?: string;
        summary?: string;
        url?: string;
    }
    Index
    area: string

    Area of study (e.g., "Computer Science").

    computed?: {
        courses: string;
        dateRange: string;
        degreeAreaAndScore: string;
        endDate: string;
        startDate: string;
        summary: string;
    }

    Computed values derived during transformation.

    Type Declaration

    • courses: string

      Transformed courses string (e.g., comma-separated).

    • dateRange: string

      Combined string representing the date range.

    • degreeAreaAndScore: string

      Combined string of degree, area, and score.

    • endDate: string

      Transformed end date string (or "Present").

    • startDate: string

      Transformed start date string.

    • summary: string

      Transformed summary string (e.g., LaTeX code).

    courses?: string[]

    List of courses taken.

    degree: Degree

    The type of degree obtained.

    endDate?: string

    End date of study (e.g., "2020", "May 2020"), empty implies "Present".

    institution: string

    Name of the institution.

    score?: string

    GPA or academic score.

    startDate?: string

    Start date of study (e.g., "2016", "Sep 2016").

    summary?: string

    Description of accomplishments or details.

    url?: string

    URL related to the institution or degree.