Releases: mheap/json-schema-spell-checker
Releases · mheap/json-schema-spell-checker
v2.2.0
v2.1.1
v2.1.0
v2.0.1
v2.0.0
BREAKING CHANGES
Updated results format using []
rather than dot notation
// Old
$.paths["/"].get.responses["200"].description
// New
$['paths']['/']['get']['responses'][200]['description']
When providing a JSONPath argument, field names must no longer be quoted
// Old
-j "$..['description','title']"
// New
-j "$..[description,title]"
New features
- Extended JSONPath support, including
~
(Resolves #7)