orcid-parser
    Preparing search index...

    Type Alias Work

    Work: WorkSummary & {
        citation?: { type?: string; value?: string };
        contributors?: Contributor[];
        country?: string;
        languageCode?: string;
        shortDescription?: string;
        type: string | null;
    }

    Detailed representation of an ORCID work, extending WorkSummary.

    Type Declaration

    • Optionalcitation?: { type?: string; value?: string }

      Citation information for the work

      • Optionaltype?: string

        Citation format type (e.g., 'bibtex', 'ris')

      • Optionalvalue?: string

        Citation text content

    • Optionalcontributors?: Contributor[]

      List of contributors (authors, editors, etc.)

    • Optionalcountry?: string

      Country code where published

    • OptionallanguageCode?: string

      ISO language code (e.g., 'en', 'fr')

    • OptionalshortDescription?: string

      Short description or abstract of the work

    • type: string | null

      Type of work (e.g., 'journal-article', 'book', 'conference-paper')

    Includes all summary fields plus detailed information like citation, contributors, and descriptive metadata.