Details about the analysed Jira expression.

interface JiraExpressionAnalysis {
    complexity?: Version3.Version3Models.JiraExpressionComplexity;
    errors?: Version3.Version3Models.JiraExpressionValidationError[];
    expression: string;
    type?: string;
    valid: boolean;
}

Properties

A list of validation errors. Not included if the expression is valid.

expression: string

The analysed expression.

type?: string

EXPERIMENTAL. The inferred type of the expression.

valid: boolean

Whether the expression is valid and the interpreter will evaluate it. Note that the expression may fail at runtime (for example, if it executes too many expensive operations).