2022-12-06 18:50:42 -05:00
---
layout: default
title: Expression syntax
nav_order: 12
---
2022-12-12 18:17:06 -05:00
# Expression syntax
The following sections provide information about expression syntax.
2022-12-06 18:50:42 -05:00
## Supported operators
Operators are listed in order of precedence (top to bottom, left to right).
| Operator | Description | Associativity |
|----------------------|-------------------------------------------------------|---------------|
| `()` | Priority Expression | left-to-right |
| `not` < br > `+` < br > `-` | Unary Logical NOT< br > Unary Positive< br > Unary negative | right-to-left |
| `<` , `<=` , `>` , `>=` | Relational Operators | left-to-right |
| `==` , `!=` | Equality Operators | left-to-right |
| `and` , `or` | Conditional Expression | left-to-right |
## Reserved for possible future functionality
Reserved symbol set: `^` , `*` , `/` , `%` , `+` , `-` , `xor` , `=` , `+=` , `-=` , `*=` , `/=` , `%=` , `++` , `--` , `${<text>}`
## Set initializer
2022-12-12 18:17:06 -05:00
The set initializer defines a set or term and/or expressions.
2022-12-06 18:50:42 -05:00
### Examples
2022-12-12 18:17:06 -05:00
The following are examples of set initializer syntax.
2022-12-06 18:50:42 -05:00
#### HTTP status codes
```
{200, 201, 202}
```
#### HTTP response payloads
```
{"Created", "Accepted"}
```
#### Handle multiple event types with different keys
```
{/request_payload, /request_message}
```
## Priority expression
2022-12-12 18:17:06 -05:00
A priority expression identifies an expression that will be evaluated at the highest priority level. A priority expression must contain an expression or value; empty parentheses are not supported.
### Example
2022-12-06 18:50:42 -05:00
```
/is_cool == (/name == "Steven")
```
## Relational operators
2022-12-12 18:17:06 -05:00
Relational operators are used to test the relationship of two numeric values. The operands must be numbers or JSON Pointers that resolve to numbers.
2022-12-06 18:50:42 -05:00
### Syntax
```
< Number | JSON Pointer > < < Number | JSON Pointer >
< Number | JSON Pointer > < = < Number | JSON Pointer >
< Number | JSON Pointer > > < Number | JSON Pointer >
< Number | JSON Pointer > >= < Number | JSON Pointer >
```
2022-12-12 18:17:06 -05:00
### Example
2022-12-06 18:50:42 -05:00
```
/status_code >= 200 and /status_code < 300
```
## Equality operators
2022-12-12 18:17:06 -05:00
Equality operators are used to test whether two values are equivalent.
2022-12-06 18:50:42 -05:00
### Syntax
```
< Any > == < Any >
< Any > != < Any >
```
### Examples
```
/is_cool == true
3.14 != /status_code
{1, 2} == /event/set_property
```
2022-12-12 18:17:06 -05:00
## Using equality operators to check for a JSON Pointer
2022-12-06 18:50:42 -05:00
2022-12-12 18:17:06 -05:00
Equality operators can also be used to check whether a JSON Pointer exists by comparing the value with `null` .
2022-12-06 18:50:42 -05:00
### Syntax
```
< JSON Pointer > == null
< JSON Pointer > != null
null == < JSON Pointer >
null != < JSON Pointer >
```
2022-12-12 18:17:06 -05:00
### Example
2022-12-06 18:50:42 -05:00
```
/response == null
null != /response
```
#### Conditional expression
2022-12-12 18:17:06 -05:00
A conditional expression is used to chain together multiple expressions and/or values.
2022-12-06 18:50:42 -05:00
#### Syntax
```
< Any > and < Any >
< Any > or < Any >
not < Any >
```
2022-12-12 18:17:06 -05:00
### Example
2022-12-06 18:50:42 -05:00
```
/status_code == 200 and /message == "Hello world"
/status_code == 200 or /status_code == 202
not /status_code in {200, 202}
/response == null
/response != null
```
## Definitions
2022-12-12 18:17:06 -05:00
This section provides expression definitions.
2022-12-06 18:50:42 -05:00
### Literal
2022-12-12 18:17:06 -05:00
A literal is a fundamental value that has no children:
- Float: Supports values from 3.40282347 × 10< sup > 38</ sup > to 1.40239846 × 10< sup > − 45</ sup > .
- Integer: Supports values from − 2,147,483,648 to 2,147,483,647.
- Boolean: Supports true or false.
- JSON Pointer: See the [JSON Pointer ](#json-pointer ) section for details.
- String: Supports valid Java strings.
- Null: Supports null check to see whether a JSON Pointer exists.
2022-12-06 18:50:42 -05:00
### Expression string
2022-12-12 18:17:06 -05:00
An expression string takes the highest priority in a Data Prepper expression and only supports one expression string resulting in a return value. An _expression string_ is not the same as an _expression_ .
2022-12-06 18:50:42 -05:00
### Statement
2022-12-12 18:17:06 -05:00
A statement is the highest-priority component of an expression string.
2022-12-06 18:50:42 -05:00
### Expression
2022-12-12 18:17:06 -05:00
An expression is a generic component that contains a _Primary_ or an _Operator_ . Expressions may contain expressions. An expression's imminent children can contain 0– 1 _Operators_ .
2022-12-06 18:50:42 -05:00
### Primary
- _Set_
- _Priority Expression_
- _Literal_
### Operator
2022-12-12 18:17:06 -05:00
An operator is a hardcoded token that identifies the operation used in an _expression_ .
### JSON Pointer
A JSON Pointer is a literal used to reference a value within an event and provided as context for an _expression string_ . JSON Pointers are identified by a leading `/` containing alphanumeric characters or underscores, delimited by `/` . JSON Pointers can use an extended character set if wrapped in double quotes (`"`) using the escape character `\` . Note that JSON Pointers require `~` and `/` characters, which should be used as part of the path and not as a delimiter that needs to be escaped.
2022-12-06 18:50:42 -05:00
2022-12-12 18:17:06 -05:00
The following are examples of JSON Pointers:
2022-12-06 18:50:42 -05:00
- `~0` representing `~`
- `~1` representing `/`
#### Shorthand syntax (Regex, `\w` = `[A-Za-z_]`)
```
/\w+(/\w+)*
```
2022-12-12 18:17:06 -05:00
#### Example of shorthand
The following is an example of shorthand:
2022-12-06 18:50:42 -05:00
```
/Hello/World/0
```
2022-12-12 18:17:06 -05:00
#### Example of escaped syntax
The following is an example of escaped syntax:
2022-12-06 18:50:42 -05:00
```
"/< Valid String Characters | Escaped Character > (/< Valid String Characters | Escaped Character > )*"
```
2022-12-12 18:17:06 -05:00
#### Example of an escaped JSON Pointer
The following is an example of an escaped JSON Pointer:
2022-12-06 18:50:42 -05:00
```
# Path
# { "Hello - 'world/" : [{ "\"JsonPointer\"": true }] }
"/Hello - 'world\//0/\"JsonPointer\""
```
## White space
2022-12-12 18:17:06 -05:00
White space is **optional** surrounding relational operators, regex equality operators, equality operators, and commas.
White space is **required** surrounding set initializers, priority expressions, set operators, and conditional expressions.
2022-12-06 18:50:42 -05:00
2022-12-12 18:17:06 -05:00
| Operator | Description | White space required | ✅ Valid examples | ❌ Invalid examples |
2022-12-06 18:50:42 -05:00
|----------------------|--------------------------|----------------------|----------------------------------------------------------------|---------------------------------------|
2022-12-12 18:17:06 -05:00
| `{}` | Set initializer | Yes | `/status in {200}` | `/status in{200}` |
| `()` | Priority expression | Yes | `/a==(/b==200)` < br > `/a in ({200})` | `/status in({200})` |
| `in` , `not in` | Set operators | Yes | `/a in {200}` < br > `/a not in {400}` | `/a in{200, 202}` < br > `/a not in{400}` |
| `<` , `<=` , `>` , `>=` | Relational operators | No | `/status < 300` < br > `/status>=300` | |
| `=~` , `!~` | Regex equality pperators | No | `/msg =~ "^\w*$"` < br > `/msg=~"^\w*$"` | |
| `==` , `!=` | Equality operators | No | `/status == 200` < br > `/status_code==200` | |
| `and` , `or` , `not` | Conditional operators | Yes | `/a<300 and /b>200` | `/b<300and/b>200` |
| `,` | Set value delimiter | No | `/a in {200, 202}` < br > `/a in {200,202}`< br > `/a in {200 , 202}` | `/a in {200,}` |