gatelineAPI reference
interface CoverageRow {
    claimedBy: string[];
    defined: boolean;
    id: string;
    mapped: string[];
    row: null | string;
    shortName: string;
    unknownTasks: string[];
}

Properties

claimedBy: string[]

Ids of work items whose own requirements: list claims this requirement.

defined: boolean

spec.md defines it; false → the mapping names a requirement the spec does not.

id: string

'R1' — a requirement id, from the spec or from the mapping.

mapped: string[]

Task tokens the mapping row names, verbatim.

row: null | string

The mapping row verbatim, or null when no row names this requirement.

shortName: string

The spec's heading title for it, verbatim; '' when the spec does not define it.

unknownTasks: string[]

Of those, the ones matching no committed tasks/*.yaml id.