def merge_json(input_jsons, merge_uri_and_jsons, input_path):
        for x in input_jsons:
            input_json = x
            break


        findReplaceMap = dict()
        for merge_uri_and_json in merge_uri_and_jsons:
            # print merge_uri_and_json
            # print "=========="
            uri = merge_uri_and_json[0]
            json_obj = merge_uri_and_json[1]
            findReplaceMap[uri] = json_obj


        # print "INPUT JSON:", input_json
        JSONUtil.replace_values_at_path_batch(input_json, input_path, findReplaceMap, [])
        # print "OUTPUT JSON:", input_json

        return input_json