Data contract for Data of Delivery View

interface DeliveryViewData {
    childIdToParentIdMap?: { [key: number]: number };
    criteriaStatus?: TimelineCriteriaStatus;
    endDate?: Date;
    id?: string;
    maxExpandedTeams?: number;
    parentItemMaps?: ParentChildWIMap[];
    revision?: number;
    startDate?: Date;
    teams?: TimelineTeamData[];
    workItemDependencies?: number[];
    workItemViolations?: number[];
}

Hierarchy (View Summary)

Properties

childIdToParentIdMap?: { [key: number]: number }

Work item child id to parent id map

criteriaStatus?: TimelineCriteriaStatus

Filter criteria status of the timeline

endDate?: Date

The end date of the delivery view data

id?: string
maxExpandedTeams?: number

Max number of teams that can be configured for a delivery plan

parentItemMaps?: ParentChildWIMap[]

Mapping between parent id, title and all the child work item ids

revision?: number
startDate?: Date

The start date for the delivery view data

All the team data

workItemDependencies?: number[]

List of all work item ids that have a dependency but not a violation

workItemViolations?: number[]

List of all work item ids that have a violation