Hi,
I'd like to catch any key that match a certain reg ex in jolt. The purpose is to clean and order keys into the proper name. An example worth thoushand words:
possible inputs:
{
"my_id":234535,
"my company sa": "whatever value",
"my comp RH": "whatever value",
...
}
{
"my_id":234536,
"my_comp_sa" : "whatever value",
"DRH" : "whatever value"
...
}
output:
{
"my_id":234535,
"my_company_sa": "whatever value",
"my_company_rh" : "whatever value"
}