Field Instance of a workItemype with detailed references.

interface WorkItemTypeFieldWithReferences {
    allowedValues?: any[];
    alwaysRequired?: boolean;
    defaultValue?: any;
    dependentFields?: WorkItemFieldReference[];
    helpText?: string;
    name?: string;
    referenceName?: string;
    url?: string;
}

Hierarchy (View Summary)

Properties

allowedValues?: any[]

The list of field allowed values.

alwaysRequired?: boolean

Indicates whether field value is always required.

defaultValue?: any

Represents the default value of the field.

dependentFields?: WorkItemFieldReference[]

The list of dependent fields.

helpText?: string

Gets the help text for the field.

name?: string

The friendly name of the field.

referenceName?: string

The reference name of the field.

url?: string

The REST URL of the resource.