@yamlresume/samples
    Preparing search index...

    Interface SampleResumeEntry

    Internal catalog entry that includes both metadata and contents.

    interface SampleResumeEntry {
        category: string;
        contents: LanguageContents;
        description: string;
        i18n: Record<LocaleLanguage, SampleResumeI18nMeta>;
        id: string;
        languages: (
            | "en"
            | "zh-hans"
            | "zh-hant-hk"
            | "zh-hant-tw"
            | "es"
            | "fr"
            | "no"
            | "nl"
            | "ja"
            | "de"
            | "id"
            | "pt-br"
        )[];
        position: | "software engineer"
        | "data analyst"
        | "data scientist"
        | "product manager"
        | "ux designer";
        tags: string[];
        title: string;
    }

    Hierarchy (View Summary)

    Index
    category: string

    Broad category for grouping samples (e.g., "Engineering").

    description: string

    Short description of the sample (base/fallback language).

    i18n: Record<LocaleLanguage, SampleResumeI18nMeta>

    Localized titles and descriptions indexed by locale language.

    id: string

    URL-safe sample identifier, matching the directory name.

    languages: (
        | "en"
        | "zh-hans"
        | "zh-hant-hk"
        | "zh-hant-tw"
        | "es"
        | "fr"
        | "no"
        | "nl"
        | "ja"
        | "de"
        | "id"
        | "pt-br"
    )[]

    Locale languages available for this sample.

    position:
        | "software engineer"
        | "data analyst"
        | "data scientist"
        | "product manager"
        | "ux designer"

    Job position represented by the sample resume.

    tags: string[]

    Searchable tags for the sample.

    title: string

    Human-readable title (base/fallback language).