@yamlresume/core
    Preparing search index...

    Type Alias CertificateItem

    Represents a single certification, credential, or professional qualification.

    CertificateItemSchema for its schema constraints.

    type CertificateItem = {
        computed?: { date: string };
        date?: string;
        issuer: string;
        name: string;
        url?: string;
    }
    Index
    computed?: { date: string }

    Computed values derived during transformation.

    Type Declaration

    • date: string

      Transformed date string.

    date?: string

    The date the certificate was obtained (e.g., "2021", "Nov 2021").

    issuer: string

    The organization that issued the certificate.

    name: string

    The name of the certificate.

    url?: string

    URL related to the certificate (e.g., verification link).