Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 365 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 365 Bytes

JsonPathTransformations

A library to transform JSON document with JSONPath

I will take a look here: https://github.com/json-path/JsonPath

Example

{
  "book" : {
    "title" : "Book title",
    "author" : "who wrote the book"
  }
}

transform source: $.book.author -> destination $.author

{
  "author" : "who wrote the book"
}