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'}; Copy
const doi: ExternalId = { type: 'doi', value: '10.1234/example', url: 'https://doi.org/10.1234/example', relationship: 'self'};
Optional
Relationship of the identifier to the work (e.g., 'self', 'part-of')
The type of external identifier (e.g., 'doi', 'isbn', 'arxiv')
Optional URL for the identifier
The identifier value
Represents an external identifier associated with a work (e.g., DOI, ISBN, arXiv ID).
Example