Result from a lookup adapter. Consumers like the review editor expect this shape when populating the subject picker (see frontend/review.ts).

interface LookupResult {
    data: {
        description?: string;
        label: string;
        subtitle?: string;
        thing?: Thing;
    };
    sourceID: string;
}

Properties

Properties

data: { description?: string; label: string; subtitle?: string; thing?: Thing }
sourceID: string