JSON ... Try / Catch

I’ve noticed that not all the information I’m asking for gets returned from a https.Get(""). Not the issue, I understand that if the user didn’t include all the information, then I won’t be getting it.

My question is, do I Try … Catch for each of the 65 nodes or is there a better way?
i.e.
Try
Bday = myJSON.Child(0).Child(“Bday”).Value
Catch
Bday = “”
End Try

Try
MidName = myJSON.Child(0).Child(“Other”).Child(“MidName”).Value
Catch
MidName = “”
End Try

TIA

Try with Lookup

tausend dank, Wolfgang.