gatelineAPI reference

A disposition line, with the finding it names — including one whose finding was raised in a different file (see ReviewReport.dispositions).

interface ReviewDisposition {
    id: string;
    line: number;
    round: null | number;
    state: "resolved" | "stands";
    text: string;
}

Hierarchy (View Summary)

Properties

Properties

id: string
line: number

1-based line of the disposition.

round: null | number

The round that said so, or null when the report numbers no rounds.

state: "resolved" | "stands"

How a later round dispositioned the finding.

text: string

The disposition line, verbatim.