json-utils-plugin
json-utils-plugin copied to clipboard
[DEPRECATED] Now JetBrains IDEs have native support for evaluating JSONPath expressions
### Steps: 1. load this json [2019-11-21T052759.200.txt](https://github.com/matheusfm/json-utils-plugin/files/3875401/2019-11-21T052759.200.txt) 2. paste this search $.hits.hits[*]._source.trays_cycle['fr'] 3. write some numbers and point inside square brackets $.hits.hits[*]._source.trays_cycle['fr'.345] 4. delete numbers and point one by one...
It could be interesting to give a bit of color to the json editors. I guess this could help: https://github.com/bobbylight/RSyntaxTextArea
`$.ads[0].ad.name` fails but `$.ads[0].ad.id` works with the following JSON: ``` { "ads": [ { "ad": { "id": "bla", "name": "Barbie Dream Camper" } } ] } ```  