Describes a page in the work item form layout

interface Page {
    contribution?: WitContribution;
    id?: string;
    inherited?: boolean;
    isContribution?: boolean;
    label?: string;
    locked?: boolean;
    order?: number;
    overridden?: boolean;
    pageType?: PageType;
    sections?: Section[];
    visible?: boolean;
}

Properties

contribution?: WitContribution

Contribution for the page.

id?: string

The id for the layout node.

inherited?: boolean

A value indicating whether this layout node has been inherited from a parent layout. This is expected to only be only set by the combiner.

isContribution?: boolean

A value indicating if the layout node is contribution are not.

label?: string

The label for the page.

locked?: boolean

A value indicating whether any user operations are permitted on this page and the contents of this page

order?: number

Order in which the page should appear in the layout.

overridden?: boolean

A value indicating whether this layout node has been overridden by a child layout.

pageType?: PageType

The icon for the page.

sections?: Section[]

The sections of the page.

visible?: boolean

A value indicating if the page should be hidden or not.