Jira.js - Jira Cloud API library
    Preparing search index...

    Interface JiraExpressionAnalysis

    Details about the analysed Jira expression.

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

    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).