gatelineAPI reference
interface MappingRow {
    cell: string;
    line: number;
    requirements: string[];
    tasks: string[];
    text: string;
}

Properties

cell: string

The Requirement cell, verbatim. Usually a bare R<n>; a cell naming several ids or carrying prose stays exactly as written.

line: number

1-based line of the row.

requirements: string[]

Requirement ids found in the cell, in order — the join key.

tasks: string[]

Task tokens from the Task(s) cell, verbatim and in declared order.

text: string

The whole row, verbatim.