I want to achieve following JSON transformation using Jolt processor in NIFI
input JSON
{
"street":"92 Lee St."
"state":"ON"
"country":"CA"
}
Output JSON should be
{
"street":"92 Lee St."
"state":"Ontario"
"country":"Canada"
}
Is there a way to do this using existing Jolt operations or do I need to write custom operation?
Thanks.