A library to transform JSON document with JSONPath
I will take a look here: https://github.com/json-path/JsonPath
{
"book" : {
"title" : "Book title",
"author" : "who wrote the book"
}
}
transform
source: $.book.author
-> destination $.author
{
"author" : "who wrote the book"
}