1- Jayway JsonPath
1+ Jayway JsonPath (bol version)
22=====================
33
44** A Java DSL for reading JSON documents.**
@@ -11,6 +11,8 @@ Jayway JsonPath is a Java port of [Stefan Goessner JsonPath implementation](http
1111
1212News
1313----
14+ 18 Jun 2018 - Released JsonPath 2.5.0 - ** Bol edition**
15+
141605 Jul 2017 - Released JsonPath 2.4.0
1517
161826 Jun 2017 - Released JsonPath 2.3.0
@@ -35,9 +37,9 @@ JsonPath is available at the Central Maven Repository. Maven users add this to y
3537
3638``` xml
3739<dependency >
38- <groupId >com.jayway .jsonpath</groupId >
40+ <groupId >com.bol .jsonpath</groupId >
3941 <artifactId >json-path</artifactId >
40- <version >2.3 .0</version >
42+ <version >2.5 .0</version >
4143</dependency >
4244```
4345
@@ -74,8 +76,8 @@ Operators
7476Functions
7577---------
7678
77- Functions can be invoked at the tail end of a path - the input to a function is the output of the path expression.
78- The function output is dictated by the function itself.
79+ Functions can be invoked at the beginning of a path - the input to a function is the output of the path expression.
80+ The function output is dictated by the function itself.
7981
8082| Function | Description | Output |
8183| :------------------------ | :----------------------------------------------------------------- | -----------|
@@ -85,6 +87,8 @@ The function output is dictated by the function itself.
8587| stddev() | Provides the standard deviation value of an array of numbers | Double |
8688| length() | Provides the length of an array | Integer |
8789
90+ ` Example: $.avg($.store.book[*].price) `
91+
8892
8993Filter Operators
9094-----------------
0 commit comments