interface ValidationItem {
    isValid?: boolean;
    reason?: string;
    type?: string;
    value?: string;
}

Hierarchy (View Summary)

Properties

isValid?: boolean

Tells whether the current input is valid or not

reason?: string

Reason for input validation failure

type?: string

Type of validation item

value?: string

Value to validate. The conditional expression to validate for the input for "expression" type Eg:eq(variables['Build.SourceBranch'], 'refs/heads/master');eq(value, 'refs/heads/master')