I am currently brainstorming a solution to link two distinct JSON formats with their respective keys. Here are the two formats:
{
"price": [
511,
499,
419,
312
],
"paid": "OK",
"contract": "year",
"begindate": "01/01/2018",
"enddate": "01/01/2019"
}
And
{
"payments": "OK",
"contract period": "year",
"start": "01/01/2018",
"stop": "01/01/2019",
"pricing": [
511,
499,
419,
312
]
}
My goal is to establish relationships between 'price' and 'pricing', 'paid' and 'payments', 'contract' and 'contract period', etc. I am looking for an efficient way to develop a web application to handle this task dynamically rather than hardcoding it.
Thank you for any assistance in advance!