简体   繁体   中英

To perform JSON-to-JSON Transformation in Azure Logic Apps Liquid Map with more than one input JSON sources

am exploring Liquid Transformation maps which Azure Logic Apps (Standard) offers to see if more than one JSON sources can be fed into one map to transform a single JSON response. As per Azure Documentation, I think its possible to transform JSON-to-JSON from only one JSON source.

How to achieve liquid map transformation from multiple JSON sources as input in Azure Logic App?

Any help is much appreciated.

For JSON - JSON transform you can use JOLT transformation library

Jolt :

  • provides a set of transforms, that can be "chained" together to form the overall JSON to JSON transform.
  • focuses on transforming the structure of your JSON data, not manipulating specific values
    • The idea being: use Jolt to get most of the structure right, then write code to fix values
  • consumes and produces "hydrated" JSON : in-memory tree of Maps, Lists, Strings, etc.
    • use Jackson (or whatever) to serialize and deserialize the JSON text

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM