gatelineAPI reference
interface ReviewFinding {
    block: string;
    failureScenario: null | string;
    id: string;
    line: number;
    plausible: boolean;
    requirement: null | string;
    resolution: null | ReviewResolution;
    round: null | number;
    severity: "unknown" | "blocking" | "major" | "minor";
    severityText: string;
    title: string;
    where: null | string;
}

Properties

block: string

The whole finding, heading through the end of its body, verbatim.

failureScenario: null | string
id: string

'F1'

line: number

1-based line of the heading.

plausible: boolean

True when the reviewer marked the finding PLAUSIBLE rather than proven.

requirement: null | string
resolution: null | ReviewResolution

The latest disposition from a later round, or null.

round: null | number

The round that raised it, or null when the report numbers no rounds.

severity: "unknown" | "blocking" | "major" | "minor"
severityText: string

The severity cell verbatim, e.g. 'minor (PLAUSIBLE)'.

title: string
where: null | string

Contract fields, verbatim and without their bold label. Null when absent.