The minimal shape an affiliation must expose to be rendered.

interface AffiliationLike {
    id: string;
    level: number;
    name: string;
    notes: string;
    office: null | string;
    society: null | string;
    title: string;
    uuid: string;
}

Properties

id: string
level: number
name: string
notes: string
office: null | string
society: null | string
title: string
uuid: string