@yamlresume/core
    Preparing search index...

    Type Alias VolunteerItem

    Represents a single volunteer experience or community service.

    VolunteerItemSchema for its schema constraints.

    type VolunteerItem = {
        computed?: {
            dateRange: string;
            endDate: string;
            startDate: string;
            summary: string;
        };
        endDate?: string;
        organization: string;
        position: string;
        startDate: string;
        summary: string;
        url?: string;
    }
    Index
    computed?: {
        dateRange: string;
        endDate: string;
        startDate: string;
        summary: string;
    }

    Computed values derived during transformation.

    Type Declaration

    • dateRange: string

      Combined string representing the date range.

    • endDate: string

      Transformed end date string (or "Present").

    • startDate: string

      Transformed start date string.

    • summary: string

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

    endDate?: string

    End date of the volunteer work (e.g., "2020", "Dec 2020").

    organization: string

    Name of the organization.

    position: string

    Role or position held.

    startDate: string

    Start date of the volunteer work (e.g., "2019", "Jun 2019").

    summary: string

    Summary of responsibilities or achievements.

    url?: string

    URL related to the organization or work.