/**
 * A minimal user representation used to display author information on various data types.
 */
export interface Author {
    /**
     * The user id.
     */
    id: string;
    /**
     * The display name of the user.
     */
    name: string;
}
