gatelineAPI reference
interface G1Packet {
    coverage: CoverageRow[];
    mappingWithheld: null | string;
    overlaps: SurfaceOverlap[];
    tasks: WorkItem[];
    tasksWithheld: null | string;
    unmappedTasks: string[];
}

Properties

coverage: CoverageRow[]

One row per requirement the spec defines, then any the mapping invents.

mappingWithheld: null | string

Why the coverage view must withhold itself, or null.

overlaps: SurfaceOverlap[]

Surface overlaps between work items, ordered ones included and marked.

tasks: WorkItem[]

The work items themselves, so the surface view needs no second fetch.

tasksWithheld: null | string

Why the parallel-safety view must withhold itself, or null.

unmappedTasks: string[]

Work-item ids no mapping row names — the reverse of an uncovered requirement.