We are trying to build a single interface which can be integrated with multiple systems.
Hence we need a way to specify the mappings of standard fields across different systems.
Example:
Interface1 has the following fields: A, B, C
Interface2 has the following fields: P, Q, R
We need to map fields: A -> Q, B -> P and C -> R (just an example)
We can simply create a JSON of such mappings and follow our own convention, but wanted to check if there are any standard formats / open source tools for specifying or simplifying the mapping of fields from source to destination?
Assuming you are trying to convert:
to:
You can use any library that does JSON transformations such as this or this. For instance, you could define your transformation like this:
Using Java with Jolt (I was unable to test it, but that's the general idea):