orcid-parser
    Preparing search index...

    Type Alias Contributor

    Represents a contributor to a work (author, editor, etc.).

    const author: Contributor = {
    name: 'Jane Doe',
    role: 'author',
    sequence: 'first'
    };
    type Contributor = {
        name?: string;
        role?: string;
        sequence?: string;
    }
    Index

    Properties

    Properties

    name?: string

    The contributor's name

    role?: string

    The role of the contributor (e.g., 'author', 'editor')

    sequence?: string

    The sequence/order of the contributor (e.g., 'first', 'additional')