I have this JSON below:
{
    "class": "List",
    "list": [{
            "name": "HandsUp"
            "schedule": {
                "type": "probability",
                "theme": "Regular",
                "occurance": {
                    "next": 1607687249008.9834,
                    "prev": null
                }
            }
        }, {
            "name": "Listing",
            "waitingScreenInfo": {
                "__class": "WaitingScreenInfo",
                "getRecapTime": 1607687753.7949834
            },
            "schedule": {
                "type": "Waiting2",
                "theme": "Listing",
                "occurance": {
                    "next": 1607687249008.9834,
                    "prev": null
                }
            }
        }
    ]
}
and I have this one:
{
    "HandsUp": "HandsDown",
    "Listing": "ImgList",
    "Waiting2": "UpNDown"
}
The equivalent of the strings in the first JSON are in the second JSON and I wonder how can I make a function that finds the equivalents of the strings in the first JSON and then replace all of them even though if there is more than one?
 
    