Currently, I'm reading the field as follows (in Java) in all the applications:
JSONObject another_json_object = (JSONObject)the_json_array.get(i);
String etagID= (String) another_json_object.get("etag");
Now, how do I search for the field "etag" while ignoring the case. I'm using JSON Simple libraries.