A single affiliation row as consumed by the profile template.

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

Properties

id: string

The affiliation item id.

level: number

Standing/rank within the organization.

name: string

The affiliation's display name.

notes: string

Notes, reduced to a plain-text snippet for the table cell.

office: null | string

Specific position held within the organization.

society: null | string

Subdivision or branch of the organization.

title: string

Formal title granted by the organization.

uuid: string

The affiliation item uuid.