orcid-parser
    Preparing search index...

    Type Alias OrcidStats

    Statistical information about a collection of works.

    const stats: OrcidStats = {
    total: 42,
    byType: { 'journal-article': 30, 'conference-paper': 12 },
    byYear: { 2023: 15, 2024: 27 },
    yearRange: { min: 2020, max: 2024 }
    };
    type OrcidStats = {
        byType: Record<string, number>;
        byYear: Record<number, number>;
        total: number;
        yearRange: { max: number | null; min: number | null };
    }
    Index

    Properties

    byType: Record<string, number>

    Count of works grouped by type

    byYear: Record<number, number>

    Count of works grouped by publication year

    total: number

    Total number of works

    yearRange: { max: number | null; min: number | null }

    Range of publication years

    Type Declaration

    • max: number | null

      Latest publication year, or null if no years available

    • min: number | null

      Earliest publication year, or null if no years available