If you have a JSON Object (in Java) with multiple nested fields, how do you assert that a specific field is not present?
e.g. For the following object below, how would you assert that field C does/does not exist:
{
"A": {
"B": {
"C": "field exists"
}
}
}