Wildcard JSON?

I’m having an issue with a http request. I’d like to create a IF ID is empty then do X. The challenge I’m running into is that the key wrapping the json info is changing on every entry. I’m wondering if there is a way to use a wildcard so I can say {{$json[“WILDCARD HERE”][“id”]}}
[
{
“7x2ub”: {
“id”: “30499”,
“item_key”: “7x2ub”,
“name”: “BETX426”,
“ip”: “104.236.62.143”,
“meta”: {
“mt31x”: “217601”,
“udljr”: “BETX426”,
“is3e3”: “2014 Runaway Campers Coolcamp BeTX426”,
“crntk”: “Travel Trailer”,
“e7pqd”: “0”,
“mdj0i”: “2”,
“pd615”: “0”,
“vs8kv”: “0”,
“zzeoh”: “12”,
“lle4s”: “”,
“rzwng”: “”,
“38vjz”: “”,
“8g37n”: “608133K”,
“wzx95”: “TX”,
“t9705”: “2014”,
“zdggo”: “Runaway Campers”,
“u5uo9”: “Coolcamp”,
“uymq9”: “600”,
“e9y0c”: “”,
“dayme”: “1R9UT48S2E1749238”,
“m7cj9”: “3200”,
“8qtzy”: “”
},
“form_id”: “90”,
“post_id”: “0”,
“user_id”: “1”,
“parent_item_id”: “0”,
“is_draft”: “0”,
“updated_by”: “1”,
“created_at”: “2021-06-03 14:27:05”,
“updated_at”: “2021-06-19 00:26:04”
}
}
]

[

{

"ojrtc": {

"id": "32369",

"item_key": "ojrtc",

"name": "Wmi178",

"ip": "104.236.62.143",

"meta": {

"mt31x": "112102",

"udljr": "Wmi178",

"is3e3": "Gulf Stream Class A",

"crntk": "Class A",

"e7pqd": "0",

"mdj0i": "6",

"pd615": "0",

"vs8kv": "0",

"zzeoh": "35",

"lle4s": "",

"rzwng": "",

"38vjz": "",

"8g37n": "4sP104",

"wzx95": "SD",

"t9705": "2005",

"zdggo": "Gulf Stream",

"u5uo9": "class A",

"uymq9": "",

"e9y0c": "",

"dayme": "1FgMF53Y660A05875",

"m7cj9": "30000",

"8qtzy": "50"

},

"form_id": "90",

"post_id": "0",

"user_id": "1",

"parent_item_id": "0",

"is_draft": "0",

"updated_by": "1",

"created_at": "2021-06-18 16:12:39",

"updated_at": "2021-06-18 16:12:39"

}

}

]

If there is just one root key you should be able to do this:

{{$json[Object.keys($json)[0]]["id"]}}

Thank you SO MUCH!

what if you want to search all json everywhere for a key value or regex?