Represents a contributor to a work (author, editor, etc.).
const author: Contributor = { name: 'Jane Doe', role: 'author', sequence: 'first'}; Copy
const author: Contributor = { name: 'Jane Doe', role: 'author', sequence: 'first'};
Optional
The contributor's name
The role of the contributor (e.g., 'author', 'editor')
The sequence/order of the contributor (e.g., 'first', 'additional')
Represents a contributor to a work (author, editor, etc.).
Example