A clause that asserts the current value of a field. For example, summary ~ test.

interface FieldValueClause {
    field: JqlQueryField;
    operand: JqlQueryClauseOperand;
    operator:
        | "!="
        | "in"
        | ">"
        | "<"
        | ">="
        | "<="
        | "~"
        | "="
        | "is"
        | "not in"
        | "~="
        | "is not";
}

Properties

A field used in a JQL query. See Advanced searching - fields reference for more information about fields in JQL queries.

Details of an operand in a JQL clause.

operator:
    | "!="
    | "in"
    | ">"
    | "<"
    | ">="
    | "<="
    | "~"
    | "="
    | "is"
    | "not in"
    | "~="
    | "is not"

The operator between the field and operand.