I tend to pass the response to a JavaScript actor so I can manipulate it while plucking out the values I care about.
The first bit of business is to get the response into JSON object:
const theContents = JSON.parse(arguments[0]);All done! Now you can use keys or iterate through arrays from the response.
let theCondition = theContents.condition.text; // assuming your sample is from the rootI do not know if there is an efficiency cost associated, but in my use-case, I need JavaScript to do some "thinking" anyway.
I hope this helps!