@yamlresume/core
    Preparing search index...

    Type Alias AwardItem

    Represents a single award, honor, or recognition received.

    AwardItemSchema for its schema constraints.

    type AwardItem = {
        awarder: string;
        computed?: { date: string; summary: string };
        date?: string;
        summary?: string;
        title: string;
    }
    Index
    awarder: string

    The organization or entity that gave the award.

    computed?: { date: string; summary: string }

    Computed values derived during transformation.

    Type Declaration

    • date: string

      Transformed date string.

    • summary: string

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

    date?: string

    The date the award was received (e.g., "2020", "Oct 2020").

    summary?: string

    A short description or details about the award.

    title: string

    The name or title of the award.