I am using json binding API to parse json string for application deployed on Liberty application server.
Suppose I have json string as given below
String message = "{ "color" : "Black", "type" : "BMW" }";
I want to iterate through json string and check every json property field (color/type) in the application logic to see if it contains some specific characters.
How can this be done using the json-b (Json Binding API)