Skip to content

Commit

Permalink
fix for issue #1136 Add null support to DataPrepperExpressions - upda…
Browse files Browse the repository at this point in the history
…ted docs
  • Loading branch information
kkondaka committed Oct 19, 2022
1 parent 236b464 commit 10820ef
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/expression_syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ Examples
/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
Expand All @@ -93,6 +95,7 @@ A fundamental value that has no children.
- Boolean _(Supports true or false)_
- Json Pointer _(See Json Pointer section for details)_
- String _(Supports Valid Java String characters)_
- Null _(Supports null check to see if a Json Pointer is present or not)_

### Expression String
The String that will be parsed for evaluation. Expression String is the highest level of a Data Prepper Expression. Only supports one
Expand Down

0 comments on commit 10820ef

Please sign in to comment.