orcid-parser
    Preparing search index...

    Type Alias ExternalId

    Represents an external identifier associated with a work (e.g., DOI, ISBN, arXiv ID).

    const doi: ExternalId = {
    type: 'doi',
    value: '10.1234/example',
    url: 'https://doi.org/10.1234/example',
    relationship: 'self'
    };
    type ExternalId = {
        relationship?: string;
        type: string;
        url?: string;
        value: string;
    }
    Index

    Properties

    relationship?: string

    Relationship of the identifier to the work (e.g., 'self', 'part-of')

    type: string

    The type of external identifier (e.g., 'doi', 'isbn', 'arxiv')

    url?: string

    Optional URL for the identifier

    value: string

    The identifier value