[
 {
  frame: {data,data}
  radiotap: {data,data}
  wlan: {data,data}
  wlan: {data,data}strong text
 }
]
This is a compressed example of a wireshark json I'm working with. When I loop through the json using Python3 it only returns the last wlan element and I need the first. How would I access the data in that element?
It also gets the second "wlan" element when I try direct access ie print(json[0][wlan]), this returns the second wlan element.
 
    